diff options
author | Doug Thompson <s-git@dougthompson.co.uk> | 2023-01-15 13:26:21 +0000 |
---|---|---|
committer | Doug Thompson <s-git@dougthompson.co.uk> | 2023-01-15 13:26:29 +0000 |
commit | a4c734ed32c1714b32aef6c56a06504778469c9e (patch) | |
tree | f3afe9f500b5b0a6a05c1d466fb33c98a9a6df11 /doc/classes/UndoRedo.xml | |
parent | 9711abe78773426644b640d6052273203931555e (diff) | |
download | redot-engine-a4c734ed32c1714b32aef6c56a06504778469c9e.tar.gz |
Class reference: snake_case .gd filenames, _on_*
This is for:
https://github.com/godotengine/godot-docs/issues/6245
Diffstat (limited to 'doc/classes/UndoRedo.xml')
-rw-r--r-- | doc/classes/UndoRedo.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/UndoRedo.xml b/doc/classes/UndoRedo.xml index 7258efbdda..42baf7728d 100644 --- a/doc/classes/UndoRedo.xml +++ b/doc/classes/UndoRedo.xml @@ -17,7 +17,7 @@ func undo_something(): pass # Put here the code that reverts what's done by "do_something()". - func _on_MyButton_pressed(): + func _on_my_button_pressed(): var node = get_node("MyNode2D") undo_redo.create_action("Move the node") undo_redo.add_do_method(self, "do_something") |