Enum Node.ProcessThreadMessagesEnum
- Namespace
- Godot
- Assembly
- GodotSharp.dll
[Flags]
public enum Node.ProcessThreadMessagesEnum : long
Fields
Messages = 1
Allows this node to process threaded messages created with CallDeferredThreadGroup(StringName, params Variant[]) right before _Process(double) is called.
MessagesAll = Messages | MessagesPhysics
Allows this node to process threaded messages created with CallDeferredThreadGroup(StringName, params Variant[]) right before either _Process(double) or _PhysicsProcess(double) are called.
MessagesPhysics = 2
Allows this node to process threaded messages created with CallDeferredThreadGroup(StringName, params Variant[]) right before _PhysicsProcess(double) is called.