We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Within the init() method while initiating the interface and game sprite atlas :
self.interfaceSpriteAtlas = SKTextureAtlas(named: gameSprites) self.gameSpriteAtlas = SKTextureAtlas(named: interfaceSprites)
should be :
self.interfaceSpriteAtlas = SKTextureAtlas(named: interfaceSprites) self.gameSpriteAtlas = SKTextureAtlas(named: gameSprites)
The text was updated successfully, but these errors were encountered:
Updated GameTextures per Issue #4
c78e044
Hi Mark,
The source has been updated to fix this. The book will be updated when I have a chance to test the resolution to issue #3 .
Appreciate you taking the time to point it out.
Thanks,
Jeremy
Sorry, something went wrong.
No branches or pull requests
Within the init() method while initiating the interface and game sprite atlas :
self.interfaceSpriteAtlas = SKTextureAtlas(named: gameSprites)
self.gameSpriteAtlas = SKTextureAtlas(named: interfaceSprites)
should be :
self.interfaceSpriteAtlas = SKTextureAtlas(named: interfaceSprites)
self.gameSpriteAtlas = SKTextureAtlas(named: gameSprites)
The text was updated successfully, but these errors were encountered: