From 0dd0df3b7bf1ac96af449d421e8a01c324956351 Mon Sep 17 00:00:00 2001
From: notroid5 <87585310+notroid5@users.noreply.github.com>
Date: Sun, 1 Feb 2026 05:40:17 +0100
Subject: [PATCH] Improve ProcessMode docs
Co-Authored-By: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com>
Co-Authored-By: notroid5 <87585310+notroid5@users.noreply.github.com>
---
doc/classes/Node.xml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/doc/classes/Node.xml b/doc/classes/Node.xml
index 186fc4afb1..cbf04efedd 100644
--- a/doc/classes/Node.xml
+++ b/doc/classes/Node.xml
@@ -1333,16 +1333,16 @@
Inherits [member process_mode] from the node's parent. This is the default for any newly created node.
- Stops processing when [member SceneTree.paused] is [code]true[/code]. This is the inverse of [constant PROCESS_MODE_WHEN_PAUSED], and the default for the root node.
+ Processes when [member SceneTree.paused] is [code]false[/code]. This is the inverse of [constant PROCESS_MODE_WHEN_PAUSED], and the default for the root node.
- Process [b]only[/b] when [member SceneTree.paused] is [code]true[/code]. This is the inverse of [constant PROCESS_MODE_PAUSABLE].
+ Processes [b]only[/b] when [member SceneTree.paused] is [code]true[/code]. This is the inverse of [constant PROCESS_MODE_PAUSABLE].
- Always process. Keeps processing, ignoring [member SceneTree.paused]. This is the inverse of [constant PROCESS_MODE_DISABLED].
+ Always processes. Keeps processing, ignoring [member SceneTree.paused]. This is the inverse of [constant PROCESS_MODE_DISABLED].
- Never process. Completely disables processing, ignoring [member SceneTree.paused]. This is the inverse of [constant PROCESS_MODE_ALWAYS].
+ Never processes. Completely disables processing, ignoring [member SceneTree.paused]. This is the inverse of [constant PROCESS_MODE_ALWAYS].
Process this node based on the thread group mode of the first parent (or grandparent) node that has a thread group mode that is not inherit. See [member process_thread_group] for more information.