Hey there,
i was just wondering if the following is a known bug or not with the editor/compiler (or a feature?!?
), cause i didn't find anything related so far in the bug tracker or forum:
Code: ags
took me quite some time to figure out what was blocking my script to compile...
i was just wondering if the following is a known bug or not with the editor/compiler (or a feature?!?

//---------------------
// AGS version: v3.2.1
//---------------------
float a = 3.0;
a *= -1.0; // NOK: parse error at 'a'
a = a * -1.0; // NOK: invalid use of operator '*'
a = -1.0 * a; // OK
took me quite some time to figure out what was blocking my script to compile...
