I've started with celestia scripts two days ago. I'm trying to make a simple tour, it's almost done but the last point doesn't work!
1. start in the Earth, make some orbits to the equator (Earth looks south to north as usual) (ok)
2. Move far away, out of the galaxy (I've used the changedistance script, very powerful) (ok)
3. make some orbits around the Milky Way (ok)
4. return Earth and orbit again the equator (BAD, why)
The 4th point orbits in any direction, Earth it's not oriented South-North as usual. I've tryed to use lot of commands but no way.
This is my script
Code: Select all
{
set { name "FOV" value 50.0 }
timerate { rate 0 }
labels { clear "planets|minorplanets|stars|constellations" }
renderflags { set "stars|planets|cloudmaps"
clear "constellations|orbits" }
select { object "Sol/Earth" }
center { time 5 }
wait { duration 5 }
goto { time 5 distance 5 upframe "equatorial" up [0 1 0] }
wait { duration 5 }
orbit { axis [ 0 1 0 ] rate 30 duration 16.0 }
changedistance { duration 10.0 rate 3.2 }
select { object "Milky Way" }
orbit { axis [ 1 0 0 ] rate 30 duration 16.0 }
select { object "Sol/Earth" }
goto { time 20 distance 5 upframe "equatorial" up [0 1 0] }
wait { duration 20 }
orbit { axis [ 0 1 0 ] rate 30 duration 16.0 }
wait { duration 3.0 }
}
what I'm doing wrong?
Thanks