Snake-case .tscn, .gd and _on_* callbacks

Co-authored-by: Doug Thompson <s-git@dougthompson.co.uk>
This commit is contained in:
Max Hilbrunner
2023-05-18 12:45:55 +02:00
parent 03081e0f14
commit 72c0af46b2
33 changed files with 133 additions and 139 deletions

View File

@@ -98,7 +98,7 @@ enemies that the player was spotted.
.. tabs::
.. code-tab:: gdscript GDScript
func _on_Player_spotted():
func _on_player_spotted():
get_tree().call_group("guards", "enter_alert_mode")
.. code-tab:: csharp