mirror of
https://codeberg.org/StreamGraph/StreamGraph.git
synced 2024-11-13 19:49:55 +01:00
11 lines
124 B
GDScript
11 lines
124 B
GDScript
extends DeckNode
|
|
|
|
|
|
func _init() -> void:
|
|
add_output_port(
|
|
Deck.Types.BOOL,
|
|
"Press me",
|
|
"button"
|
|
)
|
|
|
|
name = "Button"
|