Hi again folks.
So I need to create 2 object every 10 seconds, but at a random time during these 10 seconds.
Is that doable?
Printable View
Hi again folks.
So I need to create 2 object every 10 seconds, but at a random time during these 10 seconds.
Is that doable?
Use the TimeX extencion to accomplish this
...
Or you can create your own timer using Counters if you dont want to use the TimeX
Yep,..I would use counters to do this too!
Use the built-in alterable/global values to achieve this, saves using extension and more code.
Create a manual built-in timer:
Every 1 Second + Alt Value of Active > 0: Subtract 1
Every 10 seconds: Set Alterable Value of Active (Random(10)+1)
Alt Value A of Active = 0: Create Object(s)
Very neat. I will remember that bit of information. hopefully.
For my specific task I found that a moving object spawning the objects works better.. Thanks for the input.