Hi,
List<Input<double>>
will not work the way you expect it to.
Instead, you can use Input<List<double>>
. It will work properly. Since Input<T>
is determined by the Editor as something that can be connected to outputs of the same type.
Hi,
List<Input<double>>
will not work the way you expect it to.
Instead, you can use Input<List<double>>
. It will work properly. Since Input<T>
is determined by the Editor as something that can be connected to outputs of the same type.