浏览代码

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

Added missing semicolon after C# instruction
Nathan Lovato 6 年之前
父节点
当前提交
3261603ba2
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      getting_started/step_by_step/scripting.rst

+ 1 - 1
getting_started/step_by_step/scripting.rst

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