there’s no way to update individual components of ofParameter, the cause is that ofParameter is meant to always notify it’s event when it changes but there’s no way for ofParameter to know which would be it’s value after a call to a mutable operation on the variable it holds.
You can call any const method or access any of it’s variables for read only on an ofParameter like:
But you can’t access any of it’s mutable mehtods or change the value of it’s variables. The only way to mutate an ofParameter contents is to set it’s full value again, so you would need to do something like: