I have a sprite with 5 frames (0,1,2,3,4)
I've dropped the sprite onto the canvas 4 times so there are four UIDs (13, 14, 15, 16).
Ignoring the first frame (0) for ease of explanation, on start of layout I want each of the 4 UIDs to display a different frame of animation (either 1, 2, 3 or 4) but I don't want any of them to display the same frame at the same time. Make sense?
I've currently got:
---
Sprite > Pick instance with UID 13 > Sprite > set animation frame to choose(1,2,3,4)
---
So that covers the first instance choosing a random frame.
I then need UID 14 to choose a random frame from what frames are left, then 15 to choose a random frame and 16 to show the last remaining frame.
Any idea on how to go about this?
Thanks all :)