Oh I see, thanks for the explanation.
I want every 3rd instance of my platform sprite to spawn an enemy on top of it. But the thing is onces the character gets past three platforms, three 3 new instances of the same objects apear, and the last 3 are destroyed. If that makes sense. I can expand on this more if your still confused
But first, what happens to the instance object once its destroyed? Is the next object of that same spot assigned the same instance? By that I mean when the three previous objects are destroyed will the new objects just replace the previous ones as 1,2,3, or does it continue from the previous instance and count the newly created object as a new instance? such as 4,5,6
For example:
Let says I spawn 3 bullet objects.
Im assuming there assigned as instances 1 to 3.
But when all three of them are destroyed, will the next 3 spawned bullet objects of the same type become instances 1 to 3? or will it continue past 3 and become 4, 5 and 6?
Im sorry if its confusing I'm still new to construct 2, but I appreciate the help, I can clear up other parts if its still confusing
I can't understand your question to be honest. try to explain better what are you looking for.
The instance thing is easy, let's say we have the SpriteX, and we spawn it multiple times. The first that you spawned will be the 1st instance, the second will be the second instance, is like an array of objects.
array = {'Peter','Ann','Josh'}
Peter is the first instance, Ann the second, Josh the tird.