mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-02-05 11:09:12 -06:00
22 lines
516 B
Modula-2
22 lines
516 B
Modula-2
return {
|
|
-- Earth barycenter module
|
|
{
|
|
Name = "Lua Transformation",
|
|
Parent = "SolarSystemBarycenter",
|
|
Transform = {
|
|
Rotation = {
|
|
Type = "LuaRotation",
|
|
Script = "rotation.lua"
|
|
},
|
|
Scale = {
|
|
Type = "LuaScale",
|
|
Script = "scale.lua"
|
|
},
|
|
Translation = {
|
|
Type = "LuaTranslation",
|
|
Script = "translate.lua"
|
|
}
|
|
}
|
|
}
|
|
}
|