mirror of
https://codeberg.org/StreamGraph/StreamGraph.git
synced 2024-11-13 19:49:55 +01:00
make delay use ANY type on i/o
This commit is contained in:
parent
6d8e64b90a
commit
c323a64d60
1 changed files with 2 additions and 2 deletions
|
@ -8,10 +8,10 @@ func _init():
|
||||||
description = "A Node that passes through the input after the set time."
|
description = "A Node that passes through the input after the set time."
|
||||||
category = "general"
|
category = "general"
|
||||||
|
|
||||||
add_output_port(DeckType.Types.STRING, "Value", "")
|
add_output_port(DeckType.Types.ANY, "Value")
|
||||||
|
|
||||||
add_input_port(DeckType.Types.NUMERIC, "Delay Time", "field")
|
add_input_port(DeckType.Types.NUMERIC, "Delay Time", "field")
|
||||||
add_input_port(DeckType.Types.NUMERIC, "Value", "field")
|
add_input_port(DeckType.Types.ANY, "Value", "field")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue