
The "layers" concept was introduced in 2008 for Celestia 1.6.0. Now in 2009, we have the "multi-layers". Basically, it's a generalisation of the layers concept for Celestia : a single script let the user to switch various layers, one at a time. The experience feels a bit like "PowerPoint".
Here's an example applied to the Milky Way's galactic center, using several layers of billboards (click the picture to enlarge) :
The billboards are adjusted very precisely, using the galactic center and the Pistol star.
The Sgr A* addon I created recently can be shown in front of the billboards, to give some explanations in a classroom :
Or the central black hole :
The new multi-layers technique will introdue a new class of addons in the near future. Here's the CELX script associated to the previously shown galactic addon (sorry, the comments are in French) :
Code: Select all
-- Title: Pr?senter le centre galactique de la Voie Lact?e
GC1 = celestia:find("Centre de la Voie Lact?e")
GC2 = celestia:find("Centre de la Voie Lact?e (infrarouge)")
GC3 = celestia:find("D?tail du centre de la Voie Lact?e")
if not GC1:visible() and not GC2:visible() and not GC3:visible() then
GC1:setvisible(true)
GC2:setvisible(false)
GC3:setvisible(false)
celestia:select(GC1)
celestia:getobserver():center(GC1, 1)
wait(1)
celestia:setrenderflags { nebulae = true }
celestia:print(" Le centre galactique de la Voie Lact?e.\n Photographie en lumi?re visible et infrarouge.", 5)
elseif GC1:visible() and not GC2:visible() and not GC3:visible() then
GC1:setvisible(false)
GC2:setvisible(true)
GC3:setvisible(false)
celestia:print(" Le centre galactique de la Voie Lact?e en infrarouge.\n Photographie du t?lescope spatial Spitzer.", 5)
elseif not GC1:visible() and GC2:visible() and not GC3:visible() then
GC1:setvisible(false)
GC2:setvisible(true)
GC3:setvisible(true)
celestia:print(" D?tail du centre galactique de la Voie Lact?e.\n Composition photographique des t?lescopes Hubble et Spitzer.", 5)
elseif not GC1:visible() and GC2:visible() and GC3:visible() then
GC1:setvisible(false)
GC2:setvisible(false)
GC3:setvisible(false)
celestia:print("Images effac?es", 3)
end
The addon will be published once I find some good server. The problem is that I now have a large number of new "layers" addons to be published !

