mirror of
https://codeberg.org/StreamGraph/StreamGraph.git
synced 2024-11-13 19:49:55 +01:00
14 lines
250 B
GDScript
14 lines
250 B
GDScript
extends DeckNode
|
|
|
|
|
|
func _init() -> void:
|
|
name = "Button"
|
|
node_type = "button"
|
|
description = "A button to trigger certain nodes that have a trigger input."
|
|
category = "general"
|
|
|
|
add_output_port(
|
|
DeckType.Types.BOOL,
|
|
"Press me",
|
|
"button"
|
|
)
|