miggor-StreamGraph/classes/deck/nodes/button.gd
2023-12-15 02:11:31 +03:00

17 lines
394 B
GDScript

# (c) 2023-present Eroax
# (c) 2023-present Yagich
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
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"
)