Files
OpenSpace/scripts/default_startup.lua
Michal Marcinkowski fa0f26c9da In short, this is new:
- ImageSequencer class added, requires planetary data service files (not added to openspace-data, too large)
   : Given current time returns path to specific image in dataset for projection.
- Changes to RenderablePlanetProjection class to accomodate sequencing
- Fixed normal computation in reverse-mapping stage
- Rudimental target recognition (will prob. become part of separate class at some point - since both fov & proj classes do similar things)

Next up:
- Redo pluto mockup visualization & begin spreadsheet reader for instrument-switching.
2015-01-16 13:06:52 -05:00

17 lines
536 B
Lua

--openspace.setPropertyValue('Earth.renderable.colorTexture', '${OPENSPACE_DATA}/modules/mars/textures/mars.png')
--openspace.time.setTime("2007-01-08T20:42:01.359") -- far
openspace.time.setTime("2007-02-27T16:30:00.000") -- close
--openspace.time.setDeltaTime(200000.0)
--openspace.time.setDeltaTime(5000.00)
--openspace.time.setDeltaTime(864000)
openspace.time.setDeltaTime(0)
-- print(openspace.time.currentTimeUTC())
function loadKeyBindings()
p = openspace.absPath('${SCRIPTS}/bind_keys.lua')
dofile(p)
end
loadKeyBindings()