mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-05-06 11:29:55 -05:00
bb5f4d4381
Add GuiPath to existing scenegraph nodes Add option to toggle tree representation Add caption font to UI
26 lines
820 B
Modula-2
26 lines
820 B
Modula-2
local zodiacs = {
|
|
"Cancer", "Taurus", "Pisces", "Aries", "Libra", "Aquarius", "Capricornus", "Scorpius",
|
|
"Virgo", "Sagittarius", "Gemini", "Leo"
|
|
}
|
|
|
|
return {
|
|
-- Stars module
|
|
{
|
|
Name = "Constellation Bounds",
|
|
Parent = "Root",
|
|
Renderable = {
|
|
Type = "RenderableConstellationBounds",
|
|
File = "${OPENSPACE_DATA}/scene/constellationbounds/data/bound_20.dat",
|
|
ConstellationFile = "${OPENSPACE_DATA}/scene/constellationbounds/data/constellations.dat",
|
|
-- ConstellationSelection = zodiacs
|
|
},
|
|
Transform = {
|
|
Rotation = {
|
|
Type = "SpiceRotation",
|
|
SourceFrame = "J2000",
|
|
DestinationFrame = "GALACTIC"
|
|
}
|
|
},
|
|
GuiPath = "/Milky Way/Stars"
|
|
}
|
|
} |