diff --git a/Killian.js b/Killian.js index d718875..148138e 100644 --- a/Killian.js +++ b/Killian.js @@ -1,98 +1,150 @@ -// -// Killian -// - -Killian = function( game, x, y ){ - Phaser.Sprite.call(this, game, x, y, 'killian'); - - // - // Animations - // - - this.animations.add('walking', [1,2,3,4,5,6,7,8,9,10,11,12], 30, true); - this.animations.add('walking_to_sitting', [13,14,15,16,17,18,19], 40, false); - - this.animations.add('sitting', [21,22,23,24,25,26], 35, true); - this.animations.add('sitting_to_walking', [19,18,17,16,15,14,13], 40, false); - this.animations.add('sitting_to_laying', [88,89,90,91,92,93,94,95,97,97,97,97], 40, false); - - this.animations.add('laying', [97,98,99,98], 10, true); - this.animations.add('laying_to_sitting', [95,94,93,92,91,90,89,88,87,87,87,87,87,87,87], 40, false); - this.animations.add('laying_to_sleeping', [102,103,104,105,106,107,108,109,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110], 40, false); - - this.animations.add('sleeping', [113,114,115,116,117,118,119,120,121,121,121,121,121,121,121,121,121,121,121,120,119,118,117,116,115,114,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113], 10, true ); - this.animations.add('sleeping_to_laying', [113,110,109,108,107,106,105,104,103,102,100,99,98,97,97,97,97,97,97,97], 40, false); - - // - // State Machine - // - - this.sm = new StateMachine( this, { debug: false } ); - var self = this; - - this.sm.state('sitting', { - enter: function(){ }, - update: function(){ }, - exit: function(){ } - }); - - this.sm.state('walking', { - enter: function(){ }, - update: function(){ }, - exit: function(){ } - }); - - this.sm.state('laying', { - enter: function(){ }, - update: function(){ }, - exit: function(){ } - }); - - this.sm.state('sleeping', { - enter: function(){ }, - update: function(){ }, - exit: function(){ } - }); - - // - // state machine transitions - // - - // walking - this.sm.transition('walking_to_sitting', 'walking', 'sitting', function(){ - return ( !game.input.keyboard.isDown(Phaser.Keyboard.RIGHT) ); - }); - - this.sm.transition('sitting_to_walking', 'sitting', 'walking', function(){ - return ( game.input.keyboard.isDown(Phaser.Keyboard.RIGHT) ); - }); - - // sitting - this.sm.transition('sitting_to_laying', 'sitting', 'laying', function(){ - return ( new Date() - self.sm.timer > 1000 ); - }); - - // laying - this.sm.transition('laying_to_sitting', 'laying', 'sitting', function(){ - return ( game.input.keyboard.isDown(Phaser.Keyboard.RIGHT) ); - }); - - this.sm.transition('laying_to_sleeping', 'laying', 'sleeping', function(){ - return ( new Date() - self.sm.timer > 1000 ); - }); - - // sleeping - this.sm.transition('sleeping_to_laying', 'sleeping', 'laying', function(){ - return ( game.input.keyboard.isDown(Phaser.Keyboard.RIGHT) ); - }); - - this.animations.play( this.sm.initialState ); - - game.add.existing(this); -} +class Killian extends Phaser.GameObjects.Sprite { + constructor(scene, x, y) { + super(scene, x, y, 'killian'); + + // + // Animations + // + + this.anims.create({ + key: 'walking', + frames: this.anims.generateFrameNumbers('killian', { start: 1, end: 12 }), + frameRate: 30, + repeat: -1 + }); + + this.anims.create({ + key: 'walking_to_sitting', + frames: this.anims.generateFrameNumbers('killian', { start: 13, end: 19 }), + frameRate: 40, + repeat: 0 + }); + + this.anims.create({ + key: 'sitting', + frames: this.anims.generateFrameNumbers('killian', { start: 21, end: 26 }), + frameRate: 35, + repeat: -1 + }); + + this.anims.create({ + key: 'sitting_to_walking', + frames: this.anims.generateFrameNumbers('killian', { start: 19, end: 13 }), + frameRate: 40, + repeat: 0 + }); + + this.anims.create({ + key: 'sitting_to_laying', + frames: this.anims.generateFrameNumbers('killian', { start: 88, end: 97 }), + frameRate: 40, + repeat: 0 + }); + + this.anims.create({ + key: 'laying', + frames: this.anims.generateFrameNumbers('killian', { start: 97, end: 98 }), + frameRate: 10, + repeat: -1 + }); + + this.anims.create({ + key: 'laying_to_sitting', + frames: this.anims.generateFrameNumbers('killian', { start: 95, end: 87 }), + frameRate: 40, + repeat: 0 + }); + + this.anims.create({ + key: 'laying_to_sleeping', + frames: this.anims.generateFrameNumbers('killian', { start: 102, end: 110 }), + frameRate: 40, + repeat: 0 + }); + + this.anims.create({ + key: 'sleeping', + frames: this.anims.generateFrameNumbers('killian', { start: 113, end: 121 }), + frameRate: 10, + repeat: -1 + }); + + this.anims.create({ + key: 'sleeping_to_laying', + frames: this.anims.generateFrameNumbers('killian', { start: 113, end: 97 }), + frameRate: 40, + repeat: 0 + }); + + // + // State Machine + // + + this.sm = new StateMachine(this, { debug: false }); + var self = this; -Killian.prototype = Object.create(Phaser.Sprite.prototype); -Killian.prototype.constructor = Killian; -Killian.prototype.update = function(){ - this.sm.update(); -} \ No newline at end of file + this.sm.state('sitting', { + enter: function () { }, + update: function () { }, + exit: function () { } + }); + + this.sm.state('walking', { + enter: function () { }, + update: function () { }, + exit: function () { } + }); + + this.sm.state('laying', { + enter: function () { }, + update: function () { }, + exit: function () { } + }); + + this.sm.state('sleeping', { + enter: function () { }, + update: function () { }, + exit: function () { } + }); + + // + // state machine transitions + // + + // walking + this.sm.transition('walking_to_sitting', 'walking', 'sitting', function () { + return (!self.scene.input.keyboard.isDown(Phaser.Input.Keyboard.KeyCodes.RIGHT)); + }); + + this.sm.transition('sitting_to_walking', 'sitting', 'walking', function () { + return (self.scene.input.keyboard.isDown(Phaser.Input.Keyboard.KeyCodes.RIGHT)); + }); + + // sitting + this.sm.transition('sitting_to_laying', 'sitting', 'laying', function () { + return (new Date() - self.sm.timer > 1000); + }); + + // laying + this.sm.transition('laying_to_sitting', 'laying', 'sitting', function () { + return (self.scene.input.keyboard.isDown(Phaser.Input.Keyboard.KeyCodes.RIGHT)); + }); + + this.sm.transition('laying_to_sleeping', 'laying', 'sleeping', function () { + return (new Date() - self.sm.timer > 1000); + }); + + // sleeping + this.sm.transition('sleeping_to_laying', 'sleeping', 'laying', function () { + return (self.scene.input.keyboard.isDown(Phaser.Input.Keyboard.KeyCodes.RIGHT)); + }); + + this.anims.play(this.sm.initialState); + + this.scene.add.existing(this); + } + + update() { + this.sm.update(); + } +} diff --git a/assets/sprites/killian.json b/assets/sprites/killian.json index 5f3c178..bdf8827 100644 --- a/assets/sprites/killian.json +++ b/assets/sprites/killian.json @@ -1,1916 +1,74 @@ -{"frames": [ - { - "filename": "output0001.png", - "frame": {"x":966,"y":623,"w":238,"h":145}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":82,"y":172,"w":238,"h":145}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0002.png", - "frame": {"x":726,"y":619,"w":238,"h":145}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":82,"y":172,"w":238,"h":145}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0003.png", - "frame": {"x":486,"y":617,"w":238,"h":145}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":82,"y":172,"w":238,"h":145}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0004.png", - "frame": {"x":242,"y":613,"w":242,"h":145}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":78,"y":172,"w":242,"h":145}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0005.png", - "frame": {"x":1054,"y":480,"w":244,"h":141}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":76,"y":171,"w":244,"h":141}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0006.png", - "frame": {"x":2,"y":611,"w":238,"h":145}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":81,"y":170,"w":238,"h":145}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0007.png", - "frame": {"x":2,"y":760,"w":240,"h":147}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":79,"y":171,"w":240,"h":147}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0008.png", - "frame": {"x":2850,"y":639,"w":240,"h":147}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":79,"y":170,"w":240,"h":147}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0009.png", - "frame": {"x":244,"y":760,"w":240,"h":149}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":79,"y":171,"w":240,"h":149}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0010.png", - "frame": {"x":2608,"y":639,"w":240,"h":147}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":79,"y":170,"w":240,"h":147}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0011.png", - "frame": {"x":2858,"y":492,"w":238,"h":145}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":82,"y":172,"w":238,"h":145}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0012.png", - "frame": {"x":1300,"y":484,"w":238,"h":143}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":82,"y":172,"w":238,"h":143}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0013.png", - "frame": {"x":2618,"y":492,"w":238,"h":145}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":82,"y":172,"w":238,"h":145}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0014.png", - "frame": {"x":1072,"y":776,"w":218,"h":153}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":97,"y":168,"w":218,"h":153}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0015.png", - "frame": {"x":2334,"y":784,"w":204,"h":165}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":108,"y":161,"w":204,"h":165}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0016.png", - "frame": {"x":2742,"y":788,"w":200,"h":167}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":107,"y":156,"w":200,"h":167}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0017.png", - "frame": {"x":830,"y":923,"w":198,"h":177}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":102,"y":149,"w":198,"h":177}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0018.png", - "frame": {"x":1802,"y":941,"w":186,"h":179}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":108,"y":143,"w":186,"h":179}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0019.png", - "frame": {"x":2382,"y":955,"w":162,"h":181}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":131,"y":143,"w":162,"h":181}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0020.png", - "frame": {"x":1632,"y":1120,"w":158,"h":193}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":121,"y":133,"w":158,"h":193}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0021.png", - "frame": {"x":1482,"y":1120,"w":148,"h":191}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":131,"y":135,"w":148,"h":191}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0022.png", - "frame": {"x":3132,"y":788,"w":148,"h":191}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":131,"y":135,"w":148,"h":191}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0023.png", - "frame": {"x":3264,"y":993,"w":144,"h":191}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":135,"y":135,"w":144,"h":191}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0024.png", - "frame": {"x":1020,"y":1110,"w":142,"h":191}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":137,"y":135,"w":142,"h":191}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0025.png", - "frame": {"x":2,"y":1078,"w":142,"h":191}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":137,"y":135,"w":142,"h":191}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0026.png", - "frame": {"x":3484,"y":574,"w":142,"h":191}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":137,"y":135,"w":142,"h":191}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0027.png", - "frame": {"x":1164,"y":1116,"w":150,"h":191}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":129,"y":135,"w":150,"h":191}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0028.png", - "frame": {"x":1316,"y":1120,"w":164,"h":191}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":115,"y":135,"w":164,"h":191}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0029.png", - "frame": {"x":3460,"y":960,"w":160,"h":181}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":130,"y":143,"w":160,"h":181}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0030.png", - "frame": {"x":1030,"y":931,"w":172,"h":177}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":123,"y":145,"w":172,"h":177}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0031.png", - "frame": {"x":2944,"y":788,"w":186,"h":167}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":115,"y":159,"w":186,"h":167}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0032.png", - "frame": {"x":1938,"y":778,"w":206,"h":161}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":102,"y":163,"w":206,"h":161}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0033.png", - "frame": {"x":2182,"y":486,"w":214,"h":143}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":97,"y":180,"w":214,"h":143}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0034.png", - "frame": {"x":230,"y":2,"w":210,"h":113}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":107,"y":208,"w":210,"h":113}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0035.png", - "frame": {"x":1148,"y":2,"w":232,"h":113}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":85,"y":208,"w":232,"h":113}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0036.png", - "frame": {"x":912,"y":2,"w":234,"h":113}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":83,"y":208,"w":234,"h":113}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0037.png", - "frame": {"x":450,"y":117,"w":232,"h":115}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":85,"y":206,"w":232,"h":115}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0038.png", - "frame": {"x":2994,"y":2,"w":228,"h":115}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":88,"y":206,"w":228,"h":115}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0039.png", - "frame": {"x":216,"y":117,"w":232,"h":115}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":84,"y":206,"w":232,"h":115}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0040.png", - "frame": {"x":3224,"y":2,"w":232,"h":115}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":84,"y":206,"w":232,"h":115}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0041.png", - "frame": {"x":2760,"y":2,"w":232,"h":115}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":84,"y":206,"w":232,"h":115}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0042.png", - "frame": {"x":922,"y":117,"w":236,"h":115}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":80,"y":206,"w":236,"h":115}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0043.png", - "frame": {"x":684,"y":117,"w":236,"h":115}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":80,"y":206,"w":236,"h":115}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0044.png", - "frame": {"x":676,"y":2,"w":234,"h":113}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":83,"y":208,"w":234,"h":113}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0045.png", - "frame": {"x":526,"y":234,"w":238,"h":117}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":79,"y":206,"w":238,"h":117}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0046.png", - "frame": {"x":1000,"y":234,"w":232,"h":117}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":85,"y":206,"w":232,"h":117}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0047.png", - "frame": {"x":442,"y":2,"w":232,"h":113}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":85,"y":206,"w":232,"h":113}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0048.png", - "frame": {"x":766,"y":234,"w":232,"h":117}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":85,"y":204,"w":232,"h":117}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0049.png", - "frame": {"x":3212,"y":236,"w":228,"h":119}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":88,"y":204,"w":228,"h":119}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0050.png", - "frame": {"x":1234,"y":234,"w":226,"h":117}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":90,"y":205,"w":226,"h":117}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0051.png", - "frame": {"x":1462,"y":234,"w":230,"h":117}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":86,"y":205,"w":230,"h":117}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0052.png", - "frame": {"x":1694,"y":234,"w":234,"h":117}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":83,"y":206,"w":234,"h":117}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0053.png", - "frame": {"x":2734,"y":236,"w":238,"h":119}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":79,"y":205,"w":238,"h":119}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0054.png", - "frame": {"x":2974,"y":236,"w":236,"h":119}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":81,"y":206,"w":236,"h":119}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0055.png", - "frame": {"x":3300,"y":381,"w":192,"h":135}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":127,"y":189,"w":192,"h":135}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0056.png", - "frame": {"x":2674,"y":357,"w":190,"h":133}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":129,"y":191,"w":190,"h":133}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0057.png", - "frame": {"x":1864,"y":353,"w":188,"h":131}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":131,"y":192,"w":188,"h":131}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0058.png", - "frame": {"x":1676,"y":353,"w":186,"h":129}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":133,"y":193,"w":186,"h":129}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0059.png", - "frame": {"x":1300,"y":353,"w":186,"h":127}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":133,"y":194,"w":186,"h":127}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0060.png", - "frame": {"x":2242,"y":353,"w":186,"h":131}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":133,"y":191,"w":186,"h":131}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0061.png", - "frame": {"x":1488,"y":353,"w":186,"h":129}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":133,"y":192,"w":186,"h":129}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0062.png", - "frame": {"x":2054,"y":353,"w":186,"h":131}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":133,"y":190,"w":186,"h":131}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0063.png", - "frame": {"x":2504,"y":236,"w":228,"h":119}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":88,"y":206,"w":228,"h":119}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0064.png", - "frame": {"x":1756,"y":486,"w":212,"h":143}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":96,"y":180,"w":212,"h":143}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0065.png", - "frame": {"x":3282,"y":816,"w":176,"h":175}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":102,"y":149,"w":176,"h":175}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0066.png", - "frame": {"x":3410,"y":1143,"w":182,"h":195}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":96,"y":129,"w":182,"h":195}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0067.png", - "frame": {"x":3032,"y":1367,"w":184,"h":211}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":100,"y":113,"w":184,"h":211}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0068.png", - "frame": {"x":1520,"y":1520,"w":190,"h":215}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":95,"y":109,"w":190,"h":215}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0069.png", - "frame": {"x":2036,"y":1536,"w":186,"h":221}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":99,"y":105,"w":186,"h":221}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0070.png", - "frame": {"x":928,"y":1510,"w":192,"h":213}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":93,"y":110,"w":192,"h":213}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0071.png", - "frame": {"x":2454,"y":1333,"w":194,"h":209}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":91,"y":113,"w":194,"h":209}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0072.png", - "frame": {"x":2070,"y":1327,"w":196,"h":207}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":89,"y":114,"w":196,"h":207}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0073.png", - "frame": {"x":3054,"y":981,"w":208,"h":189}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":91,"y":133,"w":208,"h":189}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0074.png", - "frame": {"x":1204,"y":937,"w":216,"h":177}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":90,"y":144,"w":216,"h":177}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0075.png", - "frame": {"x":486,"y":764,"w":218,"h":149}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":97,"y":167,"w":218,"h":149}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0076.png", - "frame": {"x":3098,"y":492,"w":192,"h":145}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":126,"y":169,"w":192,"h":145}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0077.png", - "frame": {"x":2206,"y":631,"w":188,"h":149}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":132,"y":162,"w":188,"h":149}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0078.png", - "frame": {"x":2186,"y":951,"w":194,"h":179}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":118,"y":144,"w":194,"h":179}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0079.png", - "frame": {"x":1990,"y":947,"w":194,"h":179}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":118,"y":144,"w":194,"h":179}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0080.png", - "frame": {"x":2396,"y":635,"w":210,"h":147}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":102,"y":171,"w":210,"h":147}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0081.png", - "frame": {"x":388,"y":915,"w":208,"h":169}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":104,"y":143,"w":208,"h":169}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0082.png", - "frame": {"x":2708,"y":957,"w":182,"h":181}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":130,"y":138,"w":182,"h":181}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0083.png", - "frame": {"x":706,"y":766,"w":192,"h":151}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":133,"y":167,"w":192,"h":151}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0084.png", - "frame": {"x":1970,"y":486,"w":210,"h":143}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":122,"y":178,"w":210,"h":143}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0085.png", - "frame": {"x":3292,"y":665,"w":178,"h":149}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":141,"y":173,"w":178,"h":149}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0086.png", - "frame": {"x":1930,"y":234,"w":192,"h":117}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":125,"y":206,"w":192,"h":117}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0087.png", - "frame": {"x":2,"y":115,"w":212,"h":115}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":103,"y":207,"w":212,"h":115}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0088.png", - "frame": {"x":3472,"y":767,"w":148,"h":191}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":131,"y":135,"w":148,"h":191}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0089.png", - "frame": {"x":2892,"y":957,"w":160,"h":181}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":130,"y":143,"w":160,"h":181}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0090.png", - "frame": {"x":1422,"y":941,"w":176,"h":177}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":119,"y":145,"w":176,"h":177}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0091.png", - "frame": {"x":2,"y":909,"w":190,"h":167}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":111,"y":159,"w":190,"h":167}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0092.png", - "frame": {"x":1730,"y":778,"w":206,"h":161}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":102,"y":163,"w":206,"h":161}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0093.png", - "frame": {"x":1540,"y":484,"w":214,"h":143}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":97,"y":180,"w":214,"h":143}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0094.png", - "frame": {"x":1160,"y":117,"w":216,"h":115}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":101,"y":207,"w":216,"h":115}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0095.png", - "frame": {"x":1378,"y":117,"w":226,"h":115}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":91,"y":207,"w":226,"h":115}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0096.png", - "frame": {"x":2,"y":2,"w":226,"h":111}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":88,"y":211,"w":226,"h":111}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0097.png", - "frame": {"x":314,"y":234,"w":210,"h":115}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":97,"y":208,"w":210,"h":115}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0098.png", - "frame": {"x":2028,"y":117,"w":208,"h":115}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":99,"y":208,"w":208,"h":115}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0099.png", - "frame": {"x":1818,"y":117,"w":208,"h":115}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":99,"y":208,"w":208,"h":115}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0100.png", - "frame": {"x":2450,"y":117,"w":210,"h":115}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":97,"y":208,"w":210,"h":115}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0101.png", - "frame": {"x":2450,"y":117,"w":210,"h":115}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":97,"y":208,"w":210,"h":115}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0102.png", - "frame": {"x":2238,"y":117,"w":210,"h":115}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":97,"y":208,"w":210,"h":115}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0103.png", - "frame": {"x":2870,"y":119,"w":206,"h":115}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":101,"y":208,"w":206,"h":115}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0104.png", - "frame": {"x":2662,"y":119,"w":206,"h":115}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":101,"y":208,"w":206,"h":115}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0105.png", - "frame": {"x":3078,"y":119,"w":196,"h":115}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":111,"y":208,"w":196,"h":115}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0106.png", - "frame": {"x":3276,"y":119,"w":184,"h":115}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":123,"y":208,"w":184,"h":115}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0107.png", - "frame": {"x":3458,"y":2,"w":168,"h":115}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":139,"y":208,"w":168,"h":115}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0108.png", - "frame": {"x":3462,"y":119,"w":164,"h":115}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":143,"y":208,"w":164,"h":115}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0109.png", - "frame": {"x":1382,"y":2,"w":156,"h":113}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":151,"y":210,"w":156,"h":113}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0110.png", - "frame": {"x":2,"y":232,"w":156,"h":115}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":152,"y":210,"w":156,"h":115}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0111.png", - "frame": {"x":2124,"y":234,"w":152,"h":117}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":156,"y":209,"w":152,"h":117}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0112.png", - "frame": {"x":160,"y":234,"w":152,"h":115}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":155,"y":211,"w":152,"h":115}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0113.png", - "frame": {"x":2300,"y":2,"w":150,"h":113}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":156,"y":213,"w":150,"h":113}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0114.png", - "frame": {"x":2148,"y":2,"w":150,"h":113}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":156,"y":213,"w":150,"h":113}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0115.png", - "frame": {"x":1996,"y":2,"w":150,"h":113}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":156,"y":213,"w":150,"h":113}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0116.png", - "frame": {"x":1844,"y":2,"w":150,"h":113}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":156,"y":213,"w":150,"h":113}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0117.png", - "frame": {"x":1692,"y":2,"w":150,"h":113}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":156,"y":213,"w":150,"h":113}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0118.png", - "frame": {"x":1540,"y":2,"w":150,"h":113}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":156,"y":213,"w":150,"h":113}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0119.png", - "frame": {"x":2606,"y":2,"w":152,"h":113}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":155,"y":213,"w":152,"h":113}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0120.png", - "frame": {"x":2452,"y":2,"w":152,"h":113}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":155,"y":213,"w":152,"h":113}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0121.png", - "frame": {"x":2452,"y":2,"w":152,"h":113}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":155,"y":213,"w":152,"h":113}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0122.png", - "frame": {"x":2452,"y":2,"w":152,"h":113}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":155,"y":213,"w":152,"h":113}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0123.png", - "frame": {"x":2,"y":1468,"w":202,"h":211}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":86,"y":111,"w":202,"h":211}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0124.png", - "frame": {"x":2650,"y":1335,"w":210,"h":209}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":84,"y":110,"w":210,"h":209}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0125.png", - "frame": {"x":206,"y":1474,"w":214,"h":211}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":88,"y":108,"w":214,"h":211}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0126.png", - "frame": {"x":3398,"y":1340,"w":214,"h":209}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":92,"y":107,"w":214,"h":209}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0127.png", - "frame": {"x":1850,"y":1323,"w":218,"h":205}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":92,"y":108,"w":218,"h":205}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0128.png", - "frame": {"x":980,"y":1309,"w":222,"h":199}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":89,"y":108,"w":222,"h":199}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0129.png", - "frame": {"x":1204,"y":1313,"w":220,"h":199}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":89,"y":108,"w":220,"h":199}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0130.png", - "frame": {"x":1938,"y":1128,"w":218,"h":193}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":91,"y":108,"w":218,"h":193}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0131.png", - "frame": {"x":146,"y":1080,"w":226,"h":189}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":84,"y":108,"w":226,"h":189}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0132.png", - "frame": {"x":798,"y":1102,"w":220,"h":189}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":90,"y":107,"w":220,"h":189}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0133.png", - "frame": {"x":2,"y":1271,"w":200,"h":195}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":110,"y":107,"w":200,"h":195}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0134.png", - "frame": {"x":548,"y":1285,"w":174,"h":197}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":135,"y":106,"w":174,"h":197}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0135.png", - "frame": {"x":3218,"y":1383,"w":164,"h":215}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":145,"y":101,"w":164,"h":215}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0136.png", - "frame": {"x":390,"y":1693,"w":148,"h":227}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":160,"y":102,"w":148,"h":227}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0137.png", - "frame": {"x":1712,"y":1520,"w":136,"h":221}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":171,"y":100,"w":136,"h":221}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0138.png", - "frame": {"x":1416,"y":1737,"w":116,"h":231}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":191,"y":98,"w":116,"h":231}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0139.png", - "frame": {"x":2856,"y":1552,"w":114,"h":225}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":193,"y":101,"w":114,"h":225}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0140.png", - "frame": {"x":2,"y":1681,"w":110,"h":225}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":195,"y":101,"w":110,"h":225}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0141.png", - "frame": {"x":276,"y":1687,"w":112,"h":227}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":193,"y":101,"w":112,"h":227}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0142.png", - "frame": {"x":3326,"y":1776,"w":112,"h":235}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":198,"y":101,"w":112,"h":235}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0143.png", - "frame": {"x":3384,"y":1551,"w":114,"h":223}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":190,"y":107,"w":114,"h":223}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0144.png", - "frame": {"x":2740,"y":1546,"w":114,"h":223}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":190,"y":107,"w":114,"h":223}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0145.png", - "frame": {"x":2624,"y":1546,"w":114,"h":223}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":193,"y":108,"w":114,"h":223}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0146.png", - "frame": {"x":714,"y":1705,"w":116,"h":227}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":194,"y":105,"w":116,"h":227}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0147.png", - "frame": {"x":3084,"y":1580,"w":118,"h":225}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":191,"y":106,"w":118,"h":225}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0148.png", - "frame": {"x":3204,"y":1600,"w":120,"h":225}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":188,"y":105,"w":120,"h":225}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0149.png", - "frame": {"x":3500,"y":1551,"w":118,"h":223}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":188,"y":106,"w":118,"h":223}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0150.png", - "frame": {"x":1158,"y":1729,"w":106,"h":229}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":200,"y":108,"w":106,"h":229}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0151.png", - "frame": {"x":1050,"y":1729,"w":106,"h":229}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":200,"y":108,"w":106,"h":229}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0152.png", - "frame": {"x":1534,"y":1737,"w":104,"h":231}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":199,"y":108,"w":104,"h":231}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0153.png", - "frame": {"x":2972,"y":1580,"w":110,"h":225}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":194,"y":110,"w":110,"h":225}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0154.png", - "frame": {"x":2224,"y":1542,"w":110,"h":221}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":193,"y":110,"w":110,"h":221}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0155.png", - "frame": {"x":422,"y":1474,"w":118,"h":217}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":192,"y":109,"w":118,"h":217}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0156.png", - "frame": {"x":832,"y":1725,"w":106,"h":227}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":200,"y":110,"w":106,"h":227}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0157.png", - "frame": {"x":940,"y":1725,"w":108,"h":227}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":198,"y":108,"w":108,"h":227}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0158.png", - "frame": {"x":2336,"y":1542,"w":116,"h":221}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":192,"y":108,"w":116,"h":221}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0159.png", - "frame": {"x":1792,"y":1122,"w":144,"h":193}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":135,"y":134,"w":144,"h":193}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0160.png", - "frame": {"x":2896,"y":1140,"w":136,"h":195}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":137,"y":132,"w":136,"h":195}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0161.png", - "frame": {"x":852,"y":1293,"w":126,"h":197}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":137,"y":130,"w":126,"h":197}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0162.png", - "frame": {"x":724,"y":1293,"w":126,"h":197}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":137,"y":130,"w":126,"h":197}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0163.png", - "frame": {"x":3262,"y":1186,"w":134,"h":195}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":130,"y":132,"w":134,"h":195}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0164.png", - "frame": {"x":204,"y":1271,"w":150,"h":195}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":114,"y":132,"w":150,"h":195}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0165.png", - "frame": {"x":2426,"y":1138,"w":134,"h":193}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":131,"y":134,"w":134,"h":193}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0166.png", - "frame": {"x":3494,"y":381,"w":130,"h":191}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":136,"y":136,"w":130,"h":191}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0167.png", - "frame": {"x":2294,"y":1138,"w":130,"h":193}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":138,"y":134,"w":130,"h":193}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0168.png", - "frame": {"x":2158,"y":1132,"w":134,"h":193}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":137,"y":134,"w":134,"h":193}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0169.png", - "frame": {"x":2562,"y":1138,"w":132,"h":193}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":137,"y":134,"w":132,"h":193}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0170.png", - "frame": {"x":1522,"y":778,"w":206,"h":161}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":102,"y":163,"w":206,"h":161}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0171.png", - "frame": {"x":2,"y":472,"w":216,"h":137}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":97,"y":188,"w":216,"h":137}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0172.png", - "frame": {"x":1606,"y":117,"w":210,"h":115}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":107,"y":207,"w":210,"h":115}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0173.png", - "frame": {"x":2,"y":351,"w":224,"h":119}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":93,"y":208,"w":224,"h":119}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0174.png", - "frame": {"x":640,"y":353,"w":206,"h":119}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":112,"y":208,"w":206,"h":119}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0175.png", - "frame": {"x":436,"y":353,"w":202,"h":119}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":115,"y":207,"w":202,"h":119}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0176.png", - "frame": {"x":228,"y":351,"w":206,"h":119}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":111,"y":206,"w":206,"h":119}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0177.png", - "frame": {"x":2278,"y":234,"w":224,"h":117}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":93,"y":207,"w":224,"h":117}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0178.png", - "frame": {"x":220,"y":472,"w":190,"h":137}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":118,"y":189,"w":190,"h":137}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0179.png", - "frame": {"x":1206,"y":629,"w":208,"h":145}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":100,"y":181,"w":208,"h":145}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0180.png", - "frame": {"x":1604,"y":631,"w":190,"h":145}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":118,"y":181,"w":190,"h":145}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0181.png", - "frame": {"x":1416,"y":629,"w":186,"h":145}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":122,"y":181,"w":186,"h":145}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0182.png", - "frame": {"x":3292,"y":518,"w":190,"h":145}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":118,"y":181,"w":190,"h":145}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0183.png", - "frame": {"x":1796,"y":631,"w":212,"h":145}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":96,"y":181,"w":212,"h":145}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0184.png", - "frame": {"x":2010,"y":631,"w":194,"h":145}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":114,"y":181,"w":194,"h":145}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0185.png", - "frame": {"x":3092,"y":639,"w":198,"h":147}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":25,"y":2,"w":198,"h":147}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0186.png", - "frame": {"x":194,"y":911,"w":192,"h":167}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":32,"y":16,"w":192,"h":167}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0187.png", - "frame": {"x":356,"y":1277,"w":190,"h":195}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":34,"y":28,"w":190,"h":195}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0188.png", - "frame": {"x":2268,"y":1333,"w":184,"h":207}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":41,"y":37,"w":184,"h":207}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0189.png", - "frame": {"x":542,"y":1484,"w":174,"h":219}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":50,"y":44,"w":174,"h":219}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0190.png", - "frame": {"x":114,"y":1687,"w":160,"h":225}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":65,"y":53,"w":160,"h":225}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0191.png", - "frame": {"x":1640,"y":1743,"w":168,"h":231}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":57,"y":61,"w":168,"h":231}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0192.png", - "frame": {"x":1810,"y":1751,"w":154,"h":233}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":77,"y":74,"w":154,"h":233}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0193.png", - "frame": {"x":3440,"y":1776,"w":144,"h":235}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":97,"y":74,"w":144,"h":235}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0194.png", - "frame": {"x":2112,"y":1765,"w":144,"h":233}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":121,"y":76,"w":144,"h":233}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0195.png", - "frame": {"x":1266,"y":1729,"w":148,"h":229}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":143,"y":75,"w":148,"h":229}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0196.png", - "frame": {"x":2454,"y":1544,"w":168,"h":221}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":157,"y":74,"w":168,"h":221}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0197.png", - "frame": {"x":1122,"y":1514,"w":198,"h":213}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":163,"y":75,"w":198,"h":213}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0198.png", - "frame": {"x":718,"y":1492,"w":208,"h":211}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":167,"y":74,"w":208,"h":211}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0199.png", - "frame": {"x":1632,"y":1317,"w":216,"h":201}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":174,"y":73,"w":216,"h":201}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0200.png", - "frame": {"x":596,"y":1094,"w":200,"h":189}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":178,"y":74,"w":200,"h":189}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0201.png", - "frame": {"x":2696,"y":1140,"w":198,"h":193}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":186,"y":74,"w":198,"h":193}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0202.png", - "frame": {"x":1600,"y":941,"w":200,"h":177}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":190,"y":73,"w":200,"h":177}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0203.png", - "frame": {"x":1086,"y":353,"w":212,"h":125}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":192,"y":76,"w":212,"h":125}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0204.png", - "frame": {"x":1966,"y":1759,"w":144,"h":233}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":121,"y":76,"w":144,"h":233}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0205.png", - "frame": {"x":2556,"y":1771,"w":146,"h":233}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":119,"y":76,"w":146,"h":233}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0206.png", - "frame": {"x":2846,"y":1807,"w":146,"h":235}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":120,"y":76,"w":146,"h":235}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0207.png", - "frame": {"x":2994,"y":1807,"w":150,"h":235}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":118,"y":75,"w":150,"h":235}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0208.png", - "frame": {"x":2406,"y":1767,"w":148,"h":233}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":119,"y":76,"w":148,"h":233}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0209.png", - "frame": {"x":2258,"y":1765,"w":146,"h":233}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":119,"y":76,"w":146,"h":233}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0210.png", - "frame": {"x":2862,"y":1337,"w":168,"h":213}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":136,"y":118,"w":168,"h":213}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0211.png", - "frame": {"x":540,"y":1705,"w":172,"h":225}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":137,"y":115,"w":172,"h":225}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0212.png", - "frame": {"x":1426,"y":1313,"w":204,"h":199}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":107,"y":120,"w":204,"h":199}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0213.png", - "frame": {"x":2540,"y":788,"w":200,"h":165}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":101,"y":143,"w":200,"h":165}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0214.png", - "frame": {"x":2866,"y":357,"w":192,"h":133}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":107,"y":151,"w":192,"h":133}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0215.png", - "frame": {"x":656,"y":474,"w":188,"h":141}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":120,"y":152,"w":188,"h":141}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0216.png", - "frame": {"x":1990,"y":947,"w":194,"h":179}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":118,"y":144,"w":194,"h":179}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0217.png", - "frame": {"x":846,"y":476,"w":206,"h":141}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":76,"y":87,"w":206,"h":141}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0218.png", - "frame": {"x":1292,"y":776,"w":228,"h":159}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":59,"y":103,"w":228,"h":159}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0219.png", - "frame": {"x":598,"y":919,"w":230,"h":173}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":69,"y":103,"w":230,"h":173}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0220.png", - "frame": {"x":3034,"y":1172,"w":226,"h":193}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":78,"y":104,"w":226,"h":193}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0221.png", - "frame": {"x":374,"y":1086,"w":220,"h":189}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":90,"y":107,"w":220,"h":189}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0222.png", - "frame": {"x":412,"y":474,"w":242,"h":137}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":81,"y":182,"w":242,"h":137}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0223.png", - "frame": {"x":2430,"y":357,"w":242,"h":131}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":80,"y":190,"w":242,"h":131}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0224.png", - "frame": {"x":848,"y":353,"w":236,"h":121}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":83,"y":200,"w":236,"h":121}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0225.png", - "frame": {"x":2546,"y":955,"w":160,"h":181}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":128,"y":143,"w":160,"h":181}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0226.png", - "frame": {"x":2146,"y":782,"w":186,"h":163}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":111,"y":155,"w":186,"h":163}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0227.png", - "frame": {"x":900,"y":770,"w":170,"h":151}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":135,"y":170,"w":170,"h":151}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0228.png", - "frame": {"x":3442,"y":236,"w":178,"h":143}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":132,"y":163,"w":178,"h":143}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0229.png", - "frame": {"x":2398,"y":490,"w":218,"h":143}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":100,"y":177,"w":218,"h":143}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0230.png", - "frame": {"x":3060,"y":357,"w":238,"h":133}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":83,"y":180,"w":238,"h":133}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0231.png", - "frame": {"x":1322,"y":1514,"w":196,"h":213}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":106,"y":100,"w":196,"h":213}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0232.png", - "frame": {"x":1850,"y":1530,"w":184,"h":219}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":102,"y":94,"w":184,"h":219}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0233.png", - "frame": {"x":2704,"y":1771,"w":140,"h":233}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":121,"y":80,"w":140,"h":233}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0234.png", - "frame": {"x":2186,"y":951,"w":194,"h":179}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":118,"y":144,"w":194,"h":179}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0235.png", - "frame": {"x":1990,"y":947,"w":194,"h":179}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":118,"y":144,"w":194,"h":179}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0236.png", - "frame": {"x":2396,"y":635,"w":210,"h":147}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":102,"y":171,"w":210,"h":147}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0237.png", - "frame": {"x":388,"y":915,"w":208,"h":169}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":104,"y":143,"w":208,"h":169}, - "sourceSize": {"w":424,"h":363} -}, -{ - "filename": "output0238.png", - "frame": {"x":2708,"y":957,"w":182,"h":181}, - "rotated": false, - "trimmed": true, - "spriteSourceSize": {"x":130,"y":138,"w":182,"h":181}, - "sourceSize": {"w":424,"h":363} -}], -"meta": { - "app": "http://www.codeandweb.com/texturepacker ", - "version": "1.0", - "image": "sheet-output.png", - "format": "RGBA8888", - "size": {"w":3628,"h":2044}, - "scale": "1", - "smartupdate": "$TexturePacker:SmartUpdate:5a861f083045f7e4f4ef38c2f3b45995:c36cd02e70b08b7b2c925ff090c5d2f7:9ecb2c0297a2f90a4a13ea8287b1f963$" -} + "anims": [ + { + "key": "walking", + "frames": { "start": 1, "end": 12 }, + "frameRate": 30, + "repeat": -1 + }, + { + "key": "walking_to_sitting", + "frames": { "start": 13, "end": 19 }, + "frameRate": 40, + "repeat": 0 + }, + { + "key": "sitting", + "frames": { "start": 21, "end": 26 }, + "frameRate": 35, + "repeat": -1 + }, + { + "key": "sitting_to_walking", + "frames": { "start": 19, "end": 13 }, + "frameRate": 40, + "repeat": 0 + }, + { + "key": "sitting_to_laying", + "frames": { "start": 88, "end": 97 }, + "frameRate": 40, + "repeat": 0 + }, + { + "key": "laying", + "frames": { "start": 97, "end": 98 }, + "frameRate": 10, + "repeat": -1 + }, + { + "key": "laying_to_sitting", + "frames": { "start": 95, "end": 87 }, + "frameRate": 40, + "repeat": 0 + }, + { + "key": "laying_to_sleeping", + "frames": { "start": 102, "end": 110 }, + "frameRate": 40, + "repeat": 0 + }, + { + "key": "sleeping", + "frames": { "start": 113, "end": 121 }, + "frameRate": 10, + "repeat": -1 + }, + { + "key": "sleeping_to_laying", + "frames": { "start": 113, "end": 97 }, + "frameRate": 40, + "repeat": 0 + } + ], + "meta": { + "app": "http://www.codeandweb.com/texturepacker", + "version": "1.0", + "image": "sheet-output.png", + "format": "RGBA8888", + "size": { "w": 3628, "h": 2044 }, + "scale": "1", + "smartupdate": + "$TexturePacker:SmartUpdate:5a861f083045f7e4f4ef38c2f3b45995:c36cd02e70b08b7b2c925ff090c5d2f7:9ecb2c0297a2f90a4a13ea8287b1f963$" + } } diff --git a/index.html b/index.html index ad88f35..c56dd4b 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ Killian - Phaser Demo - + @@ -16,16 +16,26 @@ window.onload = function() { - var game = new Phaser.Game(320, 240, Phaser.AUTO, '', { preload: preload, create: create, update: update }); + var config = { + type: Phaser.CANVAS, + width: 320, + height: 240, + scene: { + preload: preload, + create: create, + update: update + } + }; + + var game = new Phaser.Game(config); var killian; function preload () { - game.stage.backgroundColor = 0xFFFFFF; - game.load.atlas('killian', 'assets/sprites/killian.png', 'assets/sprites/killian.json',Phaser.Loader.TEXTURE_ATLAS_JSON_HASH); + this.load.atlas('killian', 'assets/sprites/killian.png', 'assets/sprites/killian.json'); } function create () { - killian = new Killian( game, -50, -100 ); + killian = new Killian(this, -50, -100); } function update(){ @@ -35,4 +45,4 @@ } - \ No newline at end of file +