make delay use ANY type on i/o

This commit is contained in:
Lera Elvoé 2023-12-10 20:18:16 +03:00
parent 6d8e64b90a
commit c323a64d60
No known key found for this signature in database

View file

@ -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")