V1.6 cel script from 1.5.1 not all working
Posted: 30.03.2009, 02:10
I have a cel script that worked beautifully in version 1.5.1
The part that I used from Space opera to show the Milky way is the part that no longer works.
The Select object Milky Way doesn't work from a script on inside the the interface
the way the other script goes there doesn't work in 1.6 either. Not sure which build version of the 1.6 I have
Any help is appreciated.
Basically I want to go thorugh dark space get to the Milky Way at a resp[ectable distancle . orbit for a bit . then oof to the sun earth ... etc
Just nee the first part to work like it did in 1.5.1
Reason I want to use 1.6 is the ability to set lince colors and label colors . I want to show Lakota constellations in one color and when I switch to other Nations change the line colors and labels.
Thanks Again
The part that I used from Space opera to show the Milky way is the part that no longer works.
The Select object Milky Way doesn't work from a script on inside the the interface
the way the other script goes there doesn't work in 1.6 either. Not sure which build version of the 1.6 I have
Any help is appreciated.
Basically I want to go thorugh dark space get to the Milky Way at a resp[ectable distancle . orbit for a bit . then oof to the sun earth ... etc
Just nee the first part to work like it did in 1.5.1
Reason I want to use 1.6 is the ability to set lince colors and label colors . I want to show Lakota constellations in one color and when I switch to other Nations change the line colors and labels.
# Lakota Constellation Tour
# Part taken from the Celestia script Galaxy part by Paul Swennenhuis
# 1 lightyear= 9460800000000 km ~ 1e+13 km
# initialization
# enable constellations and their labels
renderflags { clear "atmospheres|automag|boundaries|cloudmaps|comettails|constellations|eclipseshadows|galaxies|grid|markers|nightmaps|orbits|planets|pointstars|ringshadows|stars"}
labels { clear "asteroids|comets|constellations|galaxies|moons|planets|spacecraft|stars"}
renderflags { set "constellations|atmospheres|galaxies|planets|pointstars|stars|cloudmaps"}
# *****************Celectial Galaxy script excerpt *******************
set {name "ambientlightlevel" value 0.5}
setfaintestautomag45deg {magnitude 7.2}
set {name "fov" value 15}
set {name "stardistancelimit" value 1000000}
timerate {rate 1.0}
select {object "milky way" }
track{}
# start of at 500 million lightyears from home, to get an empty screen
gotoloc {time 1 position [50e+20 0 0] }
wait {duration 5}
renderflags { set "constellations|atmospheres|automag|cloudmaps|eclipseshadows|galaxies|nightmaps|planets|pointstars|ringshadows|stars"}
# 9 million lightyears from home...
#print {text "Space. An empty place..." origin "left" column 5 duration 6}
# get a bit closer, to see the Milky Way
# this position makes sure we see the Milky Way from 'above'
gotoloc {time 6 position [1e+19 67 93] }
wait {duration 6}
# **************END of GALAXY Snip*************************************************
select { object "Milky Way" }
#print { text "We're viewing the entire Milky Way galaxy." row -3 duration 6 }
orbit { axis [ 1 3 1 ] rate 30 duration 12.0 }
#print { text "Time to go home . . ." row -3}
cancel{}
# from Milky way to the sun
select {object "Sol"}
follow{}
wait {duration 6}
# Explore Moon of Earth
select { object "Sol/Earth/Moon" }
Thanks Again