it's 110.2 .
I've tired both options
( original build in 108 )
- On button x pressed: set LocalVar to 1
- LocalVar = 1: do stuff
- Local number (non-static) LocalVar = 0
and
- Local number (non-static) LocalVar = 0
- On button x pressed: set LocalVar to 1
- LocalVar = 1: do stuff
and none of them work, which is very bizarre because i did not change anything but suddenly just stopped working with an update!
;(
EDIT@ Ok, so I'm pretty sure non-static Local Variables are broken. Here is the reason why:
- On button x pressed: set LocalVar to 1
- LocalVar = 1: do stuff
Set LocalVar to 0
- Local number (static) LocalVar = 0
And this way it works but as we know there shouldn't be a need for that if i only want to trigger local var once per loop by keeping it non-static.