mirror of
https://codeberg.org/StreamGraph/StreamGraph.git
synced 2024-11-13 19:49:55 +01:00
fa5e9997ef
here we go Reviewed-on: https://codeberg.org/Eroax/Re-DotDeck/pulls/2 Co-authored-by: Lera Elvoé <yagich@poto.cafe> Co-committed-by: Lera Elvoé <yagich@poto.cafe>
16 lines
223 B
GDScript
16 lines
223 B
GDScript
extends DeckNode
|
|
|
|
|
|
func _init() -> void:
|
|
node_type = "test_interleaved"
|
|
name = "Test Interleaved"
|
|
|
|
for i in 4:
|
|
add_output_port(
|
|
Deck.Types.STRING,
|
|
"Test"
|
|
)
|
|
add_input_port(
|
|
Deck.Types.STRING,
|
|
"Test"
|
|
)
|