Two actors match.
pavel
Member Posts: 34
How to make when one actor MATCHES with another actor and another actor destroys?
Help.
Help.
Comments
Hope that helps.
I have ball and score ball.
Then ball goes on score ball and FULL MATCHES with it score ball destroys.
Do you understand me?
Thank for your help)
Try storing the ball x and y position in a game attribute, and store the score ball x and y position in a game attribute too. Then add a rule to the score ball saying that if game.BallX = game.ScoreBallX and game.BallY = game.ScoreBallY then destroy actor. Storing the positions of each in game attributes would be a lot easier than having the actors check each others positions.