Skip to content

Bug fixes

Choose a tag to compare

@MerlinVR MerlinVR released this 07 Apr 19:14
· 1184 commits to master since this release
  • e059f61: Fix issue with binary expressions not handling their lhs value properly. The specific issue was that if you had a compound assignment or called a function from the right hand side of the expression which modified the value that the left hand side was using, the left hand side would use that modified value. Where it should've been using the unmodified value since the left hand side was evaluated first. Reported by @ureishi
  • 46342da: Fix with calling methods on array elements of user defined type arrays, reported by AirGamer