paused property

bool paused
getter/setter pair

Decides if the node and its children is currently paused.

A paused node will not receive any input events, update calls, or run any animations.

myNodeTree.paused = true;

Implementation

bool paused = false;