You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is odd and I'm looking into it. I'm not sure at all why toFixed would not appear as a float. perhaps it is being interpreted as a string or something. checking on it ...
i'm using javascript to send message to ofxLiveDraw over OSC.
it seems that if i send an int from max as argument to scale, ofxLiveDraw won't accept it.
so:
works only if scaleX, scaleY and scaleZ are floats;
it also appears that a "fixed" float doesn't work:
i.e.
outlet(0,"/livedraw/layers/"+name+"_LAYER"+"/transform/scale", scaleX.toFixed(4), scaleY.toFixed(4), scaleZ.toFixed(4));
which gives
print: /livedraw/layers/MOVIE_LAYER/transform/scale 1.5900 1.5900 1.5900
does nothing.
any work around?
The text was updated successfully, but these errors were encountered: