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

12 lines
124 B
GDScript3
Raw Normal View History

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