2
0
Эх сурвалжийг харах

Merge pull request #2168 from Bassie-c/patch-2

Added missing semicolon after C# instruction
Nathan Lovato 6 жил өмнө
parent
commit
3261603ba2

+ 1 - 1
getting_started/step_by_step/scripting.rst

@@ -238,7 +238,7 @@ the following underneath the ``_ready()`` function:
 
 
     public override void _Ready()
     public override void _Ready()
     {
     {
-        GetNode("Button")
+        GetNode("Button");
     }
     }
 
 
 Next, write a function which will be called when the button is pressed:
 Next, write a function which will be called when the button is pressed: