-
Notifications
You must be signed in to change notification settings - Fork 0
Description
hi there !
big thanks for sharing this addon ! seems usefull !
i'm trying to link an ofxOscVariable to a ofxFloatSlider of ofxGui in OF073 .
my idea is that a parameter could be controlled on the gui and then send updates of it's value, an receive also values from the osc receiver ...
simply i followed your example changing this :
in .h
ofxIntSlider delay;
in .cpp
oscVar.addVariableToPath(delay, "/pm/delay");
i get this compilation issue :
/../../../addons/ofxOscVariable/src/ofxOSCvariable.h: line 120:0
/../../../addons/ofxOscVariable/src/ofxOSCvariable.h:120: error: no matching function for call to 'ofxSlider::ofxSlider(int)'
on this line(120 of ofxOscVariable.h) T value = getValueFromMessage(m,(T)0);
i was hopping that this could work or even be a nice and clean idea to link gui + osc in and out ...
do you think it's possible to get this ?
thanks again.
e*