How to freeze every moving actor without pausing the game or scene?

Dell7730Dell7730 Member, PRO Posts: 388

I can make a single actor stop with any trigger but can't apply the same rule to all the other actors.

Best Answer

  • AJaymzAJaymz Posts: 164
    Accepted Answer

    @dellagarpo make boolean game attribute called Stop.

    In all your moving actors that u want stopped:
    -When game.Stop is false
    (Add your moving methods here)

    That way when you trigger game.Stop to be true then the moving actors will no longer run the move behaviors

Answers

  • Dell7730Dell7730 Member, PRO Posts: 388

    @AJaymz said:
    dellagarpo make boolean game attribute called Stop.

    In all your moving actors that u want stopped:
    -When game.Stop is false
    (Add your moving methods here)

    That way when you trigger game.Stop to be true then the moving actors will no longer run the move behaviors

    Thanks, really appreciate the help

Sign In or Register to comment.