mirror of
https://codeberg.org/StreamGraph/StreamGraph.git
synced 2024-11-13 19:49:55 +01:00
eeb509cae0
we finally have a way to add nodes from a menu!! lets goooooooo Reviewed-on: https://codeberg.org/Eroax/Re-DotDeck/pulls/3 Co-authored-by: Lera Elvoé <yagich@poto.cafe> Co-committed-by: Lera Elvoé <yagich@poto.cafe>
14 lines
194 B
GDScript
14 lines
194 B
GDScript
extends DeckNode
|
|
|
|
|
|
func _init() -> void:
|
|
name = "Button"
|
|
node_type = "button"
|
|
description = "a button"
|
|
category = "general"
|
|
|
|
add_output_port(
|
|
Deck.Types.BOOL,
|
|
"Press me",
|
|
"button"
|
|
)
|