I’ve been working on my first simple app for a few months now, and I haven’t had an issue so far, but from one day to the next, it started giving me Stack Traceback error, without me even changing any code!
I then realized I had updated Corona, and checked with older versions. My project runs fine on version 2015.2731, but errors out on 2015.2778 and also 2016.2808, which are the ones I’ve tried.
I have no clue what’s wrong. The error points to the following code:
function selectButton:touchEnded() audio.play(buttonSFX, {channel = audio.findFreeChannel()}); self:setFillColor(1, 1, 1); self.xScale, self.yScale = 1, 1; composer.gotoScene("gameScene", "fade"); end
Specifically “composer.gotoScene(“gameScene”, “fade”);” I check gameScene.lua, and find no problem.
Was there a change in the builds that might make my code not work??