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

15 lines
194 B
GDScript3
Raw Normal View History

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