From 09d38572cf0cbb3598e846e3d22804a3b1680f68 Mon Sep 17 00:00:00 2001 From: Aaron Date: Tue, 7 Nov 2023 17:20:05 -0500 Subject: [PATCH] Fix: Use the earlier name of the script. --- getting_started/step_by_step/scripting_player_input.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getting_started/step_by_step/scripting_player_input.rst b/getting_started/step_by_step/scripting_player_input.rst index acd007726a9..40266127641 100644 --- a/getting_started/step_by_step/scripting_player_input.rst +++ b/getting_started/step_by_step/scripting_player_input.rst @@ -144,7 +144,7 @@ Here is the complete ``sprite_2d.gd`` file for reference. using Godot; - public partial class Sprite : Sprite2D + public partial class MySprite2D : Sprite2D { private float _speed = 400; private float _angularSpeed = Mathf.Pi;