Преглед на файлове

Remove extra paren in Scripting Continued

Russell Waldrop преди 8 години
родител
ревизия
411e490320
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      learning/step_by_step/scripting_continued.rst

+ 1 - 1
learning/step_by_step/scripting_continued.rst

@@ -48,7 +48,7 @@ with the following script:
 
     func _process(delta):
         accum += delta
-        text = (str(accum) # text is a built-in label property
+        text = str(accum) # text is a built-in label property
 
 Which will show a counter increasing each frame.