mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-17 17:31:10 -06:00
34 lines
796 B
Modula-2
34 lines
796 B
Modula-2
return {
|
|
-- gridGalactic module
|
|
{
|
|
Name = "gridGalactic",
|
|
Parent = "SolarSystem",
|
|
Static = true,
|
|
Renderable = {
|
|
Type = "RenderableSphericalGrid",
|
|
GridType = "GALACTIC",
|
|
GridColor = { 0.0, 0.4, 0.4, 1},
|
|
GridMatrix = { 1.0, 0.0, 0.0, 0.0,
|
|
0.0, 1.0, 0.0, 0.0,
|
|
0.0, 0.0, 1.0, 0.0,
|
|
0.0, 0.0, 0.0, 1.0 },
|
|
GridSegments = 36,
|
|
},
|
|
Ephemeris = {
|
|
Type = "Static" -- for now, might change.
|
|
},
|
|
|
|
--[[
|
|
Ephemeris = {
|
|
Type = "Spice",
|
|
Body = "EARTH",
|
|
Reference = "ECLIPJ2000",
|
|
Observer = "EARTH BARYCENTER",
|
|
Kernels = {
|
|
"kernels/earth.bsp"
|
|
}
|
|
},
|
|
--]]
|
|
GuiName = "/Grid/Galactic"
|
|
}
|
|
} |