summaryrefslogtreecommitdiff
path: root/modules/mono
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2021-10-04 22:01:21 +0200
committerGitHub <noreply@github.com>2021-10-04 22:01:21 +0200
commitad08483fa6a424de00ae4819555f1c7f8758524f (patch)
tree65f9b6f3e860d47430c80f16b75e35d7de4a78fe /modules/mono
parent5b270278c869461a3dce2c0d0db71e0beaa50685 (diff)
parent6397eaa27e5714048ba50726a6a5dd32e5c9968b (diff)
Merge pull request #53406 from KoBeWi/are_you_a_process_or_an_idle
Diffstat (limited to 'modules/mono')
-rw-r--r--modules/mono/glue/GodotSharp/GodotSharp/Core/Object.base.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/glue/GodotSharp/GodotSharp/Core/Object.base.cs b/modules/mono/glue/GodotSharp/GodotSharp/Core/Object.base.cs
index 8fe08e7e1d..746612477d 100644
--- a/modules/mono/glue/GodotSharp/GodotSharp/Core/Object.base.cs
+++ b/modules/mono/glue/GodotSharp/GodotSharp/Core/Object.base.cs
@@ -117,7 +117,7 @@ namespace Godot
/// {
/// for (int i = 0; i &lt; 100; i++)
/// {
- /// await ToSignal(GetTree(), "idle_frame");
+ /// await ToSignal(GetTree(), "process_frame");
/// GD.Print($"Frame {i}");
/// }
/// }