diff options
Diffstat (limited to 'scripts/combinator_panel.gd')
| -rw-r--r-- | scripts/combinator_panel.gd | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/combinator_panel.gd b/scripts/combinator_panel.gd new file mode 100644 index 0000000..333187f --- /dev/null +++ b/scripts/combinator_panel.gd @@ -0,0 +1,14 @@ +extends Panel + +func _ready(): + set_process_input(true) + +func _input(event): + print(event) + +func _on_Tree_gui_input( ev ): + #print(ev) + pass + +func _on_Tree_mouse_entered(): + print("enter") |
