how do I make a single frame longer without extending it. (I’m doing 2.0.)
If you go to the settings tab in the top right you can change the framerate
no, sorry but i mean like keeping it 1 frame but extending the TIME not the length. sorry and thank you!
What do you mean by time?
You can add this code to the default script of the frame:
stop();
this.Timer=0;
window.seconds=10;
(change the 10 with the number of seconds you want the frame to pause for)
And add this in the update script of the frame:
this.Timer++;
if(this.Timer/project.framerate===Seconds)
play();
This should make the frame play after 10 seconds
1 Like
Thank you very much!
1 Like