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>
17 lines
242 B
GDScript
17 lines
242 B
GDScript
extends DeckNode
|
|
|
|
|
|
func _init() -> void:
|
|
node_type = "test_interleaved"
|
|
name = "Test Interleaved"
|
|
category = "test"
|
|
|
|
for i in 4:
|
|
add_output_port(
|
|
Deck.Types.STRING,
|
|
"Test"
|
|
)
|
|
add_input_port(
|
|
Deck.Types.STRING,
|
|
"Test"
|
|
)
|