how do i make my character blow up when it collides with something?

JValdovinosJValdovinos Member Posts: 6
i want to know how i make my character blow up when it touches an object.
and also
how do i make an object blow up when i shoot it?

Best Answer

  • Accepted Answer
    when actor 1 overlaps or collides with actor 2
    destroy actor

    you will have to animate it blowing up and display that after the collision but before it explodes.

    same thing with shooting it, when the actor2 overlaps or collides with bullet actor
    destroy actor
    Just before you destroy actor, you can spawn an actor which would have the following rules inside:

    Animate: images to animate go here i.e. explosion (untick loop)
    timer - after 1 second, destroy actor.

Answers

  • ShinplasterShinplaster Member Posts: 45
    well do you have different objects that it can collide with?

    And do you have a firing mechanism that, that could be possible?
  • jonmulcahyjonmulcahy Member, Sous Chef Posts: 10,408
    when actor 1 overlaps or collides with actor 2
    destroy actor

    you will have to animate it blowing up and display that after the collision but before it explodes.

    same thing with shooting it, when the actor2 overlaps or collides with bullet actor
    destroy actor
Sign In or Register to comment.