Stop statement

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to navigation Jump to search

The stop statement is only allowed in state code and immediately halts state code execution without leaving the state. To restart state code again, you need to call the GotoState() function with the desired new state and/or label name.

To stop function code execution use the return statement instead.

Syntax

To halt state code execution, simply use:

stop;

That's all.