Hi, I used to work with OF 0.9.8 on OSX and today I tried my project with the nightly build and I got this error.
Could anyone please advise me how to fix this error?
Do I need to recreate the whole project?
Hi, I used to work with OF 0.9.8 on OSX and today I tried my project with the nightly build and I got this error.
Could anyone please advise me how to fix this error?
Do I need to recreate the whole project?
i think you are trying to do:
vec2 -= vec3
which is not supported anymore, the new vector math classes don’t auto convert from vec2 <-> vec3 so you need to do something like:
vec2 -= vec3.xy()