From 72834c31a365ce43b5076db002686fa9e1ec3c8c Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Tue, 22 Apr 2025 14:14:59 +0200 Subject: [PATCH] Fix typo in C# example in Running code in the editor --- tutorials/plugins/running_code_in_the_editor.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/plugins/running_code_in_the_editor.rst b/tutorials/plugins/running_code_in_the_editor.rst index e9b8825aa..056268c5a 100644 --- a/tutorials/plugins/running_code_in_the_editor.rst +++ b/tutorials/plugins/running_code_in_the_editor.rst @@ -237,7 +237,7 @@ angle add a setter ``set(new_speed)`` which is executed with the input from the public override void _Process(double delta) { - Rotation += Mathf.Pi * (float)delta * speed; + Rotation += Mathf.Pi * (float)delta * _speed; } }