Hi,
i use a dictionnary to manage instance of sprites and i want to apply the equivalent of this fonction :
https://help.adobe.com/en_US/as2/reference/flashlite/WS5b3ccc516d4fbf351e63e3d118cd9b5f6e-797f.html
I do not see an identical method in construct 2
Ty for help
There is no "splice", but you can use Array->Delete in a loop.
For example, this will remove elements 2,3,4 from the array:
Repeat 3 times : Array delete index 2 from axis X
Develop games in your browser. Powerful, performant & highly capable.
Ok thx dop2000, i ll change the management of instances by array. It seems to be easy for manipulate elements.