Actor destruction out of the screen

mikbiomikbio Member Posts: 54
edited November -1 in Working with GS (Mac)
Does an actor destroy himself when goes out of the screen? Or do i have to give a rule to destroy it when it's position is on the edge of the screen?

Comments

  • POMPOM Member Posts: 2,599
    Actors are become unresponsive if they are 501 px away from your scene .
    Not sure if they get destroyed though , i suggest putting a rule to destroy them .
    Something like :

    When any :
    When self.position.Y > 500
    When self.position.Y < -500
    When self.position.X > 500
    When self.position.X < -500

    Destroy

    Roy.
Sign In or Register to comment.