see Image: mrwonka.com/wp-content/uploads/2018/08/Untitled.png
When you press on screen it spawns a coin every time, however it is not counting down correctly. instead it only counts every other coin. this is consistent, and does not have anything to do with how fast/slow I click.
any ideas?
The game distinguishes between tap and double-tap. So if you touch too fast, it always counts as double-tap and the condition is not fulfilled. Instead, take something like 'is touching object' and 'on touch start / end'.
No that didn't solve the issue.
What have you changed and what happens now?
I've tried using on touch object and on touch end. Neither of which change what happens. Here's an image of the SaveData page too, if that will help
mrwonka.com/wp-content/uploads/2018/08/Untitled-1.png
I am not that familiar with LocalStorage but is it necessary to check if a Key exist after you set that Key? Try it without 'Key exist' and put your actions under a 'LocalStorage on set' event. That worked, at least in my experimental setup:
Develop games in your browser. Powerful, performant & highly capable.
No that wouldn't solve it, as it breaks the loop, and prevents the system from updating the value of tokens. Thanks for trying though.