diff --git a/classes/deck/nodes/delay.gd b/classes/deck/nodes/delay.gd index de6f090..13258ae 100644 --- a/classes/deck/nodes/delay.gd +++ b/classes/deck/nodes/delay.gd @@ -8,10 +8,10 @@ func _init(): description = "A Node that passes through the input after the set time." 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, "Value", "field") + add_input_port(DeckType.Types.ANY, "Value", "field")