Fix typo in C# example in Running code in the editor

This commit is contained in:
Hugo Locurcio
2025-04-22 14:14:59 +02:00
parent c5da624227
commit 72834c31a3

View File

@@ -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;
}
}