mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-10 21:00:25 +01:00
8 lines
135 B
GDScript3
8 lines
135 B
GDScript3
|
extends Node
|
||
|
|
||
|
|
||
|
|
||
|
func _on_Terminal_key_pressed(event: InputEventKey, data: PoolByteArray):
|
||
|
print(data as Array)
|
||
|
print(event.scancode)
|