Hello!
Well, that I have a small question as I have to do to make a moving object texture changes every x seconds, for example a cube that turns on itself, with all six sides with an image, and change from one image to another image after a certain time, enough to recognize the image. For example in the following code, what would you add to that possible?
load image "Image1.jpg",2
load image "Image2.jpg",3
load image "Image3.jpg",4
load image "Image4.jpg",5
load image "Image5.jpg",6
load image "Image6.jpg",7
Make Object Box 1,100,100,100:Texture Object 1,2
position object 1,-1,-20,120
do
yrotate object 1,object angle y(1)+0.1
xrotate object 1,object angle x(1)+0.1
loop
Change the texture of the moving object, wait five seconds and change to another image, while moving.
Thanks.