Storing values in panels
-
How to save same values inside the panels with the presets?
-
@Steve-Mohican In order to store the state of your panel with preset you can store it as a state object inside the value object of a panel (not the data object as this isn't saved with preset), I've just made an example a week ago:
https://forum.hise.audio/topic/6984/store-values-in-scriptpanel-data-object/12?_=1672411747156
In this example I simply store component states, but you could use an object of the form
{state:[4,2,5,0,1,3]}
just to give an idea -
@ustk Thank you for your suggestion.