Page 1 of 1
Is it possible to have a move skydome that rotates? [Solved]
Posted: Sun Feb 25, 2018 11:22 am
by LitFam
Is there a way to make skydomes roate left to right or right to left in the .sky file?
Re: Is it possible to have a move skydome that rotates?
Posted: Sun Feb 25, 2018 2:17 pm
by thelegend
From the kas2.sky:
Code: Select all
DomeModel()
{
Geometry("kas2_sky_clouds");
rotationspeed(0.004, 0,1.0,0);
}
rotationspeed is what you are looking for. But I am not sure what the numbers stand for. Maybe the first one is the speed (0.004 = very slow) and the other 3 values are for the X, Y, Z direction; in which the model rorates.
Re: Is it possible to have a move skydome that rotates? [Sol
Posted: Sun Feb 25, 2018 2:42 pm
by LitFam
Thanks!
