mirror of
https://codeberg.org/StreamGraph/StreamGraph.git
synced 2024-11-13 19:49:55 +01:00
13 lines
172 B
GDScript
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"
|
|
)
|