Page 1 of 1

recommended way to store array data

Posted: 31 Aug 2021, 19:41
by woodslanding
I discovered the hard way that if I simply type values into an array get set module output, they are not remembered on restart. If I basically just want an array of constants, what is the most straightforward way to patch this? I'd rather not have a whole bunch of constant modules, but I could do that of course... Basically the value equivalent of a text panel?

Re: recommended way to store array data

Posted: 01 Sep 2021, 18:50
by senso
If you want a fixed array you can use the math-constant and set values to 1;2;3;4; or whatever.
the semicolon ';' is the array elements separator.

Re: recommended way to store array data

Posted: 07 Sep 2021, 05:24
by woodslanding
Perfect, thanks!