浏览代码

Clarify example code for signal

Section discussing placing signals above other properties did not actually contain a line for signals (which confused me). Clarifying the style guide by showing a signal on top
Brandon Lamb 5 年之前
父节点
当前提交
734c65b470
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      getting_started/scripting/gdscript/gdscript_styleguide.rst

+ 2 - 0
getting_started/scripting/gdscript/gdscript_styleguide.rst

@@ -592,6 +592,8 @@ variables, in that order.
 
 ::
 
+   signal spawn_player(position)
+
    enum Jobs {KNIGHT, WIZARD, ROGUE, HEALER, SHAMAN}
 
    const MAX_LIVES = 3