Fixing arrangement for TimeFrames in assets

This commit is contained in:
Alexander Bock
2024-08-07 06:58:50 +02:00
parent ca6c14e9b5
commit d07edbdc77
3 changed files with 11 additions and 11 deletions

View File

@@ -17,6 +17,11 @@ local models = asset.resource({
local Apollo15 = {
Identifier = "Apollo15",
Parent = moonTransforms.Moon.Identifier,
TimeFrame = {
Type = "TimeFrameInterval",
Start = "1971-07-30T02:22:00.00",
End = "1971-08-01T18:05:00.00"
},
Transform = {
Translation = {
Type = "SpiceTranslation",
@@ -39,11 +44,6 @@ local Apollo15 = {
},
PerformShading = true
},
TimeFrame = {
Type = "TimeFrameInterval",
Start = "1971-07-30T02:22:00.00",
End = "1971-08-01T18:05:00.00"
},
GUI = {
Name = "Apollo 15",
Path = "/Solar System/Missions/Apollo/15"

View File

@@ -133,6 +133,11 @@ local RotationKeyframes = {
local InsightParent = {
Identifier = "InsightParent",
Parent = mars.Mars.Identifier,
-- TimeFrame = {
-- Type = "TimeFrameInterval",
-- Start = EntryTimeStart,
-- End = SpiceRotationEndTime
-- },
Transform = {
Translation = {
Type = "TimelineTranslation",
@@ -143,11 +148,6 @@ local InsightParent = {
Keyframes = RotationKeyframes
}
},
-- TimeFrame = {
-- Type = "TimeFrameInterval",
-- Start = EntryTimeStart,
-- End = SpiceRotationEndTime
-- },
GUI = {
Name = "InsightParent",
Path = "/Solar System/Missions/Insight",

View File

@@ -6,7 +6,7 @@ local coreKernels = asset.require("spice/core")
local SolarSystemBarycenter = {
Identifier = "SolarSystemBarycenter",
-- No parent; this node is attached to the scene graph root
TimeFrame = { -- Using Spice kernels for 1850-2150
TimeFrame = {
Type = "TimeFrameInterval",
Start = "1550-JAN-01",
End = "2650-JAN-22"