Hello All,
I'm developing a click game, Every time I click on the object, I get one more coin.
How do I count the beats per second I'm giving on my object?
Develop games in your browser. Powerful, performant & highly capable.
Create a Global Variable.
On event Click (which gets you coin), add +1 to Global Variable. It will count your clicks.
Reset it if mouse clicks a new/different object. Begin adding +1 again.
Thanks,
Thanks for the answer umarfarooq
But, i want to know like how fast is he tapping per second right now, if he stops tapping the counter should get to zero and if he starts tapping again it should show something like 10taps/sec
dropbox.com/s/9vh4ck00cwlv7k3/sectimer.c3p
newt Thanks!
But it looks like it was saved in a newer version than mine, would it be a beta version?
editor.construct.net/beta
newt
Thanks, it was a good solution to the problem.