Its not always possible to make a capx. Not without rebuilding the entire project to clean out client restricted content...
Repeat 10 times
Spawn Object Size 10, 10 at Position 5, 5
Add 10 to Position X
This spawns 10 square objects in a straight line all at the same time.
I would like to place a slight delay between each spawn. 0.01-0.1 seconds.
I've tried to add "Wait" in various places and it will skip spawning objects or have zero effect.
Repeat 10 times
*Wait 1 second*
Spawn Object Size 10, 10 at Position 5, 5
Add 10 to Position X
results in object spawning being skipped and I only get the last few
Repeat 10 times
Spawn Object Size 10, 10 at Position 5, 5
Add 10 to Position X
*Wait 1 second*
seems to have no effect and all objects spawn all at once.
Perhaps using Repeat X Times is not the way to accomplish this? Its nice and cyclical but maybe I need to build something less procedural with the same results so I have someplace to put in my pauses?