locking one actor to another
betz40
Member Posts: 3
hi everyone,
So i'm making a snowman game. where the snowman goes down a hill and crashes and the player has to put the snowman back together. when they put the three circles back together how do I lock them into place so they become one object once they touch each other?
thanks
Comments
You can make this:
"When ALL of the following are happening: actor A overlaps or collides actor B / actor B overlaps or collides actor C
DO:
Destroy actor A / Destroy actor B / Destroy actor C / spawn a new actor (which would be the full snowman) at the position where the actors A, B and C were"
Try this and tell me if it worked
thanks that was exactly what I was trying to do!