Demo Making help please

Started by
3 comments, last by Moogle 22 years, 8 months ago
I have made a scene in OpenGL (a lot of rotating cubes) and I want that to display for a while before the next scene shows up how do I do this? Thanks in beforehand
-=Moogle=-
Advertisement
I may be reading your question wrong, but couldn''t you wrap each scene you wish to display in a loop? That way you could run your spinning cubes for 3000 iterations, and then move on to the next.

Hope this helped,

Voodoo Bluesman
yes. Create a loop that says:

while(time_around <= 300)
{
then your script in here, and at the very end say

time_around++;
}

once it gets to 300 you will leave the loop.

"I''''ve sparred with creatures from the nine hells themselves... I barely plan on breaking a sweat here, today."~Drizzt Do''''Urden
------------------------------Put THAT in your smoke and pipe it
Oh Thanks a whole damn lot!
Oh yeah! Thanks! I have been using this many times in basic! HOw stupid I am!
-=Moogle=-

This topic is closed to new replies.

Advertisement