Collision Problem

Incarnin

  • Posts: 18
I'm trying to make it so when an actor hits a specific collision group it goes through it and gains a point. That collision group is next to 2 collision groups that kill the actor. I changed the Point gaining group specifically but my actor still dies when touching that group, any help?

gurigraphics

  • Posts: 690
Set player as player.
Set enemies_1 as enemies_1.
Set enemies_2 as enemies_2.
Set points_add as points_add.

Create the logic:
if player collides with enemies_1 kill player.
if player collides with enemies_2 kill player.
if player collides with points_add add point.

Make sure all animations of the all characters are with the correct group.

« Last Edit: February 14, 2014, 07:17:15 pm by gurigraphics »