diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-10-04 22:01:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-04 22:01:21 +0200 |
commit | ad08483fa6a424de00ae4819555f1c7f8758524f (patch) | |
tree | 65f9b6f3e860d47430c80f16b75e35d7de4a78fe /modules/mono | |
parent | 5b270278c869461a3dce2c0d0db71e0beaa50685 (diff) | |
parent | 6397eaa27e5714048ba50726a6a5dd32e5c9968b (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.cs | 2 |
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 < 100; i++) /// { - /// await ToSignal(GetTree(), "idle_frame"); + /// await ToSignal(GetTree(), "process_frame"); /// GD.Print($"Frame {i}"); /// } /// } |