Closed micsthepick closed 2 years ago
If I use JSFX code that includes such a line:
x ^= ex
it generates invalid code:
x(_a,) = ex_a = cb_Pow(x(_a,) = ex_a);
temporary workaround looks to be just converting x ^= y to x = x ^ y
x ^= y
x = x ^ y
thank you very much! will be checked.
fixed
If I use JSFX code that includes such a line:
it generates invalid code: