diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-07-22 12:41:41 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2019-07-22 12:41:41 +0200 |
commit | 16288cabc0fa959f4f23d7861708ad751b2c6736 (patch) | |
tree | db20644b2fd54517c1a9f8910e9f3f383d275fc5 | |
parent | 5b20b49bf721185f05d2881dc04884eb7ffc2b6e (diff) |
doc: More formatting fixes
-rw-r--r-- | doc/classes/EditorPlugin.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/EditorPlugin.xml b/doc/classes/EditorPlugin.xml index 9d3fec69b9..fddc5e9d36 100644 --- a/doc/classes/EditorPlugin.xml +++ b/doc/classes/EditorPlugin.xml @@ -218,7 +218,7 @@ Must [code]return false[/code] in order to forward the [InputEvent] to other Editor classes. Example: [codeblock] # Consumes InputEventMouseMotion and forwards other InputEvent types - func forward_canvas_gui_input(event): + func forward_canvas_gui_input(event): var forward = false if event is InputEventMouseMotion: forward = true @@ -244,7 +244,7 @@ Must [code]return false[/code] in order to forward the [InputEvent] to other Editor classes. Example: [codeblock] # Consumes InputEventMouseMotion and forwards other InputEvent types - func forward_spatial_gui_input(camera, event): + func forward_spatial_gui_input(camera, event): var forward = false if event is InputEventMouseMotion: forward = true |