I don’t get that error on my Mac. It seems to work and doesn’t throw an error,
You do get warnings like this:
Jan 12 05:15:50.565 WARNING: Cannot create path for resource file ‘gameLevel.ccscene’. File does not exist.
Jan 12 05:15:50.566
Jan 12 05:15:52.937 WARNING: Cannot create path for resource file ‘HPQ1.ccscene’. File does not exist.
Jan 12 05:15:52.937
Jan 12 05:15:52.938 WARNING: Cannot create path for resource file ‘horaot.ccscene’. File does not exist.
Jan 12 05:15:52.939
Jan 12 05:16:06.885 WARNING: Cannot create path for resource file ‘RGQ1.ccscene’. File does not exist.
When you create a scene, you’re doing:
local horaot = composer.newScene("horaot")
which tries to load an old (no longer available) ComposerCreator object. What you should be doing is:
local horaot = composer.newScene()
You should not be passing a parameter to composer.newScene()
Also my console log is being spammed by massive amounts of calls to appodeal’s show() call.
Unfortunately I don’t see anything wrong with the image either.
Rob