classref: Sync with current master branch (518b9e580)

This commit is contained in:
Rémi Verschelde
2023-01-27 15:10:25 +01:00
parent b168eb52f3
commit fe259f74ff
158 changed files with 3976 additions and 4796 deletions

View File

@@ -91,7 +91,7 @@ The following code will set ``can_shoot`` to ``false`` and start a timer. This w
_can_shoot = false
_cool_down.start()
func _on_CoolDownTimer_timeout():
func _on_cool_down_timer_timeout():
_can_shoot = true
.. code-tab:: csharp