├── Examples ├── DrawingDemo │ ├── DrawingDemo.xcodeproj │ │ └── project.pbxproj │ └── DrawingDemo │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── DrawingDemo-Info.plist │ │ ├── DrawingDemo-Prefix.pch │ │ ├── SpriteView.h │ │ ├── SpriteView.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── ViewController.xib │ │ └── main.m ├── ImageMaps │ ├── lostgarden.atlas │ │ ├── Character Boy.png │ │ ├── Character Boy@2x.png │ │ ├── Character Horn Girl.png │ │ ├── Character Horn Girl@2x.png │ │ ├── Character Pink Girl.png │ │ ├── Character Pink Girl@2x.png │ │ ├── Character Princess Girl.png │ │ ├── Character Princess Girl@2x.png │ │ ├── Gem Blue.png │ │ ├── Gem Blue@2x.png │ │ ├── Gem Green.png │ │ ├── Gem Green@2x.png │ │ ├── Gem Orange.png │ │ ├── Gem Orange@2x.png │ │ ├── Heart.png │ │ ├── Heart@2x.png │ │ ├── Key.png │ │ ├── Key@2x.png │ │ ├── Rock.png │ │ ├── Rock@2x.png │ │ ├── SpeechBubble.png │ │ ├── SpeechBubble@2x.png │ │ ├── Star.png │ │ ├── Star@2x.png │ │ ├── Tree Short.png │ │ ├── Tree Short@2x.png │ │ ├── Tree Tall.png │ │ ├── Tree Tall@2x.png │ │ ├── Tree Ugly.png │ │ └── Tree Ugly@2x.png │ ├── lostgarden.plist │ ├── lostgarden.png │ └── lostgarden@2x.png ├── LayersDemo │ ├── LayersDemo.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── LayersDemo.xcscheme │ └── LayersDemo │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── LayersDemo-Info.plist │ │ ├── LayersDemo-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── ViewController.xib │ │ └── main.m ├── SpritesDemo │ ├── SpritesDemo.xcodeproj │ │ └── project.pbxproj │ └── SpritesDemo │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── SpriteCell.xib │ │ ├── SpritesDemo-Info.plist │ │ ├── SpritesDemo-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ └── main.m ├── TextureAtlasDemo │ ├── AtlasDemo.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── LayersDemo.xcscheme │ └── AtlasDemo │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── AtlasDemo-Info.plist │ │ ├── AtlasDemo-Prefix.pch │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── ViewController.xib │ │ └── main.m └── ViewsDemo │ ├── ViewsDemo.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── ViewsDemo.xcscheme │ └── ViewsDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── ViewController.h │ ├── ViewController.m │ ├── ViewsDemo-Info.plist │ ├── ViewsDemo-Prefix.pch │ ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib │ └── main.m ├── LICENCE.md ├── LayerSprites.podspec ├── LayerSprites ├── LSImage.h ├── LSImage.m ├── LSImageMap.h ├── LSImageMap.m ├── LSImageView.h └── LSImageView.m ├── README.md └── RELEASE NOTES.md /Examples/DrawingDemo/DrawingDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/DrawingDemo/DrawingDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/DrawingDemo/DrawingDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/DrawingDemo/DrawingDemo/AppDelegate.h -------------------------------------------------------------------------------- /Examples/DrawingDemo/DrawingDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/DrawingDemo/DrawingDemo/AppDelegate.m -------------------------------------------------------------------------------- /Examples/DrawingDemo/DrawingDemo/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/DrawingDemo/DrawingDemo/Default-568h@2x.png -------------------------------------------------------------------------------- /Examples/DrawingDemo/DrawingDemo/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/DrawingDemo/DrawingDemo/Default.png -------------------------------------------------------------------------------- /Examples/DrawingDemo/DrawingDemo/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/DrawingDemo/DrawingDemo/Default@2x.png -------------------------------------------------------------------------------- /Examples/DrawingDemo/DrawingDemo/DrawingDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/DrawingDemo/DrawingDemo/DrawingDemo-Info.plist -------------------------------------------------------------------------------- /Examples/DrawingDemo/DrawingDemo/DrawingDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/DrawingDemo/DrawingDemo/DrawingDemo-Prefix.pch -------------------------------------------------------------------------------- /Examples/DrawingDemo/DrawingDemo/SpriteView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/DrawingDemo/DrawingDemo/SpriteView.h -------------------------------------------------------------------------------- /Examples/DrawingDemo/DrawingDemo/SpriteView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/DrawingDemo/DrawingDemo/SpriteView.m -------------------------------------------------------------------------------- /Examples/DrawingDemo/DrawingDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/DrawingDemo/DrawingDemo/ViewController.h -------------------------------------------------------------------------------- /Examples/DrawingDemo/DrawingDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/DrawingDemo/DrawingDemo/ViewController.m -------------------------------------------------------------------------------- /Examples/DrawingDemo/DrawingDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Examples/DrawingDemo/DrawingDemo/en.lproj/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/DrawingDemo/DrawingDemo/en.lproj/ViewController.xib -------------------------------------------------------------------------------- /Examples/DrawingDemo/DrawingDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/DrawingDemo/DrawingDemo/main.m -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/Character Boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/Character Boy.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/Character Boy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/Character Boy@2x.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/Character Horn Girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/Character Horn Girl.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/Character Horn Girl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/Character Horn Girl@2x.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/Character Pink Girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/Character Pink Girl.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/Character Pink Girl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/Character Pink Girl@2x.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/Character Princess Girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/Character Princess Girl.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/Character Princess Girl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/Character Princess Girl@2x.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/Gem Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/Gem Blue.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/Gem Blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/Gem Blue@2x.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/Gem Green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/Gem Green.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/Gem Green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/Gem Green@2x.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/Gem Orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/Gem Orange.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/Gem Orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/Gem Orange@2x.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/Heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/Heart.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/Heart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/Heart@2x.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/Key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/Key.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/Key@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/Key@2x.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/Rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/Rock.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/Rock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/Rock@2x.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/SpeechBubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/SpeechBubble.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/SpeechBubble@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/SpeechBubble@2x.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/Star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/Star.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/Star@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/Star@2x.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/Tree Short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/Tree Short.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/Tree Short@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/Tree Short@2x.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/Tree Tall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/Tree Tall.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/Tree Tall@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/Tree Tall@2x.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/Tree Ugly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/Tree Ugly.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.atlas/Tree Ugly@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.atlas/Tree Ugly@2x.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.plist -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden.png -------------------------------------------------------------------------------- /Examples/ImageMaps/lostgarden@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ImageMaps/lostgarden@2x.png -------------------------------------------------------------------------------- /Examples/LayersDemo/LayersDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/LayersDemo/LayersDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/LayersDemo/LayersDemo.xcodeproj/xcshareddata/xcschemes/LayersDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/LayersDemo/LayersDemo.xcodeproj/xcshareddata/xcschemes/LayersDemo.xcscheme -------------------------------------------------------------------------------- /Examples/LayersDemo/LayersDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/LayersDemo/LayersDemo/AppDelegate.h -------------------------------------------------------------------------------- /Examples/LayersDemo/LayersDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/LayersDemo/LayersDemo/AppDelegate.m -------------------------------------------------------------------------------- /Examples/LayersDemo/LayersDemo/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/LayersDemo/LayersDemo/Default-568h@2x.png -------------------------------------------------------------------------------- /Examples/LayersDemo/LayersDemo/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/LayersDemo/LayersDemo/Default.png -------------------------------------------------------------------------------- /Examples/LayersDemo/LayersDemo/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/LayersDemo/LayersDemo/Default@2x.png -------------------------------------------------------------------------------- /Examples/LayersDemo/LayersDemo/LayersDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/LayersDemo/LayersDemo/LayersDemo-Info.plist -------------------------------------------------------------------------------- /Examples/LayersDemo/LayersDemo/LayersDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/LayersDemo/LayersDemo/LayersDemo-Prefix.pch -------------------------------------------------------------------------------- /Examples/LayersDemo/LayersDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/LayersDemo/LayersDemo/ViewController.h -------------------------------------------------------------------------------- /Examples/LayersDemo/LayersDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/LayersDemo/LayersDemo/ViewController.m -------------------------------------------------------------------------------- /Examples/LayersDemo/LayersDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Examples/LayersDemo/LayersDemo/en.lproj/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/LayersDemo/LayersDemo/en.lproj/ViewController.xib -------------------------------------------------------------------------------- /Examples/LayersDemo/LayersDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/LayersDemo/LayersDemo/main.m -------------------------------------------------------------------------------- /Examples/SpritesDemo/SpritesDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/SpritesDemo/SpritesDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/SpritesDemo/SpritesDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/SpritesDemo/SpritesDemo/AppDelegate.h -------------------------------------------------------------------------------- /Examples/SpritesDemo/SpritesDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/SpritesDemo/SpritesDemo/AppDelegate.m -------------------------------------------------------------------------------- /Examples/SpritesDemo/SpritesDemo/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/SpritesDemo/SpritesDemo/Default-568h@2x.png -------------------------------------------------------------------------------- /Examples/SpritesDemo/SpritesDemo/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/SpritesDemo/SpritesDemo/Default.png -------------------------------------------------------------------------------- /Examples/SpritesDemo/SpritesDemo/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/SpritesDemo/SpritesDemo/Default@2x.png -------------------------------------------------------------------------------- /Examples/SpritesDemo/SpritesDemo/SpriteCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/SpritesDemo/SpritesDemo/SpriteCell.xib -------------------------------------------------------------------------------- /Examples/SpritesDemo/SpritesDemo/SpritesDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/SpritesDemo/SpritesDemo/SpritesDemo-Info.plist -------------------------------------------------------------------------------- /Examples/SpritesDemo/SpritesDemo/SpritesDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/SpritesDemo/SpritesDemo/SpritesDemo-Prefix.pch -------------------------------------------------------------------------------- /Examples/SpritesDemo/SpritesDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/SpritesDemo/SpritesDemo/ViewController.h -------------------------------------------------------------------------------- /Examples/SpritesDemo/SpritesDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/SpritesDemo/SpritesDemo/ViewController.m -------------------------------------------------------------------------------- /Examples/SpritesDemo/SpritesDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Examples/SpritesDemo/SpritesDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/SpritesDemo/SpritesDemo/main.m -------------------------------------------------------------------------------- /Examples/TextureAtlasDemo/AtlasDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/TextureAtlasDemo/AtlasDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/TextureAtlasDemo/AtlasDemo.xcodeproj/xcshareddata/xcschemes/LayersDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/TextureAtlasDemo/AtlasDemo.xcodeproj/xcshareddata/xcschemes/LayersDemo.xcscheme -------------------------------------------------------------------------------- /Examples/TextureAtlasDemo/AtlasDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/TextureAtlasDemo/AtlasDemo/AppDelegate.h -------------------------------------------------------------------------------- /Examples/TextureAtlasDemo/AtlasDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/TextureAtlasDemo/AtlasDemo/AppDelegate.m -------------------------------------------------------------------------------- /Examples/TextureAtlasDemo/AtlasDemo/AtlasDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/TextureAtlasDemo/AtlasDemo/AtlasDemo-Info.plist -------------------------------------------------------------------------------- /Examples/TextureAtlasDemo/AtlasDemo/AtlasDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/TextureAtlasDemo/AtlasDemo/AtlasDemo-Prefix.pch -------------------------------------------------------------------------------- /Examples/TextureAtlasDemo/AtlasDemo/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/TextureAtlasDemo/AtlasDemo/Default-568h@2x.png -------------------------------------------------------------------------------- /Examples/TextureAtlasDemo/AtlasDemo/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/TextureAtlasDemo/AtlasDemo/Default.png -------------------------------------------------------------------------------- /Examples/TextureAtlasDemo/AtlasDemo/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/TextureAtlasDemo/AtlasDemo/Default@2x.png -------------------------------------------------------------------------------- /Examples/TextureAtlasDemo/AtlasDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/TextureAtlasDemo/AtlasDemo/ViewController.h -------------------------------------------------------------------------------- /Examples/TextureAtlasDemo/AtlasDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/TextureAtlasDemo/AtlasDemo/ViewController.m -------------------------------------------------------------------------------- /Examples/TextureAtlasDemo/AtlasDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Examples/TextureAtlasDemo/AtlasDemo/en.lproj/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/TextureAtlasDemo/AtlasDemo/en.lproj/ViewController.xib -------------------------------------------------------------------------------- /Examples/TextureAtlasDemo/AtlasDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/TextureAtlasDemo/AtlasDemo/main.m -------------------------------------------------------------------------------- /Examples/ViewsDemo/ViewsDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ViewsDemo/ViewsDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/ViewsDemo/ViewsDemo.xcodeproj/xcshareddata/xcschemes/ViewsDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ViewsDemo/ViewsDemo.xcodeproj/xcshareddata/xcschemes/ViewsDemo.xcscheme -------------------------------------------------------------------------------- /Examples/ViewsDemo/ViewsDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ViewsDemo/ViewsDemo/AppDelegate.h -------------------------------------------------------------------------------- /Examples/ViewsDemo/ViewsDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ViewsDemo/ViewsDemo/AppDelegate.m -------------------------------------------------------------------------------- /Examples/ViewsDemo/ViewsDemo/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ViewsDemo/ViewsDemo/Default-568h@2x.png -------------------------------------------------------------------------------- /Examples/ViewsDemo/ViewsDemo/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ViewsDemo/ViewsDemo/Default.png -------------------------------------------------------------------------------- /Examples/ViewsDemo/ViewsDemo/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ViewsDemo/ViewsDemo/Default@2x.png -------------------------------------------------------------------------------- /Examples/ViewsDemo/ViewsDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ViewsDemo/ViewsDemo/ViewController.h -------------------------------------------------------------------------------- /Examples/ViewsDemo/ViewsDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ViewsDemo/ViewsDemo/ViewController.m -------------------------------------------------------------------------------- /Examples/ViewsDemo/ViewsDemo/ViewsDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ViewsDemo/ViewsDemo/ViewsDemo-Info.plist -------------------------------------------------------------------------------- /Examples/ViewsDemo/ViewsDemo/ViewsDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ViewsDemo/ViewsDemo/ViewsDemo-Prefix.pch -------------------------------------------------------------------------------- /Examples/ViewsDemo/ViewsDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Examples/ViewsDemo/ViewsDemo/en.lproj/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ViewsDemo/ViewsDemo/en.lproj/ViewController.xib -------------------------------------------------------------------------------- /Examples/ViewsDemo/ViewsDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/Examples/ViewsDemo/ViewsDemo/main.m -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/LICENCE.md -------------------------------------------------------------------------------- /LayerSprites.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/LayerSprites.podspec -------------------------------------------------------------------------------- /LayerSprites/LSImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/LayerSprites/LSImage.h -------------------------------------------------------------------------------- /LayerSprites/LSImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/LayerSprites/LSImage.m -------------------------------------------------------------------------------- /LayerSprites/LSImageMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/LayerSprites/LSImageMap.h -------------------------------------------------------------------------------- /LayerSprites/LSImageMap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/LayerSprites/LSImageMap.m -------------------------------------------------------------------------------- /LayerSprites/LSImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/LayerSprites/LSImageView.h -------------------------------------------------------------------------------- /LayerSprites/LSImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/LayerSprites/LSImageView.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/LayerSprites/HEAD/RELEASE NOTES.md --------------------------------------------------------------------------------