How can I change a parameter on a timer when my app has already started?
Here is my function
increase = function()
frequency = frequency - 100
end
then I got a button that is supposed to increase the frequency of the timer
object:addEventListener(“tap”, increase)
timer:
frequency = 1000
superTimer = timer.performWithDelay(frequency, spawnCircle, -1)
Thanks! Joakim
This will be work.