So I have a sprite that is part of a instance group of itself. 4 instances per group.
Example:
1 2
3 4
5 6
7 8
I have a group_id variable for each set. and 1 and 5 have a Var1 = -1 all the others have -2
I made all instances with a var-1 set to a random number that corresponds to a animation frame.
I want to instances 2,3,4 to copy the random 1 frame
6,7,8 copy 5
Trying to make the var=-2 just copy the random value var=-1 creates
Can make it work easy using two different sprites but is their a way to do it with one sprite? Some operations with the 2 sprite method are not working. Example: mirror and flip - when copying the animation frame VS making another sprite with all the same frame and doubling the project size. It would make my project development much smoother to use just the one sprite that could be used with behaviors or modified in additional ways with more variables in one sprite.