miggor-StreamGraph/classes/deck/nodes/button.gd
2023-07-21 08:30:12 +03:00

13 lines
172 B
GDScript

extends DeckNode
func _init() -> void:
name = "Button"
node_type = "button"
description = "a button"
add_output_port(
Deck.Types.BOOL,
"Press me",
"button"
)