Merge pull request #10887 from Calinou/running-code-in-the-editor-fix-csharp-typo

Fix typo in C# example in Running code in the editor
This commit is contained in:
Max Hilbrunner
2025-04-22 17:56:15 +02:00
committed by GitHub
@@ -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;
}
}