I have my own graphic component that works with doubles, but I don’t know how to add it to the tree correctly.
currently I add each parameter with createAndAddParameter, even if I don’t need the values used by sliders. I just need the ID and the value. Also I am forced to convert it to float.
i think i would just need something like this
> double value = 1.0;
> tree.createAndAddParameter ("param", value);
and get it back
> std::atomic<double>* value = tree.getRawParameterValue ("param");
