| Enum Values | Documentation |
|---|
| INHERIT | Inherits mode from the node's parent. This is the default for any newly created node
|
| PAUSABLE | Stops processing when Application::isPaused() is true. This is the inverse of PROCESS_MODE_WHEN_PAUSED
|
| WHEN_PAUSED | Process only when Application::isPaused() is true. This is the inverse of PROCESS_MODE_PAUSABLE
|
| ALWAYS | Always process. Keeps processing, ignoring Application::isPaused(). This is the inverse of PROCESS_MODE_DISABLED
|
| DISABLED | Never process. Completely disables processing, ignoring Application::isPaused(). This is the inverse of PROCESS_MODE_ALWAYS
|