guys how do i make this number into a timer, (JUST FOR MY WORK IN PROGRESS ANIMATION)
If you go to the wick editor site and go to learn, there is something about changing text with code, you might have to tweak some things, if you want help you can ask me.
i need help making a timer.
Ok, I will make some code for you give me about 10 minutes
Btw how long do you want it to be?
330 please
Ok I’m right on it
before I started I wanted to see if there was a forum post and there was I need help for a timer
just change the seconds past to 330 and you are good
That should be easy
Default script
window.TIMER = 300; // set timer in seconds
Update script
window.TIMER-= 1/project.framerate; // decrease timer
text.setText(Math.round(TIMER)); // set text to timer
(Replace “text” with the name of your text object)
If you want the timer to count up, set it to zero by default and rather than decrease make it increase by 1/project.framerate
.