Hello guys,
it's kind of difficult to explain, but right now I have the following issue. Example - all old instances should be moved 50px on the Y-Axis, after that new instances should be created on top of them.
-> For each instance saved in the 2D-Array
> move instances +50 px on Y axis
-> Add new row into the 2D-Array (Push front 0 Y axis)
-> Create new instances in this new row
The issue is, that all this events/actions are happening at the same time, so that new instances are alos being moved 50px.
Is it possible to execute events only if the previous is finished?