mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-04 02:29:49 -06:00
- 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.
17 lines
536 B
Lua
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() |