miggor-StreamGraph/classes/deck/nodes/button.gd

14 lines
173 B
GDScript3
Raw Normal View History

###type=button
extends DeckNode
func _init() -> void:
add_output_port(
2023-06-12 17:59:30 +02:00
Deck.Types.BOOL,
"Press me",
"button"
)
name = "Button"
node_type = name.to_snake_case()