When arrays are simulated, implicit type conversions are disabled and "Assume integers" is enabled, array[0] will generate an error as ArrayGet is expecting a float but received an integer instead.
array[0]
Ideally, ArrayGet should use integer keys.
This issue might also compound other operations; x = (i >= 6) ? 160 : 0; generates an implicit type mismatch, even if x and i are both integers.
x = (i >= 6) ? 160 : 0;
Moved to https://github.com/fte-team/fteqw/issues/133
Log in to post a comment.
This issue might also compound other operations;
x = (i >= 6) ? 160 : 0;generates an implicit type mismatch, even if x and i are both integers.Moved to https://github.com/fte-team/fteqw/issues/133