diff --git a/cc_moba b/cc_moba deleted file mode 160000 index f24bee6..0000000 --- a/cc_moba +++ /dev/null @@ -1 +0,0 @@ -Subproject commit f24bee6f246c08e6fa999df635c19cd82392c347 diff --git a/cc_moba/.gitignore b/cc_moba/.gitignore new file mode 100644 index 0000000..769e64c --- /dev/null +++ b/cc_moba/.gitignore @@ -0,0 +1,61 @@ +#///////////////////////////////////////////////////////////////////////////// +# Fireball Projects +#///////////////////////////////////////////////////////////////////////////// + +library/ +temp/ +local/ +build/ + +#///////////////////////////////////////////////////////////////////////////// +# Logs and databases +#///////////////////////////////////////////////////////////////////////////// + +*.log +*.sql +*.sqlite + +#///////////////////////////////////////////////////////////////////////////// +# files for debugger +#///////////////////////////////////////////////////////////////////////////// + +*.sln +*.csproj +*.pidb +*.unityproj +*.suo + +#///////////////////////////////////////////////////////////////////////////// +# OS generated files +#///////////////////////////////////////////////////////////////////////////// + +.DS_Store +ehthumbs.db +Thumbs.db + +#///////////////////////////////////////////////////////////////////////////// +# exvim files +#///////////////////////////////////////////////////////////////////////////// + +*UnityVS.meta +*.err +*.err.meta +*.exvim +*.exvim.meta +*.vimentry +*.vimentry.meta +*.vimproject +*.vimproject.meta +.vimfiles.*/ +.exvim.*/ +quick_gen_project_*_autogen.bat +quick_gen_project_*_autogen.bat.meta +quick_gen_project_*_autogen.sh +quick_gen_project_*_autogen.sh.meta +.exvim.app + +#///////////////////////////////////////////////////////////////////////////// +# webstorm files +#///////////////////////////////////////////////////////////////////////////// + +.idea/ diff --git a/cc_moba/README.md b/cc_moba/README.md new file mode 100644 index 0000000..f65a407 --- /dev/null +++ b/cc_moba/README.md @@ -0,0 +1,3 @@ +cocoscreator 写moba demo +多人pvp +"# xiaoxiao" diff --git a/cc_moba/assets/CODE.meta b/cc_moba/assets/CODE.meta new file mode 100644 index 0000000..db66b01 --- /dev/null +++ b/cc_moba/assets/CODE.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "bbe590db-85e2-42dd-be90-d123209ed8e3", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/CODE/.vscode/launch.json b/cc_moba/assets/CODE/.vscode/launch.json new file mode 100644 index 0000000..38ab772 --- /dev/null +++ b/cc_moba/assets/CODE/.vscode/launch.json @@ -0,0 +1,18 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "启动扩展", + "type": "extensionHost", + "request": "launch", + "runtimeExecutable": "${execPath}", + "args": [ + "--extensionDevelopmentPath=${workspaceRoot}" + ], + "stopOnEntry": false, + "sourceMaps": true, + "outDir": "${workspaceRoot}/out", + "preLaunchTask": "npm" + } + ] +} \ No newline at end of file diff --git a/cc_moba/assets/CODE/.vscode/tasks.json b/cc_moba/assets/CODE/.vscode/tasks.json new file mode 100644 index 0000000..7bbf960 --- /dev/null +++ b/cc_moba/assets/CODE/.vscode/tasks.json @@ -0,0 +1,9 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "0.1.0", + "command": "echo", + "isShellCommand": true, + "args": ["Hello World"], + "showOutput": "always" +} \ No newline at end of file diff --git a/cc_moba/assets/CODE/actornode.coffee b/cc_moba/assets/CODE/actornode.coffee new file mode 100644 index 0000000..deb5636 --- /dev/null +++ b/cc_moba/assets/CODE/actornode.coffee @@ -0,0 +1,23 @@ +cc.Class { + extends: cc.Component + + properties: { + # foo: + # default: null + # type: cc + # serializable: true # [optional], default is true + # visible: true # [optional], default is true + # displayName: 'Foo' # [optional], default is property name + # readonly: false # [optional], default is false + heronode: + default:null + type:cc.Node + } + + idle:() -> + + #this.heronode.getComponent("global")?.idle() + + update: (dt) -> + # do your update here +} diff --git a/cc_moba/assets/CODE/actornode.coffee.meta b/cc_moba/assets/CODE/actornode.coffee.meta new file mode 100644 index 0000000..b58f5f4 --- /dev/null +++ b/cc_moba/assets/CODE/actornode.coffee.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "bd628cbc-3e58-422b-8049-6333249a6236", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/CODE/actornodemonster.coffee b/cc_moba/assets/CODE/actornodemonster.coffee new file mode 100644 index 0000000..9e4a7cf --- /dev/null +++ b/cc_moba/assets/CODE/actornodemonster.coffee @@ -0,0 +1,22 @@ +cc.Class { + extends: cc.Component + + properties: { + # foo: + # default: null + # type: cc + # serializable: true # [optional], default is true + # visible: true # [optional], default is true + # displayName: 'Foo' # [optional], default is property name + # readonly: false # [optional], default is false + heronode: + default:null + type:cc.Node + } + + idle:() -> + #this.heronode.getComponent("monster")?.idle() + + update: (dt) -> + # do your update here +} diff --git a/cc_moba/assets/CODE/actornodemonster.coffee.meta b/cc_moba/assets/CODE/actornodemonster.coffee.meta new file mode 100644 index 0000000..a55ade1 --- /dev/null +++ b/cc_moba/assets/CODE/actornodemonster.coffee.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "7f887797-0ffb-4750-bbef-662c9b231763", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/CODE/attr.js b/cc_moba/assets/CODE/attr.js new file mode 100644 index 0000000..6f658da --- /dev/null +++ b/cc_moba/assets/CODE/attr.js @@ -0,0 +1,67 @@ +cc.Class({ + extends: cc.Component, +// test git + properties: { + + + + }, + + + + // use this for initialization + onLoad: function () { + let self = this + this.swallowTouches = true + + + + this.node.on('mouseleave', function(event){ + var itemdesc = cc.find("hpdesc") + itemdesc.active = false + + }) + + + + this.node.on('mousemove', function(event){ + var itemdesc = cc.find("hpdesc") + itemdesc.x = 200 + itemdesc.y = this.y + this.parent.y -30 + itemdesc.active = true + if(this.name == "hit") + { + itemdesc.getChildByName("desc").getComponent("cc.Label").string = "攻击" + } + else if(this.name == "defsprite") + { + itemdesc.getChildByName("desc").getComponent("cc.Label").string = "护甲" + } + else + { + itemdesc.getChildByName("desc").getComponent("cc.Label").string = "生命" + } + + }) + + + + + // self.node.on(cc.Node.EventType.TOUCH_START, function(event){ + // var x = event.getLocation().x - self.map.x + // var y = event.getLocation().y- self.map.y + // var json1 = {"type":"move", "x":x, "y":y} + // self.socket.getComponent("socket_l").sendmsg(JSON.stringify(json1)) + // }) + + }, + + // called every frame, uncomment this function to activate update callback + // update: function (dt) { + // if(this.down == false) return + // var node = this.pressnode + // if(node == null) return + + + // }, +}); diff --git a/cc_moba/assets/CODE/attr.js.meta b/cc_moba/assets/CODE/attr.js.meta new file mode 100644 index 0000000..6df0d76 --- /dev/null +++ b/cc_moba/assets/CODE/attr.js.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.1", + "uuid": "9ba26ccc-0880-4b30-8086-e4512d383dab", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/CODE/control.js b/cc_moba/assets/CODE/control.js new file mode 100644 index 0000000..3a1fada --- /dev/null +++ b/cc_moba/assets/CODE/control.js @@ -0,0 +1,111 @@ +cc.Class({ + extends: cc.Component, + + properties: { + + map: { + default:null, + type: cc.Node, + }, + socket: { + default:null, + type: cc.Node, + }, + equip: { + default:null, + type: cc.Node, + } + }, + + // use this for initialization + onLoad: function () { + let self = this + var equips = cc.find("equips") + self.node.on('mouseup', function(event){ + + console.log("event.getButton() is " + event.getButton()) + if(event.getButton() == cc.Event.EventMouse.BUTTON_RIGHT){ + var x = event.getLocation().x - self.map.x + var y = event.getLocation().y - self.map.y + var dot = self.map.getChildByName("pass_dot") + dot.stopAllActions() + dot.x = x + dot.y = y + var action1 = cc.fadeIn(0.1); + var action2 = cc.scaleTo(0.2, 1, 1); + var action3 = cc.scaleTo(0.2, 0.4, 0.4); + var action4 = cc.scaleTo(0.2, 0.7, 0.7); + var action5 = cc.fadeOut(1); + + + var seq1 = cc.sequence(action1, action2, action3, action4, action5); + + dot.runAction(seq1) + + var json1 = {"type":"move", "x":x, "y":y} + self.socket.getComponent("socket_l").sendmsg(JSON.stringify(json1)) + cc.find("herodesc").active = false + } + + + }) + self.node.on('mousemove', function(event){ + + if (self.equip != null) + { + self.equip.x = event.getLocation().x - equips.x + self.equip.y = event.getLocation().y - equips.y + } + }) + var sypress = false + var listener = { + event: cc.EventListener.KEYBOARD, + + onKeyPressed: function (keyCode, event) { + if(sypress == true) return + sypress = true + if(keyCode == 83) + { + var json1 = {"type":"move", "x":-1, "y":-1} + self.socket.getComponent("socket_l").sendmsg(JSON.stringify(json1)) + } + else if(keyCode == 32) + { + + + var json1 = {"type":"move", "x":-2, "y":-2} + self.socket.getComponent("socket_l").sendmsg(JSON.stringify(json1)) + } + }, + onKeyReleased: function (keyCode, event) { + sypress = false + if(keyCode == 83) + { + + } + else if(keyCode == 32) + { + + var json1 = {"type":"move", "x":-2, "y":-3} + self.socket.getComponent("socket_l").sendmsg(JSON.stringify(json1)) + } + } + } + // 绑定键盘事件 + cc.eventManager.addListener(listener, this.node); + + + self.node.on(cc.Node.EventType.TOUCH_START, function(event){ + // var x = event.getLocation().x - self.map.x + // var y = event.getLocation().y- self.map.y + // var json1 = {"type":"move", "x":x, "y":y} + // self.socket.getComponent("socket_l").sendmsg(JSON.stringify(json1)) + }) + + }, + + // called every frame, uncomment this function to activate update callback + // update: function (dt) { + + // }, +}); diff --git a/cc_moba/assets/CODE/control.js.meta b/cc_moba/assets/CODE/control.js.meta new file mode 100644 index 0000000..8538c1c --- /dev/null +++ b/cc_moba/assets/CODE/control.js.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.1", + "uuid": "b1420945-f5d1-4e84-be07-cf2d0a1ef60f", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/CODE/equip.js b/cc_moba/assets/CODE/equip.js new file mode 100644 index 0000000..7dc5128 --- /dev/null +++ b/cc_moba/assets/CODE/equip.js @@ -0,0 +1,321 @@ +cc.Class({ + extends: cc.Component, + + properties: { + map:{ + default:null, + type:cc.Node, + }, + itemlist: { + default:null, + type: cc.Node, + }, + socket: { + default:null, + type: cc.Node, + }, + uid:0, + gid:0, + maptype:"equip", + hp:0, + attr:0, + def:0, + min:0, + str:0, + xixue:0, + baoji:0, + shanbi:0, + yisu:0, + gongsu:0, + desc:"", + equipname:"", + lv:1 + + + + + + }, + + getequiphold: function (x, y) { + var equips = cc.find("equips") + var children = equips.getChildren() + var lengthbase = 75 + var node = null + x = x - equips.x + y = y - equips.y + for(var k = 0; k < children.length; k ++) + { + var equiphold = children[k] + if(equiphold.getChildren().length >1) continue + var length = Math.sqrt((x-equiphold.x)*(x-equiphold.x) + (y-equiphold.y)*(y-equiphold.y)) + console.log("length is " + length) + if (length < lengthbase) + { + node = equiphold + lengthbase = length + } + } + return node + }, + + setdesc: function (itemdesc) { + var name = itemdesc.getChildByName("namelabel") + var shuxing = itemdesc.getChildByName("shuxing") + var desc = itemdesc.getChildByName("desc") + name.getComponent("cc.Label").string = this.equipname + "(" + this.lv + ")" + desc.getComponent("cc.Label").string = this.desc+" " + var str = "" + // hp:0, + // attr:0, + // def:0, + // min:0, + // str:0, + // xixue:0, + // baoji:0, + // shanbi:0, + // yisu:0, + // gongsu:0, + // desc:"", + // equipname:"", + // lv:1 + + this.hp !== 0 ?str=str+"增加" +this.hp+"点生命\n":str=str + this.attr !== 0 ?str=str+"增加" +this.attr+"攻击\n":str=str + this.def !== 0 ?str=str+"增加" +this.def+"护甲\n":str=str + this.min !== 0 ?str=str+"增加" +this.min+"敏捷\n":str=str + this.str !== 0 ?str=str+"增加" +this.str+"力量\n":str=str + this.xixue !== 0 ?str=str+"增加" +this.xixue+"吸血\n":str=str + this.baoji !== 0 ?str=str+"增加" +this.baoji+"暴击\n":str=str + this.shanbi !== 0 ?str=str+"增加" +this.shanbi+"闪避\n":str=str + this.yisu !== 0 ?str=str+"增加" +this.yisu+"移动速度\n":str=str + this.gongsu !== 0 ?str=str+"增加" +this.gongsu+"攻击速度\n":str=str + shuxing.getComponent("cc.Label").string = str + desc.y = shuxing.y - shuxing.height + + + }, + + // use this for initialization + onLoad: function () { + let self = this + self.swallowTouches = true + this.equipname = "" + this.map = cc.find("map4") + this.socket = this.map.getChildByName("web") + var control = cc.find("Canvas").getComponent("control") + + + this.node.on('mouseup', function(event){ + if(event.getButton() != cc.Event.EventMouse.BUTTON_RIGHT) return + if(this.down == false) return + this.down = false + control.equip = null + var map = cc.find("map4") + this.parent = map.getChildByName("itemlist") + var node = self.getequiphold(event.getLocation().x, event.getLocation().y) + if(node == null) + { + console.log("add to map") + var json1 = {"type":"equip", "x":event.getLocation().x- map.x, "y":event.getLocation().y- map.y, "action":"off", "id":self.gid} + self.socket.getComponent("socket_l").sendmsg(JSON.stringify(json1)) + // var map = cc.find("map4") + // this.parent = map.getChildByName("itemlist") + // this.x = event.getLocation().x - map.x + // this.y = event.getLocation().y - map.y + // this.runAction(cc.scaleTo(0.1, 0.5,0.5)) + // this.maptype = "item" + } + else + { + console.log("add to equip") + var json1 = {"id":self.gid, "type":"equip", "x":event.getLocation().x, "y":event.getLocation().y, "action":"on"} + console.log("json1 is " + json1) + self.socket.getComponent("socket_l").sendmsg(JSON.stringify(json1)) + // this.parent = node + // this.x = 0 + // this.y = 0 + // this.runAction(cc.scaleTo(0.1, 1,1)) + // this.maptype = "equip" + // var map = cc.find("map4") + // var uid = map.getComponent("map").get_main_hero_id() + // var node = map.getComponent("map").get_role_by_id(uid) + // node.getComponent("global").addequip(self.uid) + } + + + }) + + this.node.on('mouseleave', function(event){ + if(this.down == true) + { + //this.down = false + // this.parent = null + var node = self.getequiphold(event.getLocation().x, event.getLocation().y) + var equips = cc.find("equips") + self.x = event.getLocation().x - equips.x + self.y = event.getLocation().y - equips.y + if(node == null) + { + // console.log("add to map") + // var map = cc.find("map4") + // this.parent = map.getChildByName("itemlist") + // this.x = event.getLocation().x - map.x + // this.y = event.getLocation().y - map.y + // this.runAction(cc.scaleTo(0.1, 0.5,0.5)) + // this.maptype = "item" + } + else + { + // this.parent = node + // this.x = 0 + // this.y = 0 + // this.runAction(cc.scaleTo(0.1, 1,1)) + // this.maptype = "equip" + } + + } + else + { + var itemdesc = cc.find("itemdesc") + + itemdesc.active = false + } + }) + + this.node.on('mousedown', function(event){ + if(event.getButton() != cc.Event.EventMouse.BUTTON_RIGHT) return + console.log("maptype is " + this.maptype) + var equips = cc.find("equips") + this.parent = null + this.parent = equips + this.x = event.getLocation().x - equips.x + this.y = event.getLocation().y - equips.y + this.down = true + control.equip = this + this.runAction(cc.scaleTo(0.1, 0.8,0.8)) + + + // if (this.maptype == "item") + // { + // this.down = true + // this.xd = event.getLocation().x - this.x + // this.xy = event.getLocation().y - this.y + // this.runAction(cc.scaleTo(0.1, 0.8,0.8)) + // } + // else + // { + // this.down = true + // var lx = event.getLocation().x - this.parent.x - this.parent.parent.x + // var ly = event.getLocation().y - this.parent.y - this.parent.parent.y + // this.xd = lx + // this.yd = ly + // // var x = event.getLocation().x - self.map.x + // // var y = event.getLocation().y - self.map.y + // this.runAction(cc.scaleTo(0.1, 0.8,0.8)) + // } + + + }) + + this.node.on('mousemove', function(event){ + + + var equips = cc.find("equips") + if (this.down == true) + { + + this.x = event.getLocation().x - equips.x + this.y = event.getLocation().y - equips.y + // if (this.maptype == "item") + // { + // var map = cc.find("map4") + // this.parent = map.getChildByName("itemlist") + // this.x = event.getLocation().x - map.x + // this.y = event.getLocation().y - map.y + + // } + // else + // { + // var lx = event.getLocation().x + // var ly = event.getLocation().y + // this.x = lx - this.parent.x - this.parent.parent.x - this.xd + // this.y = ly - this.parent.y - this.parent.parent.y - this.yd + // } + + + } + else{ + var itemdesc = cc.find("itemdesc") + self.setdesc(itemdesc) + itemdesc.x = this.x + this.parent.x + this.parent.parent.x + 75 + //itemdesc.y = this.y + this.parent.y + this.parent.parent.y + itemdesc.active = true + } + + }) + + + + + // self.node.on(cc.Node.EventType.TOUCH_START, function(event){ + // var x = event.getLocation().x - self.map.x + // var y = event.getLocation().y- self.map.y + // var json1 = {"type":"move", "x":x, "y":y} + // self.socket.getComponent("socket_l").sendmsg(JSON.stringify(json1)) + // }) + + }, + + + + setattr: function (uid) { + uid = parseInt(uid) + var confmod = require("equipconf") + var equipconf = confmod[uid] + console.log(equipconf) + for (var prop in equipconf ) + { + this[prop] = equipconf[prop] + } + // if (uid.indexOf("204") != -1) + // { + // this.min = 16, + // this.gongsu = 15, + // this.yisu = 10, + // this.equipname = "单刀" + // this.desc = "性价比:NO.1" + // } + // else if(uid.indexOf("143")!= -1) + // { + // this.yisu = 50, + // this.equipname = "耐克" + // this.desc = "酱油的神装" + // } + // else if(uid.indexOf("191")!= -1) + // { + // this.yisu = 55, + // this.attr = 24, + // this.equipname = "相位鞋" + // this.desc = "高手才懂" + // } + // else if(uid.indexOf("197")!= -1) + // { + // this.xixue = 17, + // this.equipname = "疯脸" + // this.desc = "发起了疯了队友也杀" + // } + + + }, + + // called every frame, uncomment this function to activate update callback + update: function (dt) { + if(this.equipname == "") + { + this.setattr(this.uid) + } + + + }, +}); diff --git a/cc_moba/assets/CODE/equip.js.meta b/cc_moba/assets/CODE/equip.js.meta new file mode 100644 index 0000000..cbd49df --- /dev/null +++ b/cc_moba/assets/CODE/equip.js.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.1", + "uuid": "d5ceb6ea-55e2-44e7-b978-d95ec1c7a2b7", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/CODE/equipconf.js b/cc_moba/assets/CODE/equipconf.js new file mode 100644 index 0000000..0e588b5 --- /dev/null +++ b/cc_moba/assets/CODE/equipconf.js @@ -0,0 +1,36 @@ + + + +var conf = +{ + "204": + { + "min" : 16, + "gongsu":15, + "yisu":10, + "equipname":"单刀", + "desc":"性价比:NO.1" + }, + "143": + { + "yisu":50, + "equipname":"耐克", + "desc":"酱油的神装" + }, + "191": + { + "yisu" : 55, + "attr" : 24, + "equipname" : "相位鞋", + "desc" : "高手才懂" + }, + "197": + { + "xixue" : 17, + "equipname" : "疯脸", + "desc" : "发起了疯了队友也杀" + }, + +}; +module.exports = conf; + diff --git a/cc_moba/assets/CODE/equipconf.js.meta b/cc_moba/assets/CODE/equipconf.js.meta new file mode 100644 index 0000000..9d8489e --- /dev/null +++ b/cc_moba/assets/CODE/equipconf.js.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.1", + "uuid": "c15e92a9-7090-4cfa-8e49-d09d8447c4b7", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/CODE/global.coffee b/cc_moba/assets/CODE/global.coffee new file mode 100644 index 0000000..e5d14e0 --- /dev/null +++ b/cc_moba/assets/CODE/global.coffee @@ -0,0 +1,424 @@ +cc.Class { + extends: cc.Component + + properties: { + # foo: + # default: null + # type: cc + # serializable: true # [optional], default is true + # visible: true # [optional], default is true + # displayName: 'Foo' # [optional], default is property name + # readonly: false # [optional], default is false + actiontype : "1" + actionstatus: null + direct : "1" + speed : 0.5 + arf:0 + hittarget :null + oldaction:null + uid:0 + lasttime:0 + namestr:"" + hittick: 0 + + socket: + default:null, + type: cc.Node, + + smallpoint: + default:null, + type: cc.Node, + + map: + default:null, + type: cc.Node, + + hurtlabel: + default:null, + type: cc.Node, + + namelabel: + default:null, + type: cc.Node, + + actornode: + default:null, + type: cc.Node, + + hpbar: + default:null + type:cc.Node + attrba: + default:null + type:cc.Node + expbar: + default:null + type:cc.Node + + lvlab: + default:null + type:cc.Node + + cy1: + default:null + type:cc.Node + + hp:606 + hpmax:606 + attackvalue:61 + def:0 + lookrange:300 + str:24 + min:9 + exp:0 + lv:1 + + scale : 0.7 + equips:[] + + } + + addequip:(equip) -> + this.equips.push(equip) + this.resetattr() + this.setattr() + + offequip:(equip) -> + for i in [0..this.equips.length - 1] + if this.equips[i].gid == equip + this.equips.splice(i, 1) + this.resetattr() + this.setattr() + return true + return false + + + + addexp:(exp) -> + this.exp= this.exp + exp + upexp = 100 * (this.lv+1) + + if this.exp >= upexp + this.lv = this.lv + 1 + console.log("this.lv is " + this.lv) + this.lvlab.getComponent("cc.Label").string = ""+this.lv + expadd = this.exp - upexp + this.exp = 0 + this.resetattr() + this.setattr() + this.addexp(expadd) + else + this.expbar.getComponent("cc.ProgressBar").progress = this.exp/upexp + + addequipattr:(conf) -> + console.log(conf) + for k, v of conf + console.log(k + this[k]) + if this[k] != undefined + this[k] = this[k] + v + + resetattr:() -> + this.min = 0 + conf = require("equipconf") + + console.log(this.equips) + this.addequipattr conf[parseInt(k.uid)] for k in this.equips + lv = this.lv-1 + #/* 0:力,1:敏,2:智,3:攻,4:防,5:血,6:蓝,7:移,8:主属,9:力成,10:敏成,11:智成 */ + #var this_hero = ["24","9","14","61-67","0.26","606","182","285","0","3","0.9","1.6"]; + this.str = 24+lv*3 + this.min = parseInt(9+lv*0.9) + this.min + this.attackvalue = 61 + lv*3 + hpcut = this.hpmax - this.hp + this.hpmax = 150+this.str*19 + this.hp = this.hpmax - hpcut + this.def = parseInt(this.min/7) + console.log("this.min is " + this.min + " this.def is " + this.def) + + + setattr:() -> + this.hpbar.getComponent("cc.ProgressBar").progress = this.hp/this.hpmax + if this.uid == this.map.getComponent("map").uid + this.attrba.getComponent("setattr").setattack(this.attackvalue) + this.attrba.getComponent("setattr").setdef(this.def) + this.attrba.getComponent("setattr").sethp(this.hp) + this.attrba.getComponent("setattr").setstrong(this.str) + this.attrba.getComponent("setattr").setminjie(this.min) + + + getkillexp:(lv) -> + if lv > 4 + return 100*(lv-2) + if lv == 1 + return 100 + if lv == 2 + return 120 + if lv == 3 + return 160 + if lv == 4 + return 220 + + attack:() -> + console.log("start attck") + if cc.isValid(this.hittarget) == false + this.idle() + return + if this.hittarget.getComponent("global") + iskill = this.hittarget.getComponent("global").attacked(this.attackvalue) + if iskill == true + lv = this.hittarget.getComponent("global").lv + expadd = this.getkillexp(lv) + this.addexp(expadd) + cc.find("rank").getComponent("rank").addscore(this.uid, this.name, lv) + console.log("set idle") + this.hittick = 0 + this.idle() + else + iskill = this.hittarget.getComponent("monster").attacked(this.attackvalue) + if iskill == true + expadd = 70 + this.addexp(expadd) + console.log("set idle") + this.hittick = 0 + this.idle() + + attacked: (attvalue) -> + defminus = this.def * (0.06 /(1+0.06 * this.def)) + attvalue = attvalue + Math.floor(Math.seededRandom()*5) - 9 + attvalue = Math.round(attvalue*(1-defminus)) + this.hp = this.hp - attvalue + #this.hurtlabel.active = true + hurtlab = cc.instantiate(this.hurtlabel) + hurtlab.parent = this.node + hurtlab.Opacity = 255 + hurtlab.setPosition(0, 50) + hurtlab.runAction(cc.fadeIn(0.01)) + + hurtlab.getComponent("cc.Label").string = "-"+attvalue + if this.uid == this.map.getComponent("map").uid + hurtlab.color = cc.color(255,0,0) + + hurtlab.scaleX = 0.5 + hurtlab.scaleY = 0.5 + action1 = cc.moveTo(0.6, 0, 100); + action2 = cc.scaleTo(0.1, 1.3, 1.3); + action3 = cc.scaleTo(0.1, 1.0, 1.0); + action4 = cc.fadeOut(0.2); + action5 = cc.scaleTo(0.3, 0.5, 0.5) + removefun = ()-> + hurtlab.destroy() + finished = cc.callFunc(removefun ,this, hurtlab); + seq1 = cc.sequence(action2, action3, action5); + seq2 = cc.sequence(action1, finished) + seq3 = cc.sequence(cc.delayTime(0.3), action4); + hurtlab.runAction(seq1) + hurtlab.runAction(seq2) + hurtlab.runAction(seq3) + + if this.hp <= 0 + return true + else + this.setattr() + return false + + changedir: (x, y) -> + difx = x-this.node.x; + dify = y-this.node.y; + tan= dify/difx; + tan30 = 0.57735 + tan60 = 1.73205 + scale = this.scale + this.actornode.scaleY = scale + if difx>0 and dify >0 + if tan < tan30 + this.direct = "3" + this.actornode.scaleX = -scale + else if tan > tan60 + this.direct = "5" + this.actornode.scaleX = -scale + else + this.direct = "4" + this.actornode.scaleX = -scale + else if difx>0 and dify <0 + tan = -dify/difx + if tan < tan30 + this.direct = "3" + this.actornode.scaleX = -scale + else if tan > tan60 + this.direct = "1" + this.actornode.scaleX = -scale + else + this.direct = "2" + this.actornode.scaleX = -scale + else if difx<0 and dify>0 + tan = -dify/difx; + if tan < tan30 + this.direct = "3" + this.actornode.scaleX = scale; + else if tan >tan60 + this.direct = "5" + this.actornode.scaleX = scale ; + else + this.direct = "4" + this.actornode.scaleX = scale; + else if difx<0 and dify <0 + tan = dify/difx; + if tan < tan30 + this.direct = "3" + this.actornode.scaleX = scale; + else if tan >tan60 + this.direct = "1" + this.actornode.scaleX = scale ; + else + this.direct = "2" + this.actornode.scaleX = scale; + this.arf =Math.abs(Math.atan(dify/difx)); + + changeTarget: (x, y) -> + + this.changedir(x, y) + this.targetx = x; + this.targety = y; + this.run() + + + doaction: () -> + action = "xiao"+this.actiontype+this.direct + if this.oldaction == action + #console.log("this. hittick is " + this.hittick + "this.actiontype is " + this.actiontype) + if this.actiontype == "2" + this.hittick=this.hittick+1 + if this.hittick == 12 + this.attack() + else if this.hittick >= 16 + this.idle() + else + this.hittick=0 + return + else if this.actiontype == "2" and this.hittick > 4 + this.hittick = this.hittick + 1 + if this.hittick == 12 + this.attack() + else if this.hittick >= 16 + this.idle() + return + this.hittick=0 + this.actionstatus = this.actornode?.getComponent("cc.Animation").play(action) + this.actionstatus.speed = this.map.getComponent("map").animationspeed + this.oldaction = action + + + hit:() -> + this.changedir(this.hittarget.x, this.hittarget.y) + this.actiontype = "2" + this.doaction() + + idle:() -> + this.buffer = null + this.cy1.active = false + this.actiontype = "1" + this.doaction() + #animState.repeatCount = Infinity + + run:() -> + this.actiontype = "3" + this.doaction() + + setdesc: () -> + + + itemdesc = cc.find("herodesc") + itemdesc.active = true + #itemdesc.x = 300 + + name = itemdesc.getChildByName("namelabel") + shuxing = itemdesc.getChildByName("shuxing") + desc = itemdesc.getChildByName("desc") + name.getComponent("cc.Label").string = this.namestr + "(" + this.lv + "lv)" + #desc.getComponent("cc.Label").string = this.desc+" " + str = "" + + if this.hp != undefined then str=str+this.hp+"点生命\n" + if this.attr != undefined then str=str+this.attr+"攻击\n" + if this.def != undefined then str=str+this.def+"护甲\n" + if this.min != undefined then str=str+this.min+"敏捷\n" + if this.str != undefined then str=str+this.str+"力量\n" + if this.xixue != undefined then str=str+this.xixue+"吸血\n" + if this.baoji != undefined then str=str+this.baoji+"暴击\n" + if this.shanbi != undefined then str=str+this.shanbi+"闪避\n" + if this.yisu != undefined then str=str+this.yisu+"移动速度\n" + if this.gongsu != undefined then str=str+this.gongsu+"攻击速度\n" + shuxing.getComponent("cc.Label").string = str + #desc.y = shuxing.y - shuxing.height + + initsmallpoint:() -> + oldparent = this.smallpoint.parent + this.smallpoint1 = cc.instantiate(this.smallpoint) + this.smallpoint1.parent = oldparent + this.smallpoint1.x = this.node.x / 20 + this.smallpoint1.y = this.node.y / 20 + if this.uid == this.map.getComponent("map").uid + else + this.smallpoint1.color = cc.color(255,0,0) + onLoad:() -> + require("random") + self = this + this.node.on('mousedown', + (event) -> + if event.getButton() == cc.Event.EventMouse.BUTTON_LEFT + self.setdesc() + ) + this.actornode = this.node.getChildByName("actornode"); + this.namelabel = this.node.getChildByName("heroname"); + # this.hurtlabel = this.node.getChildByName("hurt"); + + this.lv=1 + this.resetattr() + this.setattr() + + + setname:(name) -> + this.namestr = name + this.namelabel.getComponent("cc.Label").string = name + update_move: () -> + + speed = this.speed*6 + if this.buffer == "cs1" + if this.hp >10 + this.hp=this.hp-1-parseInt(this.hp * 0.01) + this.setattr() + speed = speed * 3 + if this.actiontype isnt "3" + return + if Math.abs(this.targetx - this.node.x) < 8 and Math.abs(this.targety - this.node.y)<8 + this.idle() + return + + if this.targetx > this.node.x + this.node.x = this.node.x + speed*Math.cos(this.arf); + else + this.node.x = this.node.x - speed*Math.cos(this.arf); + + if this.targety > this.node.y + this.node.y = this.node.y + speed*Math.sin(this.arf); + else + this.node.y = this.node.y - speed*Math.sin(this.arf); + this.setname(this.namestr) + + if this.smallpoint1 + this.smallpoint1.x = this.node.x / 20 - 6 + this.smallpoint1.y = this.node.y / 20 -4 + else + this.initsmallpoint() + + update: (dt) -> + this.actionstatus?.speed = this.map.getComponent("map").animationspeed * 1.5 + + + + + + + + +} diff --git a/cc_moba/assets/CODE/global.coffee.meta b/cc_moba/assets/CODE/global.coffee.meta new file mode 100644 index 0000000..a8a4a07 --- /dev/null +++ b/cc_moba/assets/CODE/global.coffee.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "b6a7daef-cfc7-40f4-a462-a1e56d16f5da", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/CODE/herodesc.js b/cc_moba/assets/CODE/herodesc.js new file mode 100644 index 0000000..3639e2f --- /dev/null +++ b/cc_moba/assets/CODE/herodesc.js @@ -0,0 +1,273 @@ +cc.Class({ + extends: cc.Component, + + properties: { + map:{ + default:null, + type:cc.Node, + }, + itemlist: { + default:null, + type: cc.Node, + }, + socket: { + default:null, + type: cc.Node, + }, + uid:0, + maptype:"equip", + hp:0, + attr:0, + def:0, + min:0, + str:0, + xixue:0, + baoji:0, + shanbi:0, + yisu:0, + gongsu:0, + desc:"", + heroname:"", + lv:1 + + + + + + }, + + + + setdesc: function (itemdesc) { + var name = itemdesc.getChildByName("namelabel") + var shuxing = itemdesc.getChildByName("shuxing") + var desc = itemdesc.getChildByName("desc") + name.getComponent("cc.Label").string = this.heroname + "(" + this.lv + ")" + desc.getComponent("cc.Label").string = this.desc+" " + var str = "" + + + this.hp !== 0 ?str=str+"增加" +this.hp+"点生命\n":str=str + this.attr !== 0 ?str=str+"增加" +this.attr+"攻击\n":str=str + this.def !== 0 ?str=str+"增加" +this.def+"护甲\n":str=str + this.min !== 0 ?str=str+"增加" +this.min+"敏捷\n":str=str + this.str !== 0 ?str=str+"增加" +this.str+"力量\n":str=str + this.xixue !== 0 ?str=str+"增加" +this.xixue+"吸血\n":str=str + this.baoji !== 0 ?str=str+"增加" +this.baoji+"暴击\n":str=str + this.shanbi !== 0 ?str=str+"增加" +this.shanbi+"闪避\n":str=str + this.yisu !== 0 ?str=str+"增加" +this.yisu+"移动速度\n":str=str + this.gongsu !== 0 ?str=str+"增加" +this.gongsu+"攻击速度\n":str=str + shuxing.getComponent("cc.Label").string = str + desc.y = shuxing.y - shuxing.height + + + }, + + // use this for initialization + onLoad: function () { + let self = this + self.swallowTouches = true + this.equipname = "" + this.map = cc.find("map4") + this.socket = this.map.getChildByName("web") + + + this.node.on('mouseup', function(event){ + if(event.getButton() != cc.Event.EventMouse.BUTTON_RIGHT) return + if(this.down == false) return + this.down = false + this.parent = null + var node = self.getequiphold(event.getLocation().x, event.getLocation().y) + if(node == null) + { + console.log("add to map") + var map = cc.find("map4") + this.parent = map.getChildByName("itemlist") + this.x = event.getLocation().x - map.x + this.y = event.getLocation().y - map.y + this.runAction(cc.scaleTo(0.1, 0.5,0.5)) + this.maptype = "item" + } + else + { + console.log("add to equip") + this.parent = node + this.x = 0 + this.y = 0 + this.runAction(cc.scaleTo(0.1, 1,1)) + this.maptype = "equip" + } + + var map = cc.find("map4") + var uid = map.getComponent("map").get_main_hero_id() + var node = map.getComponent("map").get_role_by_id(uid) + node.getComponent("global").addequip(self.uid) + }) + + this.node.on('mouseleave', function(event){ + if(this.down == true) + { + this.down = false + this.parent = null + var node = self.getequiphold(event.getLocation().x, event.getLocation().y) + + if(node == null) + { + console.log("add to map") + var map = cc.find("map4") + this.parent = map.getChildByName("itemlist") + this.x = event.getLocation().x - map.x + this.y = event.getLocation().y - map.y + this.runAction(cc.scaleTo(0.1, 0.5,0.5)) + this.maptype = "item" + } + else + { + this.parent = node + this.x = 0 + this.y = 0 + this.runAction(cc.scaleTo(0.1, 1,1)) + this.maptype = "equip" + } + + } + else + { + var itemdesc = cc.find("itemdesc") + + itemdesc.active = false + } + }) + + this.node.on('mousedown', function(event){ + if(event.getButton() != cc.Event.EventMouse.BUTTON_RIGHT) return + console.log("maptype is " + this.maptype) + var equips = cc.find("equips") + this.parent = null + this.parent = equips + this.x = event.getLocation().x - equips.x + this.y = event.getLocation().y - equips.y + this.down = true + this.runAction(cc.scaleTo(0.1, 0.8,0.8)) + + + // if (this.maptype == "item") + // { + // this.down = true + // this.xd = event.getLocation().x - this.x + // this.xy = event.getLocation().y - this.y + // this.runAction(cc.scaleTo(0.1, 0.8,0.8)) + // } + // else + // { + // this.down = true + // var lx = event.getLocation().x - this.parent.x - this.parent.parent.x + // var ly = event.getLocation().y - this.parent.y - this.parent.parent.y + // this.xd = lx + // this.yd = ly + // // var x = event.getLocation().x - self.map.x + // // var y = event.getLocation().y - self.map.y + // this.runAction(cc.scaleTo(0.1, 0.8,0.8)) + // } + + + }) + + this.node.on('mousemove', function(event){ + if (this.down == true) + { + var equips = cc.find("equips") + this.x = event.getLocation().x - equips.x + this.y = event.getLocation().y - equips.y + // if (this.maptype == "item") + // { + // var map = cc.find("map4") + // this.parent = map.getChildByName("itemlist") + // this.x = event.getLocation().x - map.x + // this.y = event.getLocation().y - map.y + + // } + // else + // { + // var lx = event.getLocation().x + // var ly = event.getLocation().y + // this.x = lx - this.parent.x - this.parent.parent.x - this.xd + // this.y = ly - this.parent.y - this.parent.parent.y - this.yd + // } + + + } + else{ + var itemdesc = cc.find("itemdesc") + self.setdesc(itemdesc) + itemdesc.x = this.x + this.parent.x + this.parent.parent.x + 75 + //itemdesc.y = this.y + this.parent.y + this.parent.parent.y + itemdesc.active = true + } + + }) + + + + + // self.node.on(cc.Node.EventType.TOUCH_START, function(event){ + // var x = event.getLocation().x - self.map.x + // var y = event.getLocation().y- self.map.y + // var json1 = {"type":"move", "x":x, "y":y} + // self.socket.getComponent("socket_l").sendmsg(JSON.stringify(json1)) + // }) + + }, + + + + setattr: function (uid) { + uid = parseInt(uid) + var confmod = require("equipconf") + var equipconf = confmod[uid] + console.log(equipconf) + for (var prop in equipconf ) + { + this[prop] = equipconf[prop] + } + // if (uid.indexOf("204") != -1) + // { + // this.min = 16, + // this.gongsu = 15, + // this.yisu = 10, + // this.equipname = "单刀" + // this.desc = "性价比:NO.1" + // } + // else if(uid.indexOf("143")!= -1) + // { + // this.yisu = 50, + // this.equipname = "耐克" + // this.desc = "酱油的神装" + // } + // else if(uid.indexOf("191")!= -1) + // { + // this.yisu = 55, + // this.attr = 24, + // this.equipname = "相位鞋" + // this.desc = "高手才懂" + // } + // else if(uid.indexOf("197")!= -1) + // { + // this.xixue = 17, + // this.equipname = "疯脸" + // this.desc = "发起了疯了队友也杀" + // } + + + }, + + // called every frame, uncomment this function to activate update callback + update: function (dt) { + if(this.equipname == "") + { + this.setattr(this.uid) + } + + + }, +}); diff --git a/cc_moba/assets/CODE/herodesc.js.meta b/cc_moba/assets/CODE/herodesc.js.meta new file mode 100644 index 0000000..f4adfbe --- /dev/null +++ b/cc_moba/assets/CODE/herodesc.js.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.1", + "uuid": "78696eb4-ac14-4982-b267-f888616b1ea6", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/CODE/login.js b/cc_moba/assets/CODE/login.js new file mode 100644 index 0000000..ad64634 --- /dev/null +++ b/cc_moba/assets/CODE/login.js @@ -0,0 +1,48 @@ +cc.Class({ + extends: cc.Component, + + properties: { + // foo: { + // default: null, + // url: cc.Texture2D, // optional, default is typeof default + // serializable: true, // optional, default is true + // visible: true, // optional, default is true + // displayName: 'Foo', // optional + // readonly: false, // optional, default is false + // }, + // ... + socket: { + default:null, + type: cc.Node, + }, + namelabel: { + default:null, + type: cc.Node, + }, + }, + + // use this for initialization + onLoad: function () { + this.namelabel = this.node.getChildByName("name"); + }, + + reset: function(){ + var startbutton = this.node.getChildByName("start") + startbutton.active = true + startbutton.getChildByName("Label").getComponent("cc.Label").string = "信春哥" + this.node.getChildByName("loading").active = false + this.namelabel.active = false + }, + + load: function(){ + var name = this.namelabel.getComponent("cc.EditBox").string + this.socket.getComponent("socket_l").sendmsg(JSON.stringify({"type":"login", "name":name})); + this.node.getChildByName("loading").active = true + this.node.getChildByName("start").active = false + } + + // called every frame, uncomment this function to activate update callback + // update: function (dt) { + + // }, +}); diff --git a/cc_moba/assets/CODE/login.js.meta b/cc_moba/assets/CODE/login.js.meta new file mode 100644 index 0000000..e65de73 --- /dev/null +++ b/cc_moba/assets/CODE/login.js.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.1", + "uuid": "84273373-cfd0-42c3-9f39-92f70d0d5370", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/CODE/map.js b/cc_moba/assets/CODE/map.js new file mode 100644 index 0000000..69ed758 --- /dev/null +++ b/cc_moba/assets/CODE/map.js @@ -0,0 +1,464 @@ +cc.Class({ + extends: cc.Component, + + properties: { + // foo: { + // default: null, + // url: cc.Texture2D, // optional, default is typeof default + // serializable: true, // optional, default is true + // visible: true, // optional, default is true + // displayName: 'Foo', // optional + // readonly: false, // optional, default is false + // }, + // ... + + socket: { + default:null, + type: cc.Node, + }, + + loading: { + default:null, + type: cc.Node, + }, + + hero:{ + default: null, + type: cc.Node + }, + time:{ + default: null, + type: cc.Node + }, + heroself:{ + default: null, + type: cc.Node + }, + herolist:{ + default:null, + type:cc.Node + }, + monsterlist:{ + default:null, + type:cc.Node + }, + + dt : 0, + curtick:0, + animationspeed:1, + ticklist : [], + maxtick : 0, + uid:0 + + + }, + + + + // use this for initialization + onLoad: function () { + cc.find("login").active = true + + }, + + + // called every frame, uncomment this function to activate update callback + update: function (dt) { + var now = Date.now() + var tick = 50 + if(this.dt == 0 ) + { + this.dt = now + return + } + var timediff = now - this.dt + var tickcount = parseInt(timediff/tick) + tickcount = Math.min(tickcount, 1) + var costtime = tickcount*tick + var timeleft = timediff - costtime + this.dt = now - timeleft + if (tickcount < 1) + { + return + } + + tickcount = Math.min(this.maxtick - this.curtick, 100) + if (cc.find("login").active == true) + { + var per = Math.round(this.curtick/this.maxtick * 100) + this.loading.getComponent("cc.Label").string ="loading... " + per + "%" + } + + + this.animationspeed = tickcount + if (tickcount > 10) console.log("tickcount is " + tickcount) + for (var i = this.curtick; i < this.curtick + tickcount; i++) + { + var tickinfo = this.ticklist[i] + if(tickinfo != undefined) + { + + for(var j = 0; j < tickinfo.list.length; j++) + { + var tick = tickinfo.list[j] + if (tick.action == "move") + { + var children = this.herolist.getChildren() + for(var k = 0; k < children.length; k ++) + { + var hero = children[k].getComponent("global") + if(hero.uid == tick.uid) + { + hero.hittarget = null + if(tick.x == -1 && tick.y == -1) + { + hero.idle() + } + else if (tick.x == -2) + { + + if(tick.y == -2) + { + if(hero.hp>10) + { + hero.buffer = "cs1" + hero.cy1.active = true + if(hero.actionstatus != null) + { + hero.actionstatus.pause() + } + } + + } + else + { + hero.cy1.active = false + hero.buffer = null + if(hero.actionstatus != null) + { + hero.actionstatus.resume() + } + } + } + else{ + hero.cy1.active = false + hero.buffer = null + if(hero.actionstatus != null) + { + hero.actionstatus.resume() + } + hero.changeTarget(tick.x,tick.y) + } + + } + } + } + else if(tick.action == "login") + { + + var children = this.herolist.getChildren() + var logined = false + for(var k = 0; k < children.length; k ++) + { + + var hero = children[k].getComponent("global") + if(hero.uid == tick.uid) + { + logined = true; + } + } + if(logined == true)continue + console.log(tick.uid + " login" + tick.name) + var node = cc.instantiate(this.hero); + node.getComponent("global").uid = tick.uid + + node.parent = this.herolist + node.setPosition(tick.x, tick.y) + node.getComponent("global").setname(tick.name) + cc.find("rank").getComponent("rank").addscore(tick.uid, tick.name, 0) + if (tick.uid == this.uid) + { + console.log(" login name" + tick.name) + + this.node.runAction(cc.follow(node, cc.rect(0,0,3200,3200))); + cc.find("login").active = false + } + }else if(tick.action == "off") + { + var equipid = tick.name + + var equiplist = this.node.getChildByName("itemlist").getChildren() + var equipnode + var equipjs = null + for(var r = 0; r 500) + { + global.hittarget = null + global.changeTarget(global.initx, global.inity) + continue + } + + if(target == null ) + { + continue; + } + if(cc.isValid(target) == false) + { + global.idle() + global.hittarget = null + continue; + } + + + + + var direct =this.get_direct(nodes2[i], target) + + if (direct < 70) + { + global.hit() + } + else + { + global.changeTarget(target.x, target.y) + } + + + + } + }, +}); diff --git a/cc_moba/assets/CODE/map.js.meta b/cc_moba/assets/CODE/map.js.meta new file mode 100644 index 0000000..6adbd9e --- /dev/null +++ b/cc_moba/assets/CODE/map.js.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.1", + "uuid": "94676851-4af2-4115-896c-92530e1fafc4", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/CODE/monster.coffee b/cc_moba/assets/CODE/monster.coffee new file mode 100644 index 0000000..a79bbeb --- /dev/null +++ b/cc_moba/assets/CODE/monster.coffee @@ -0,0 +1,260 @@ +cc.Class { + extends: cc.Component + + properties: { + # foo: + # default: null + # type: cc + # serializable: true # [optional], default is true + # visible: true # [optional], default is true + # displayName: 'Foo' # [optional], default is property name + # readonly: false # [optional], default is false + actiontype : "1" + actionstatus: null + direct : "1" + speed : 0.5 + arf:0 + hittarget :null + oldaction:null + uid:0 + lasttime:0 + namestr:"" + hittick:0 + + initx:0 + inity:0 + hurtlabel: + default:null, + type: cc.Node, + socket: + default:null, + type: cc.Node, + + map: + default:null, + type: cc.Node, + + namelabel: + default:null, + type: cc.Node, + + actornode: + default:null, + type: cc.Node, + + hpbar: + default:null + type:cc.Node + attrba: + default:null + type:cc.Node + + hp:606 + hpmax:606 + attackvalue:61 + def:0 + lookrange:300 + str:24 + min:9 + ciptype:"doushi" + + scale : 0.7 + + } + initattr:() -> + this.hpmax = 300 + this.hp = 300 + this.attackvalue = 20 + this.def = 2 + + attack:() -> + if this.hittarget == null or cc.isValid(this.hittarget) == false + this.idle() + return + iskilled = this.hittarget.getComponent("global").attacked(this.attackvalue) + if iskilled == true + console.log("monster kill ") + this.hittarget = null + this.idle() + + attacked: (attvalue) -> + defminus = this.def * (0.06 /(1+0.06 * this.def)) + attvalue = attvalue + Math.floor(Math.seededRandom()*5) - 9 + attvalue = Math.round(attvalue*(1-defminus)); + this.hp = this.hp - attvalue + hurtlab = cc.instantiate(this.hurtlabel) + hurtlab.parent = this.node + hurtlab.Opacity = 255 + hurtlab.setPosition(0, 50) + hurtlab.runAction(cc.fadeIn(0.01)) + + hurtlab.getComponent("cc.Label").string = "-"+attvalue + + hurtlab.scaleX = 0.5 + hurtlab.scaleY = 0.5 + action1 = cc.moveTo(0.6, 0, 100); + action2 = cc.scaleTo(0.1, 1.3, 1.3); + action3 = cc.scaleTo(0.1, 1.0, 1.0); + action4 = cc.fadeOut(0.2); + action5 = cc.scaleTo(0.3, 0.5, 0.5) + removefun = ()-> + hurtlab.destroy() + finished = cc.callFunc(removefun ,this, hurtlab); + seq1 = cc.sequence(action2, action3, action5); + seq2 = cc.sequence(action1, finished) + seq3 = cc.sequence(cc.delayTime(0.3), action4); + hurtlab.runAction(seq1) + hurtlab.runAction(seq2) + hurtlab.runAction(seq3) + if this.hp <= 0 + return true + else + this.hpbar.getComponent("cc.ProgressBar").progress = this.hp/this.hpmax + return false + + changedir: (x, y) -> + difx = x-this.node.x; + dify = y-this.node.y; + tan= dify/difx; + tan30 = 0.57735 + tan60 = 1.73205 + scale = this.scale + this.actornode.scaleY = scale + if difx>0 and dify >0 + if tan < tan30 + this.direct = "3" + this.actornode.scaleX = -scale + else if tan > tan60 + this.direct = "5" + this.actornode.scaleX = scale + else + this.direct = "4" + this.actornode.scaleX = -scale + else if difx>0 and dify <0 + tan = -dify/difx + if tan < tan30 + this.direct = "3" + this.actornode.scaleX = -scale + else if tan > tan60 + this.direct = "1" + this.actornode.scaleX = scale + else + this.direct = "2" + this.actornode.scaleX = -scale + else if difx<0 and dify>0 + tan = -dify/difx; + if tan < tan30 + this.direct = "3" + this.actornode.scaleX = scale; + else if tan >tan60 + this.direct = "5" + this.actornode.scaleX = scale ; + else + this.direct = "4" + this.actornode.scaleX = scale; + else if difx<0 and dify <0 + tan = dify/difx; + if tan < tan30 + this.direct = "3" + this.actornode.scaleX = scale; + else if tan >tan60 + this.direct = "1" + this.actornode.scaleX = scale ; + else + this.direct = "2" + this.actornode.scaleX = scale; + this.arf =Math.abs(Math.atan(dify/difx)); + + changeTarget: (x, y) -> + + this.changedir(x, y) + this.targetx = x; + this.targety = y; + this.run() + + + doaction: () -> + action = this.ciptype+this.actiontype+this.direct + if this.oldaction == action + if this.actiontype == "2" + this.hittick = this.hittick + 1 + if this.hittick == 12 + this.attack() + else if this.hittick == 16 + this.idle() + else + this.hittick=0 + return + else if this.actiontype == "2" and this.hittick > 4 + this.hittick = this.hittick + 1 + if this.hittick == 12 + this.attack() + else if this.hittick == 16 + this.idle() + return + + this.hittick=0 + console.log("user " + this.namestr+" play animation " +action) + this.actionstatus = this.actornode?.getComponent("cc.Animation").play(action) + this.actionstatus?.speed = this.map.getComponent("map").animationspeed + this.oldaction = action + + + hit:() -> + this.changedir(this.hittarget.x, this.hittarget.y) + this.actiontype = "2" + this.doaction() + + idle:() -> + this.actiontype = "1" + this.doaction() + + + run:() -> + this.actiontype = "3" + this.doaction() + onLoad:() -> + this.node.on('mousedown', + (event) -> + #animState = this.actor.getComponent(cc.Animation).play("xiao21") + # animState.repeatCount = 1; + ) + this.actornode = this.node.getChildByName("actornode"); + this.namelabel = this.node.getChildByName("heroname"); + this.initx = this.node.x + this.inity = this.node.y + this.initattr() + + setname:(name) -> + this.namestr = name + this.namelabel.getComponent("cc.Label").string = name + update_move: () -> + speed = this.speed*6 + if this.actiontype isnt "3" + return + if Math.abs(this.targetx - this.node.x) < 3 and Math.abs(this.targety - this.node.y)<3 + this.idle() + return + + if this.targetx > this.node.x + this.node.x = this.node.x + speed*Math.cos(this.arf); + else + this.node.x = this.node.x - speed*Math.cos(this.arf); + + if this.targety > this.node.y + this.node.y = this.node.y + speed*Math.sin(this.arf); + else + this.node.y = this.node.y - speed*Math.sin(this.arf); + this.setname(this.namestr) + + update: (dt) -> + this.actionstatus?.speed = this.map.getComponent("map").animationspeed * 1.5 + + + + + + + + +} diff --git a/cc_moba/assets/CODE/monster.coffee.meta b/cc_moba/assets/CODE/monster.coffee.meta new file mode 100644 index 0000000..51c5d52 --- /dev/null +++ b/cc_moba/assets/CODE/monster.coffee.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "6549b035-12c7-4493-94ca-9905fc869789", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/CODE/monstermaker.js b/cc_moba/assets/CODE/monstermaker.js new file mode 100644 index 0000000..ea5a714 --- /dev/null +++ b/cc_moba/assets/CODE/monstermaker.js @@ -0,0 +1,95 @@ +cc.Class({ + extends: cc.Component, + + properties: { + + map: { + default:null, + type: cc.Node, + }, + monster: { + default:null, + type: cc.Node, + } + }, + + maker:function(name, x, y){ + var monster = cc.instantiate(this.monster); + monster.x = x + monster.y = y + monster.parent = this.map.getChildByName("monsterlist") + var actor = monster.getChildByName("actornode") + + var animation = actor.getComponent("cc.Animation") + this.loadanimation(animation, name, monster) + + + }, + + loadanimation: function (animation, frameName, monster) { + let self = this + cc.loader.loadRes(frameName, cc.SpriteAtlas, function (err , atlas) { + console.log("err is " + err) + for(let i = 1; i < 4; i++){ + for(var j = 0;j<5 ;j++) + { + var frames = []; + for( var k = 0; k<6;k++) + { + var fname = i+""+j+""+k+".png.pvr" + var f = atlas.getSpriteFrame(fname) + + frames.push(f); + + } + var clip = cc.AnimationClip.createWithSpriteFrames(frames, 6); + console.log( frameName+i+j + " animation length " + frames.length) + clip.wrapMode = 2 + var ii = 1 + if(i == 2) + { + ii = 3 + } + else if (i==3) + { + ii = 2 + } + + animation.addClip(clip, frameName+ii+(j+1)); + } + + } + monster.getComponent("monster").scale = 1.2 + monster.getComponent("monster").ciptype = frameName + monster.getComponent("monster").changedir(1,1) + monster.getComponent("monster").idle() + + + + }) + }, + + // use this for initialization + onLoad: function () { + let self = this + + this.scheduleOnce(function() { + // 这里的 this 指向 component + var monster = ["gd", "nt", "rm", "sb", "sr", "yw", "yw"] + for(var i = 0; i< 50;i ++) + { + var name = monster[parseInt(1 + Math.seededRandom()*6)] + var x = 3000*Math.seededRandom() + var y = 3000*Math.seededRandom() + this.maker(name, parseInt(x), parseInt(y)) + } + }, 2); + + + }, + + // called every frame, uncomment this function to activate update callback + // update: function (dt) { + + // }, +}); diff --git a/cc_moba/assets/CODE/monstermaker.js.meta b/cc_moba/assets/CODE/monstermaker.js.meta new file mode 100644 index 0000000..901feb6 --- /dev/null +++ b/cc_moba/assets/CODE/monstermaker.js.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.1", + "uuid": "67378a4a-8004-4ecd-8233-245211b22013", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/CODE/random.js b/cc_moba/assets/CODE/random.js new file mode 100644 index 0000000..365970f --- /dev/null +++ b/cc_moba/assets/CODE/random.js @@ -0,0 +1,19 @@ +var random = { + + load: function () { + Math.seed = 5; + Math.seededRandom = function(max, min) { + max = max || 1; + min = min || 0; + + Math.seed = (Math.seed * 9301 + 49297) % 233280; + var rnd = Math.seed / 233280.0; + + return min + rnd * (max - min); + }; + } +}; +random.load(); + +module.exports = random; + diff --git a/cc_moba/assets/CODE/random.js.meta b/cc_moba/assets/CODE/random.js.meta new file mode 100644 index 0000000..37478c1 --- /dev/null +++ b/cc_moba/assets/CODE/random.js.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.1", + "uuid": "0e8c6c4e-6d5e-422d-b74e-929e75183f58", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/CODE/rank.js b/cc_moba/assets/CODE/rank.js new file mode 100644 index 0000000..2257cdb --- /dev/null +++ b/cc_moba/assets/CODE/rank.js @@ -0,0 +1,78 @@ +cc.Class({ + extends: cc.Component, + + properties: { + + + ranklist:[], + rankui: { + default:null, + type: cc.Node, + }, + rankuione: { + default:null, + type: cc.Node, + }, + + + + }, + + + + // use this for initialization + onLoad: function () { + this.ranklist = [] + this.rankui = cc.find("rank") + this.rankuione = cc.find("rank_one") + + }, + + refresh:function(){ + this.rankui.removeAllChildren() + var y = 0 + this.ranklist.sort(function(a,b){ + return a.score 10) maxi = 10 + for(var i = 0; i< this.ranklist.length; i++) + { + var node = cc.instantiate(this.rankuione) + node.parent = this.rankui + node.y = y + y-=31 + var label = node.getChildByName("content") + + label.getComponent("cc.Label").string = i+1+"th. "+this.ranklist[i].name+": " + this.ranklist[i].score + "" + + } + + }, + + addscore:function(id, name,scoreadd){ + for(var i = 0; i< this.ranklist.length; i++) + { + if(this.ranklist[i].id == id){ + this.ranklist[i].score += scoreadd; + this.refresh() + return + } + } + var rankone = {} + rankone.id = id + rankone.score = scoreadd + rankone.name = name + this.ranklist.push(rankone) + this.refresh() + + }, + + + + + // called every frame, uncomment this function to activate update callback + update: function (dt) { + + }, +}); diff --git a/cc_moba/assets/CODE/rank.js.meta b/cc_moba/assets/CODE/rank.js.meta new file mode 100644 index 0000000..15c2354 --- /dev/null +++ b/cc_moba/assets/CODE/rank.js.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.1", + "uuid": "5c789259-94e4-419d-bd89-412ee996c08e", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/CODE/setattr.js b/cc_moba/assets/CODE/setattr.js new file mode 100644 index 0000000..5b9664b --- /dev/null +++ b/cc_moba/assets/CODE/setattr.js @@ -0,0 +1,60 @@ +cc.Class({ + extends: cc.Component, + + properties: { + // foo: { + // default: null, + // url: cc.Texture2D, // optional, default is typeof default + // serializable: true, // optional, default is true + // visible: true, // optional, default is true + // displayName: 'Foo', // optional + // readonly: false, // optional, default is false + // }, + // ... + attack:{ + default:null, + type: cc.Node, + }, + def:{ + default:null, + type: cc.Node, + }, + hp:{ + default:null, + type: cc.Node, + }, + strong:{ + default:null, + type: cc.Node, + }, + minjie:{ + default:null, + type: cc.Node, + }, + }, + + // use this for initialization + onLoad: function () { + + }, + setattack : function(p){ + + this.attack.getComponent("cc.Label").string = " " + p + }, + setdef : function(p){ + this.def.getComponent("cc.Label").string = " " + p + }, + sethp : function(p){ + this.hp.getComponent("cc.Label").string = " " + p + }, + setstrong : function(p){ + this.strong.getComponent("cc.Label").string = " " + p + }, + setminjie : function(p){ + this.minjie.getComponent("cc.Label").string = " " + p + }, + // called every frame, uncomment this function to activate update callback + // update: function (dt) { + + // }, +}); diff --git a/cc_moba/assets/CODE/setattr.js.meta b/cc_moba/assets/CODE/setattr.js.meta new file mode 100644 index 0000000..5199dd2 --- /dev/null +++ b/cc_moba/assets/CODE/setattr.js.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.1", + "uuid": "21268493-9fc7-4b4b-a5ad-1c837f1a5130", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/CODE/socket_l.js b/cc_moba/assets/CODE/socket_l.js new file mode 100644 index 0000000..073b023 --- /dev/null +++ b/cc_moba/assets/CODE/socket_l.js @@ -0,0 +1,64 @@ +cc.Class({ + extends: cc.Component, + + properties: { + // foo: { + // default: null, + // url: cc.Texture2D, // optional, default is typeof default + // serializable: true, // optional, default is true + // visible: true, // optional, default is true + // displayName: 'Foo', // optional + // readonly: false, // optional, default is false + // }, + // ... + ws:null, + uid:null, + ticks:null, + maxtick:0, + map: { + default:null, + type: cc.Node, + } + }, + + sendmsg: function(msg){ + this.ws.send(msg); + }, + + // use this for initialization + onLoad: function () { + var map = this.node.getParent() + this.ws = new WebSocket("ws://123.59.42.239:8091/websocket"); + this.ws.onopen = function (event) { + console.log("Send Text WS was opened."); + + + }; + this.ws.onmessage = function (event) { + var reply = JSON.parse(event.data) + + if(reply.type == "login_reply") + { + map.getComponent("map").uid = reply.uid + } + else if(reply.type == "tick") + { + map.getComponent("map").ticklist[reply.tick] = reply + map.getComponent("map").maxtick = reply.tick + } + + }; + this.ws.onerror = function (event) { + console.log("Send Text fired an error"); + }; + this.ws.onclose = function (event) { + console.log("WebSocket instance closed."); + }; + + }, + + // called every frame, uncomment this function to activate update callback + // update: function (dt) { + + // }, +}); diff --git a/cc_moba/assets/CODE/socket_l.js.meta b/cc_moba/assets/CODE/socket_l.js.meta new file mode 100644 index 0000000..4c62787 --- /dev/null +++ b/cc_moba/assets/CODE/socket_l.js.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.1", + "uuid": "123963b5-c334-403b-97cd-5b91218a0afc", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim.meta b/cc_moba/assets/anim.meta new file mode 100644 index 0000000..b44f8f5 --- /dev/null +++ b/cc_moba/assets/anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "c94a9665-ce54-4480-a1d5-0c4ef5e21ca5", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi11.anim b/cc_moba/assets/anim/doushi11.anim new file mode 100644 index 0000000..6fb890c --- /dev/null +++ b/cc_moba/assets/anim/doushi11.anim @@ -0,0 +1,55 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "doushi11", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1, + "sample": 6, + "speed": 1, + "wrapMode": 2, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "7598e0bc-4b88-46f9-a305-8fbd03b25223" + } + }, + { + "frame": 0.16666666666666666, + "value": { + "__uuid__": "1ef792ef-598a-4692-b3ac-2cad015c9ecf" + } + }, + { + "frame": 0.3333333333333333, + "value": { + "__uuid__": "e2569edc-10b6-401c-bcdf-5e6f67aa0761" + } + }, + { + "frame": 0.5, + "value": { + "__uuid__": "da6441dd-5344-4fd3-92f4-03e3336c0567" + } + }, + { + "frame": 0.6666666666666666, + "value": { + "__uuid__": "2fddedaf-762a-4770-8f79-a081f2993ddc" + } + }, + { + "frame": 0.8333333333333334, + "value": { + "__uuid__": "9adecf10-4184-4d00-bc11-e4554a141738" + } + } + ] + } + } + }, + "events": [] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi11.anim.meta b/cc_moba/assets/anim/doushi11.anim.meta new file mode 100644 index 0000000..32ae190 --- /dev/null +++ b/cc_moba/assets/anim/doushi11.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "8cfab687-b79e-4af0-9220-4aa7dcd83393", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi12.anim b/cc_moba/assets/anim/doushi12.anim new file mode 100644 index 0000000..a4d187f --- /dev/null +++ b/cc_moba/assets/anim/doushi12.anim @@ -0,0 +1,55 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "doushi12", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1, + "sample": 6, + "speed": 1, + "wrapMode": 2, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "d81b88bc-daef-4dd6-9d90-79a10e8681a9" + } + }, + { + "frame": 0.16666666666666666, + "value": { + "__uuid__": "8fc41c2c-8972-46ba-b10e-81b3317fb070" + } + }, + { + "frame": 0.3333333333333333, + "value": { + "__uuid__": "1860ba73-5790-4127-9392-a6cb976510f0" + } + }, + { + "frame": 0.5, + "value": { + "__uuid__": "76d1d9e7-d54c-4dfa-bd40-8ee895696140" + } + }, + { + "frame": 0.6666666666666666, + "value": { + "__uuid__": "18c4b913-1f39-42f2-9a56-de692cea5107" + } + }, + { + "frame": 0.8333333333333334, + "value": { + "__uuid__": "954df6d7-6fdf-4827-8621-09a1e8e0f0db" + } + } + ] + } + } + }, + "events": [] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi12.anim.meta b/cc_moba/assets/anim/doushi12.anim.meta new file mode 100644 index 0000000..4527d23 --- /dev/null +++ b/cc_moba/assets/anim/doushi12.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "52c60e0c-5d4a-415b-abf0-94dd135a7a94", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi13.anim b/cc_moba/assets/anim/doushi13.anim new file mode 100644 index 0000000..08c8cc1 --- /dev/null +++ b/cc_moba/assets/anim/doushi13.anim @@ -0,0 +1,55 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "doushi13", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1, + "sample": 6, + "speed": 1, + "wrapMode": 2, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "132ca06c-a4f3-4965-a625-5858fe8b7a1b" + } + }, + { + "frame": 0.16666666666666666, + "value": { + "__uuid__": "47549470-1f0d-47fe-b2ca-2405d3a88603" + } + }, + { + "frame": 0.3333333333333333, + "value": { + "__uuid__": "5e4f8ba6-850e-4ec7-8e4b-9a96d422d861" + } + }, + { + "frame": 0.5, + "value": { + "__uuid__": "f8a3c57a-f7ca-47ff-aaa6-df84277bb749" + } + }, + { + "frame": 0.6666666666666666, + "value": { + "__uuid__": "eb387305-e98d-414f-9cdb-f7943f99bbb2" + } + }, + { + "frame": 0.8333333333333334, + "value": { + "__uuid__": "615b802a-1030-4b1a-b0f2-f701fcfdfefe" + } + } + ] + } + } + }, + "events": [] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi13.anim.meta b/cc_moba/assets/anim/doushi13.anim.meta new file mode 100644 index 0000000..9d5939b --- /dev/null +++ b/cc_moba/assets/anim/doushi13.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "b840d92b-4bd3-42ff-89c6-4a858be1027d", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi14.anim b/cc_moba/assets/anim/doushi14.anim new file mode 100644 index 0000000..d082c9f --- /dev/null +++ b/cc_moba/assets/anim/doushi14.anim @@ -0,0 +1,55 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "doushi14", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1, + "sample": 6, + "speed": 1, + "wrapMode": 2, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "261f0534-2c38-42c4-b823-db4d068a2967" + } + }, + { + "frame": 0.16666666666666666, + "value": { + "__uuid__": "25e629d6-eae4-425b-b678-e99cdf329b25" + } + }, + { + "frame": 0.3333333333333333, + "value": { + "__uuid__": "59475110-7dc2-4ce6-aa9e-cc44421d68ab" + } + }, + { + "frame": 0.5, + "value": { + "__uuid__": "dc487e01-7ec1-4865-883a-5a7c8f656c5d" + } + }, + { + "frame": 0.6666666666666666, + "value": { + "__uuid__": "b9da279e-57ed-40f8-9b96-b024423d6408" + } + }, + { + "frame": 0.8333333333333334, + "value": { + "__uuid__": "7bc31637-6394-4c87-a771-d569bded840c" + } + } + ] + } + } + }, + "events": [] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi14.anim.meta b/cc_moba/assets/anim/doushi14.anim.meta new file mode 100644 index 0000000..e19a064 --- /dev/null +++ b/cc_moba/assets/anim/doushi14.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "a4bbfa4e-4ec7-4a14-8948-d7e20ba540f6", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi15.anim b/cc_moba/assets/anim/doushi15.anim new file mode 100644 index 0000000..40af247 --- /dev/null +++ b/cc_moba/assets/anim/doushi15.anim @@ -0,0 +1,55 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "doushi15", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1, + "sample": 6, + "speed": 1, + "wrapMode": 2, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "51258b59-1865-4147-9774-448c49c7a19c" + } + }, + { + "frame": 0.16666666666666666, + "value": { + "__uuid__": "7d8318c1-f869-4f8d-90ce-233374a75bce" + } + }, + { + "frame": 0.3333333333333333, + "value": { + "__uuid__": "17dcc38d-262e-4477-a2f5-1f7deeee0251" + } + }, + { + "frame": 0.5, + "value": { + "__uuid__": "b11f1620-b261-4084-9ee8-2a1573020c93" + } + }, + { + "frame": 0.6666666666666666, + "value": { + "__uuid__": "0b33d289-ddde-4618-9663-5703f1238b84" + } + }, + { + "frame": 0.8333333333333334, + "value": { + "__uuid__": "2c72f33c-2301-41b1-8a1d-558cfe7401ad" + } + } + ] + } + } + }, + "events": [] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi15.anim.meta b/cc_moba/assets/anim/doushi15.anim.meta new file mode 100644 index 0000000..7b8b5e4 --- /dev/null +++ b/cc_moba/assets/anim/doushi15.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "7532cde0-bbcf-4e9a-a855-8ebdcb36b687", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi21.anim b/cc_moba/assets/anim/doushi21.anim new file mode 100644 index 0000000..ba6de7d --- /dev/null +++ b/cc_moba/assets/anim/doushi21.anim @@ -0,0 +1,67 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "doushi21", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1, + "sample": 7, + "speed": 1, + "wrapMode": 1, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "3c614a2c-a519-4d4f-b6b7-882083a1d9c9" + } + }, + { + "frame": 0.14285714285714285, + "value": { + "__uuid__": "b494b4e1-fdc6-4714-95bd-2ade38aaf11e" + } + }, + { + "frame": 0.2857142857142857, + "value": { + "__uuid__": "7d54f262-71a9-43fd-af2d-f50476e4a05b" + } + }, + { + "frame": 0.42857142857142855, + "value": { + "__uuid__": "faea002f-8f7d-4f26-bb81-8152ba7cdfa1" + } + }, + { + "frame": 0.5714285714285714, + "value": { + "__uuid__": "e1265caf-4ad4-4942-8f07-671b7da0dc9a" + } + }, + { + "frame": 0.7142857142857143, + "value": { + "__uuid__": "76ba8adb-820a-476b-98a6-666ccd847ce4" + } + }, + { + "frame": 0.8571428571428571, + "value": { + "__uuid__": "0ef53125-d64c-4b8d-ade2-7f381897c787" + } + } + ] + } + } + }, + "events": [ + { + "frame": 1, + "func": "idle", + "params": [] + } + ] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi21.anim.meta b/cc_moba/assets/anim/doushi21.anim.meta new file mode 100644 index 0000000..c06463e --- /dev/null +++ b/cc_moba/assets/anim/doushi21.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "f17b56ef-d0d9-42fc-b270-7395232c301e", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi22.anim b/cc_moba/assets/anim/doushi22.anim new file mode 100644 index 0000000..4aa9633 --- /dev/null +++ b/cc_moba/assets/anim/doushi22.anim @@ -0,0 +1,67 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "doushi22", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1, + "sample": 7, + "speed": 1, + "wrapMode": 1, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "2e7258e1-1069-4762-9d00-8db0bf8d0df3" + } + }, + { + "frame": 0.14285714285714285, + "value": { + "__uuid__": "53591dfe-5d68-47ef-8704-4d2f947f9b8a" + } + }, + { + "frame": 0.2857142857142857, + "value": { + "__uuid__": "7d5f818c-1d2d-4c0f-a931-70e367a07594" + } + }, + { + "frame": 0.42857142857142855, + "value": { + "__uuid__": "1e71d847-9081-44ae-8b63-190360755679" + } + }, + { + "frame": 0.5714285714285714, + "value": { + "__uuid__": "3ae064cc-d77f-4d05-ae17-ee6b694341a1" + } + }, + { + "frame": 0.7142857142857143, + "value": { + "__uuid__": "540b032b-c71d-4d18-afcc-42a70688d29b" + } + }, + { + "frame": 0.8571428571428571, + "value": { + "__uuid__": "6e50b7aa-ff3a-40b1-b9ac-88a8e25e4c98" + } + } + ] + } + } + }, + "events": [ + { + "frame": 1, + "func": "idle", + "params": [] + } + ] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi22.anim.meta b/cc_moba/assets/anim/doushi22.anim.meta new file mode 100644 index 0000000..37b4a18 --- /dev/null +++ b/cc_moba/assets/anim/doushi22.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "a58d4bef-cdd6-4ff1-b941-2cc19c8a2056", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi23.anim b/cc_moba/assets/anim/doushi23.anim new file mode 100644 index 0000000..5c303f4 --- /dev/null +++ b/cc_moba/assets/anim/doushi23.anim @@ -0,0 +1,67 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "doushi23", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1, + "sample": 7, + "speed": 1, + "wrapMode": 1, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "3bdaa68c-e045-4da9-ac67-111feb26ab25" + } + }, + { + "frame": 0.14285714285714285, + "value": { + "__uuid__": "f3f036de-dd68-4fd9-9585-7678396888d1" + } + }, + { + "frame": 0.2857142857142857, + "value": { + "__uuid__": "e719df71-4353-4c5f-8de8-e7f9a347779d" + } + }, + { + "frame": 0.42857142857142855, + "value": { + "__uuid__": "d1ffb449-0dfe-4e59-8a05-92c865e62fa5" + } + }, + { + "frame": 0.5714285714285714, + "value": { + "__uuid__": "0497e308-2507-48ac-87ff-8e57502d789d" + } + }, + { + "frame": 0.7142857142857143, + "value": { + "__uuid__": "77ac5e2d-b32c-4e56-bde2-425f9c172a89" + } + }, + { + "frame": 0.8571428571428571, + "value": { + "__uuid__": "829c3961-1b41-4d69-af75-f1e232f0741c" + } + } + ] + } + } + }, + "events": [ + { + "frame": 1, + "func": "idle", + "params": [] + } + ] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi23.anim.meta b/cc_moba/assets/anim/doushi23.anim.meta new file mode 100644 index 0000000..e8fdb14 --- /dev/null +++ b/cc_moba/assets/anim/doushi23.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "4d8dc775-3aa3-4994-bba8-6ad6d3996655", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi24.anim b/cc_moba/assets/anim/doushi24.anim new file mode 100644 index 0000000..51eae08 --- /dev/null +++ b/cc_moba/assets/anim/doushi24.anim @@ -0,0 +1,67 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "doushi24", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1, + "sample": 7, + "speed": 1, + "wrapMode": 1, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "b06c4592-bb82-4d11-a506-4ff02e9be848" + } + }, + { + "frame": 0.14285714285714285, + "value": { + "__uuid__": "dfc11aea-6700-40d5-90ce-41ea8982cd59" + } + }, + { + "frame": 0.2857142857142857, + "value": { + "__uuid__": "7f027aaa-66fe-47c8-8775-8a32e05f2745" + } + }, + { + "frame": 0.42857142857142855, + "value": { + "__uuid__": "75194cef-bef8-4ea1-97a8-d0ba20f0a6a5" + } + }, + { + "frame": 0.5714285714285714, + "value": { + "__uuid__": "82f93433-e832-40eb-9a4c-94631e071a74" + } + }, + { + "frame": 0.7142857142857143, + "value": { + "__uuid__": "192bf7cf-69b9-45d2-8ded-2b2620acd900" + } + }, + { + "frame": 0.8571428571428571, + "value": { + "__uuid__": "2ebdd29d-d3ee-4602-95fd-636cd01773bb" + } + } + ] + } + } + }, + "events": [ + { + "frame": 1, + "func": "idle", + "params": [] + } + ] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi24.anim.meta b/cc_moba/assets/anim/doushi24.anim.meta new file mode 100644 index 0000000..fc6f6a6 --- /dev/null +++ b/cc_moba/assets/anim/doushi24.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "d8724798-d194-476d-a975-8ac283cdf498", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi25.anim b/cc_moba/assets/anim/doushi25.anim new file mode 100644 index 0000000..ea1f134 --- /dev/null +++ b/cc_moba/assets/anim/doushi25.anim @@ -0,0 +1,67 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "doushi25", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1, + "sample": 7, + "speed": 1, + "wrapMode": 1, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "66522a80-c937-480f-b797-1a84a963398c" + } + }, + { + "frame": 0.14285714285714285, + "value": { + "__uuid__": "3557be2c-fb06-4d8d-98a0-59ab0a9c4fec" + } + }, + { + "frame": 0.2857142857142857, + "value": { + "__uuid__": "4e270a93-ffde-4b0b-85a5-d1a67ac6271e" + } + }, + { + "frame": 0.42857142857142855, + "value": { + "__uuid__": "6892c7a4-f662-4e97-a367-08e9a0ffb643" + } + }, + { + "frame": 0.5714285714285714, + "value": { + "__uuid__": "b6be8e59-b6b7-4979-b9ee-57a766492661" + } + }, + { + "frame": 0.7142857142857143, + "value": { + "__uuid__": "66f4d0fe-70ea-4b52-a362-42b6e838e840" + } + }, + { + "frame": 0.8571428571428571, + "value": { + "__uuid__": "043f423c-747c-40e3-b696-7d4ad9c61f26" + } + } + ] + } + } + }, + "events": [ + { + "frame": 1, + "func": "idle", + "params": [] + } + ] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi25.anim.meta b/cc_moba/assets/anim/doushi25.anim.meta new file mode 100644 index 0000000..56a9fc0 --- /dev/null +++ b/cc_moba/assets/anim/doushi25.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "ce609dd7-6ee2-448e-b475-934af3571ed0", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi31.anim b/cc_moba/assets/anim/doushi31.anim new file mode 100644 index 0000000..6a44f82 --- /dev/null +++ b/cc_moba/assets/anim/doushi31.anim @@ -0,0 +1,55 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "doushi31", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1, + "sample": 6, + "speed": 1, + "wrapMode": 2, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "2f0f78eb-d2fd-468f-8e8d-0485b10fa7e7" + } + }, + { + "frame": 0.16666666666666666, + "value": { + "__uuid__": "2d2adba1-2dfc-4b58-baa3-c62ab73cf6f2" + } + }, + { + "frame": 0.3333333333333333, + "value": { + "__uuid__": "0d2bbc4a-c462-4146-909f-2474e6dd2868" + } + }, + { + "frame": 0.5, + "value": { + "__uuid__": "a9ff2d80-9701-44d0-aa13-a21f97d67954" + } + }, + { + "frame": 0.6666666666666666, + "value": { + "__uuid__": "36c270a9-6b32-4122-a522-3321e6bd3b53" + } + }, + { + "frame": 0.8333333333333334, + "value": { + "__uuid__": "99424b1c-41f7-4fab-9405-ae4f813725bf" + } + } + ] + } + } + }, + "events": [] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi31.anim.meta b/cc_moba/assets/anim/doushi31.anim.meta new file mode 100644 index 0000000..6733c32 --- /dev/null +++ b/cc_moba/assets/anim/doushi31.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "a4277d13-d005-4ced-ba2f-72472ea3c386", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi32.anim b/cc_moba/assets/anim/doushi32.anim new file mode 100644 index 0000000..7cde26a --- /dev/null +++ b/cc_moba/assets/anim/doushi32.anim @@ -0,0 +1,55 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "doushi32", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1, + "sample": 6, + "speed": 1, + "wrapMode": 2, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "7319166c-355e-4a5b-97f2-ac1abea66048" + } + }, + { + "frame": 0.16666666666666666, + "value": { + "__uuid__": "ca490bac-8ca4-4f4a-8547-fc9c0f9e94fa" + } + }, + { + "frame": 0.3333333333333333, + "value": { + "__uuid__": "0d1ceb4f-358d-4481-8536-ceb7736212d0" + } + }, + { + "frame": 0.5, + "value": { + "__uuid__": "d3b18a88-e7b5-4d91-b76b-26e4c6b4935e" + } + }, + { + "frame": 0.6666666666666666, + "value": { + "__uuid__": "04035a08-533c-44cd-81b6-7989f24531ec" + } + }, + { + "frame": 0.8333333333333334, + "value": { + "__uuid__": "34b088e6-26a4-40ea-a4c0-f5afe41aef73" + } + } + ] + } + } + }, + "events": [] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi32.anim.meta b/cc_moba/assets/anim/doushi32.anim.meta new file mode 100644 index 0000000..8bdba99 --- /dev/null +++ b/cc_moba/assets/anim/doushi32.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "b5cd5056-173b-4d37-97b4-d67290d40b25", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi33.anim b/cc_moba/assets/anim/doushi33.anim new file mode 100644 index 0000000..718ed2c --- /dev/null +++ b/cc_moba/assets/anim/doushi33.anim @@ -0,0 +1,55 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "doushi33", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1, + "sample": 6, + "speed": 1, + "wrapMode": 2, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "63507811-97be-45e0-9c84-99653f777741" + } + }, + { + "frame": 0.16666666666666666, + "value": { + "__uuid__": "8b68753e-d0d3-4c75-8454-1469179807c0" + } + }, + { + "frame": 0.3333333333333333, + "value": { + "__uuid__": "977b6a20-8778-468b-9d94-7a4df4780b4b" + } + }, + { + "frame": 0.5, + "value": { + "__uuid__": "4f21163d-692e-44fd-86b5-db2cc7309d14" + } + }, + { + "frame": 0.6666666666666666, + "value": { + "__uuid__": "4500202e-d071-4906-bd4f-4696e77a504b" + } + }, + { + "frame": 0.8333333333333334, + "value": { + "__uuid__": "23872bad-385c-45fa-ba6d-7f7df1aa33d5" + } + } + ] + } + } + }, + "events": [] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi33.anim.meta b/cc_moba/assets/anim/doushi33.anim.meta new file mode 100644 index 0000000..72e094e --- /dev/null +++ b/cc_moba/assets/anim/doushi33.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "73f3db3b-b8e9-454a-9061-4bb463c21e94", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi34.anim b/cc_moba/assets/anim/doushi34.anim new file mode 100644 index 0000000..8281392 --- /dev/null +++ b/cc_moba/assets/anim/doushi34.anim @@ -0,0 +1,55 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "doushi34", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1, + "sample": 6, + "speed": 1, + "wrapMode": 2, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "b1807cb5-8281-400f-91c1-043ac6f439b0" + } + }, + { + "frame": 0.16666666666666666, + "value": { + "__uuid__": "4490540e-90df-4441-a43b-d3201a3ef6ae" + } + }, + { + "frame": 0.3333333333333333, + "value": { + "__uuid__": "2387e116-5879-4332-88f5-80792f9d3702" + } + }, + { + "frame": 0.5, + "value": { + "__uuid__": "33fb7695-8e6c-463f-b587-b9a70f014a1c" + } + }, + { + "frame": 0.6666666666666666, + "value": { + "__uuid__": "50bb9b89-21de-4dc1-b95b-645f9461de55" + } + }, + { + "frame": 0.8333333333333334, + "value": { + "__uuid__": "7e3901e9-a357-4fe2-8800-2cc68f26f038" + } + } + ] + } + } + }, + "events": [] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi34.anim.meta b/cc_moba/assets/anim/doushi34.anim.meta new file mode 100644 index 0000000..bebe9d0 --- /dev/null +++ b/cc_moba/assets/anim/doushi34.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "aca52b1a-0767-4c57-a59f-ebcebddfa944", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi35.anim b/cc_moba/assets/anim/doushi35.anim new file mode 100644 index 0000000..4b927a0 --- /dev/null +++ b/cc_moba/assets/anim/doushi35.anim @@ -0,0 +1,55 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "doushi35", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1, + "sample": 6, + "speed": 1, + "wrapMode": 2, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "34e75778-02e3-40bc-9572-6e08661226bf" + } + }, + { + "frame": 0.16666666666666666, + "value": { + "__uuid__": "c246cdd0-882e-4df5-affd-94b6ead5da3b" + } + }, + { + "frame": 0.3333333333333333, + "value": { + "__uuid__": "4b0dbd8a-e3a3-463f-8a9f-6133b92506c8" + } + }, + { + "frame": 0.5, + "value": { + "__uuid__": "6ba74fe6-2bc4-483d-a0f5-5095b7e443d6" + } + }, + { + "frame": 0.6666666666666666, + "value": { + "__uuid__": "7195fe31-fd81-4688-be22-965ff89360a6" + } + }, + { + "frame": 0.8333333333333334, + "value": { + "__uuid__": "86da8762-5ec5-4275-b6f2-faab3d636c4e" + } + } + ] + } + } + }, + "events": [] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/doushi35.anim.meta b/cc_moba/assets/anim/doushi35.anim.meta new file mode 100644 index 0000000..d1c94d8 --- /dev/null +++ b/cc_moba/assets/anim/doushi35.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "ac0d2578-6207-4591-ad0f-62010b67c334", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao11.anim b/cc_moba/assets/anim/xiao11.anim new file mode 100644 index 0000000..482d3f8 --- /dev/null +++ b/cc_moba/assets/anim/xiao11.anim @@ -0,0 +1,55 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "xiao11", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1, + "sample": 6, + "speed": 1, + "wrapMode": 2, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "f819869e-e791-4a72-9a6f-abdb130d0943" + } + }, + { + "frame": 0.16666666666666666, + "value": { + "__uuid__": "46aaf8bc-3950-457b-ba62-e9b71ffad28c" + } + }, + { + "frame": 0.3333333333333333, + "value": { + "__uuid__": "a870d41a-ab2e-4a99-a6e4-c2e9718d8df0" + } + }, + { + "frame": 0.5, + "value": { + "__uuid__": "88f64431-06e1-4420-ad3d-251fadcc57e3" + } + }, + { + "frame": 0.6666666666666666, + "value": { + "__uuid__": "0e4fe3f9-8b94-41b6-89a2-a1a3d023e5e6" + } + }, + { + "frame": 0.8333333333333334, + "value": { + "__uuid__": "2c55bd77-4c3a-4d75-8a62-654876d65c63" + } + } + ] + } + } + }, + "events": [] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao11.anim.meta b/cc_moba/assets/anim/xiao11.anim.meta new file mode 100644 index 0000000..e9e387b --- /dev/null +++ b/cc_moba/assets/anim/xiao11.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "3823d7bb-25be-477a-ac94-e4b245848efb", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao12.anim b/cc_moba/assets/anim/xiao12.anim new file mode 100644 index 0000000..85f4787 --- /dev/null +++ b/cc_moba/assets/anim/xiao12.anim @@ -0,0 +1,55 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "xiao12", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1.1666666666666667, + "sample": 6, + "speed": 1, + "wrapMode": 2, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0.16666666666666666, + "value": { + "__uuid__": "df5674eb-b55a-457c-870c-377f9ac2b69e" + } + }, + { + "frame": 0.3333333333333333, + "value": { + "__uuid__": "38acf828-8b25-41fc-aca0-c83a04989fd5" + } + }, + { + "frame": 0.5, + "value": { + "__uuid__": "c922a74c-9fbd-4c74-a9c3-28a10f585f7e" + } + }, + { + "frame": 0.6666666666666666, + "value": { + "__uuid__": "d9328cab-a389-48a1-ac4b-01ed35a43d1f" + } + }, + { + "frame": 0.8333333333333334, + "value": { + "__uuid__": "456931a7-2fb7-4a80-b831-6c3019e5a031" + } + }, + { + "frame": 1, + "value": { + "__uuid__": "dab625de-b17f-44b7-8cc7-6dcddc725f7e" + } + } + ] + } + } + }, + "events": [] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao12.anim.meta b/cc_moba/assets/anim/xiao12.anim.meta new file mode 100644 index 0000000..be4aed2 --- /dev/null +++ b/cc_moba/assets/anim/xiao12.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "51b51309-a8c1-4f07-a5f2-1090f35b23f4", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao13.anim b/cc_moba/assets/anim/xiao13.anim new file mode 100644 index 0000000..52fc6e1 --- /dev/null +++ b/cc_moba/assets/anim/xiao13.anim @@ -0,0 +1,55 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "xiao13", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1, + "sample": 6, + "speed": 1, + "wrapMode": 2, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "32489883-0044-42a6-9685-235158dc2dc4" + } + }, + { + "frame": 0.16666666666666666, + "value": { + "__uuid__": "d44f7551-e116-4de9-a73c-7dd9f36d0a0a" + } + }, + { + "frame": 0.3333333333333333, + "value": { + "__uuid__": "89f2d8ac-6ac2-4016-b665-177b6aa704b8" + } + }, + { + "frame": 0.5, + "value": { + "__uuid__": "b764ce6a-6f6a-4b1a-9bad-9a71549ee95b" + } + }, + { + "frame": 0.6666666666666666, + "value": { + "__uuid__": "5b98955b-497d-4057-8f41-dc81f7652491" + } + }, + { + "frame": 0.8333333333333334, + "value": { + "__uuid__": "c21a8804-d325-4857-9a9a-ebaad828c3ff" + } + } + ] + } + } + }, + "events": [] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao13.anim.meta b/cc_moba/assets/anim/xiao13.anim.meta new file mode 100644 index 0000000..147d353 --- /dev/null +++ b/cc_moba/assets/anim/xiao13.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "a811f10d-6ed1-4dfc-b212-037f3014df13", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao14.anim b/cc_moba/assets/anim/xiao14.anim new file mode 100644 index 0000000..8f6c0f1 --- /dev/null +++ b/cc_moba/assets/anim/xiao14.anim @@ -0,0 +1,55 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "xiao14", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1, + "sample": 6, + "speed": 1, + "wrapMode": 2, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "ac6dfdfb-3591-47a4-8133-ee69a7d59513" + } + }, + { + "frame": 0.16666666666666666, + "value": { + "__uuid__": "a501d7bb-e187-4676-baca-c1dfaaca5fdd" + } + }, + { + "frame": 0.3333333333333333, + "value": { + "__uuid__": "efd7d9e3-e74c-4042-b9ed-27f4bc43bae3" + } + }, + { + "frame": 0.5, + "value": { + "__uuid__": "cb50a6df-fd5d-48df-a2e0-35e666c896c4" + } + }, + { + "frame": 0.6666666666666666, + "value": { + "__uuid__": "bf8923cc-6481-4b3f-b387-de051639edf6" + } + }, + { + "frame": 0.8333333333333334, + "value": { + "__uuid__": "23ea92ae-f005-40db-a72e-afbb8596b55d" + } + } + ] + } + } + }, + "events": [] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao14.anim.meta b/cc_moba/assets/anim/xiao14.anim.meta new file mode 100644 index 0000000..f22c761 --- /dev/null +++ b/cc_moba/assets/anim/xiao14.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "4540b9b8-f27c-4d1a-abc4-e2eff694fdc1", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao15.anim b/cc_moba/assets/anim/xiao15.anim new file mode 100644 index 0000000..6582e00 --- /dev/null +++ b/cc_moba/assets/anim/xiao15.anim @@ -0,0 +1,55 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "xiao15", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1, + "sample": 6, + "speed": 1, + "wrapMode": 2, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "233f1138-ad6c-47d4-ba99-81ccaaa4875f" + } + }, + { + "frame": 0.16666666666666666, + "value": { + "__uuid__": "daa8b0af-e2ac-4898-91e8-cafef3f903d8" + } + }, + { + "frame": 0.3333333333333333, + "value": { + "__uuid__": "06b89ee8-36b4-4f74-8321-b7b76d32321f" + } + }, + { + "frame": 0.5, + "value": { + "__uuid__": "8958cb08-7c9f-45f0-ae28-62c608286c4e" + } + }, + { + "frame": 0.6666666666666666, + "value": { + "__uuid__": "26842df2-471b-4f40-abfa-8f89c2c595e3" + } + }, + { + "frame": 0.8333333333333334, + "value": { + "__uuid__": "e2a387bd-342a-4133-aec9-2cf83afe00a2" + } + } + ] + } + } + }, + "events": [] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao15.anim.meta b/cc_moba/assets/anim/xiao15.anim.meta new file mode 100644 index 0000000..475cedd --- /dev/null +++ b/cc_moba/assets/anim/xiao15.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "e91b018f-7fd7-4276-9e24-47aeba8d7dce", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao21.anim b/cc_moba/assets/anim/xiao21.anim new file mode 100644 index 0000000..ea2c473 --- /dev/null +++ b/cc_moba/assets/anim/xiao21.anim @@ -0,0 +1,62 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "xiao21", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1, + "sample": 6, + "speed": 1, + "wrapMode": 0, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "f5d9846f-2959-40b3-accf-e37a8effa48d" + } + }, + { + "frame": 0.16666666666666666, + "value": { + "__uuid__": "1130b27e-d22c-49c4-8937-557523d0fda0" + } + }, + { + "frame": 0.3333333333333333, + "value": { + "__uuid__": "f5843588-edad-4f8b-ba1f-1460b45dfdc8" + } + }, + { + "frame": 0.5, + "value": { + "__uuid__": "4ce82255-445a-4239-b9a1-725bf354391a" + } + }, + { + "frame": 0.6666666666666666, + "value": { + "__uuid__": "1332abe3-7943-4b98-a340-6c428ed3403f" + } + }, + { + "frame": 0.8333333333333334, + "value": { + "__uuid__": "1156e667-613b-46a2-8317-c99e4eb979bf" + } + } + ] + }, + "global": {} + } + }, + "events": [ + { + "frame": 1, + "func": "idle", + "params": [] + } + ] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao21.anim.meta b/cc_moba/assets/anim/xiao21.anim.meta new file mode 100644 index 0000000..a24f4a1 --- /dev/null +++ b/cc_moba/assets/anim/xiao21.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "9b139300-141a-4776-b573-cd6cf6188dc5", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao22.anim b/cc_moba/assets/anim/xiao22.anim new file mode 100644 index 0000000..a9cfe13 --- /dev/null +++ b/cc_moba/assets/anim/xiao22.anim @@ -0,0 +1,61 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "xiao22", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1, + "sample": 6, + "speed": 1, + "wrapMode": 1, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "f5d9846f-2959-40b3-accf-e37a8effa48d" + } + }, + { + "frame": 0.16666666666666666, + "value": { + "__uuid__": "1130b27e-d22c-49c4-8937-557523d0fda0" + } + }, + { + "frame": 0.3333333333333333, + "value": { + "__uuid__": "f5843588-edad-4f8b-ba1f-1460b45dfdc8" + } + }, + { + "frame": 0.5, + "value": { + "__uuid__": "4ce82255-445a-4239-b9a1-725bf354391a" + } + }, + { + "frame": 0.6666666666666666, + "value": { + "__uuid__": "1332abe3-7943-4b98-a340-6c428ed3403f" + } + }, + { + "frame": 0.8333333333333334, + "value": { + "__uuid__": "1156e667-613b-46a2-8317-c99e4eb979bf" + } + } + ] + } + } + }, + "events": [ + { + "frame": 1, + "func": "idle", + "params": [] + } + ] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao22.anim.meta b/cc_moba/assets/anim/xiao22.anim.meta new file mode 100644 index 0000000..ab62bcb --- /dev/null +++ b/cc_moba/assets/anim/xiao22.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "2ac501fc-ef23-49fe-b8c7-f5e551b8599e", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao23.anim b/cc_moba/assets/anim/xiao23.anim new file mode 100644 index 0000000..d027672 --- /dev/null +++ b/cc_moba/assets/anim/xiao23.anim @@ -0,0 +1,61 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "xiao23", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1, + "sample": 6, + "speed": 1, + "wrapMode": 1, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "a1b7776b-2535-4909-a75b-9897f1d74550" + } + }, + { + "frame": 0.16666666666666666, + "value": { + "__uuid__": "c08d7924-1c78-4d33-94cd-de929f9a4257" + } + }, + { + "frame": 0.3333333333333333, + "value": { + "__uuid__": "df823eb8-cce0-45c8-8790-7bda3db71204" + } + }, + { + "frame": 0.5, + "value": { + "__uuid__": "4d7f7110-fa87-4c14-83c1-aa658e0b9a10" + } + }, + { + "frame": 0.6666666666666666, + "value": { + "__uuid__": "b893c976-4948-43d6-9deb-b0f8c923c202" + } + }, + { + "frame": 0.8333333333333334, + "value": { + "__uuid__": "136eb1ea-c563-4a4a-9736-02014b591e4e" + } + } + ] + } + } + }, + "events": [ + { + "frame": 1, + "func": "idle", + "params": [] + } + ] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao23.anim.meta b/cc_moba/assets/anim/xiao23.anim.meta new file mode 100644 index 0000000..19fb840 --- /dev/null +++ b/cc_moba/assets/anim/xiao23.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "43ee7663-a231-4dbd-be7e-d515c1ff23db", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao24.anim b/cc_moba/assets/anim/xiao24.anim new file mode 100644 index 0000000..f85f475 --- /dev/null +++ b/cc_moba/assets/anim/xiao24.anim @@ -0,0 +1,61 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "xiao24", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1, + "sample": 6, + "speed": 1, + "wrapMode": 1, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "88d5b3d5-1e72-427a-ab69-88639f01ba21" + } + }, + { + "frame": 0.16666666666666666, + "value": { + "__uuid__": "780e8c39-f22e-4050-8f04-d06b95f3e0da" + } + }, + { + "frame": 0.3333333333333333, + "value": { + "__uuid__": "0daac86e-3843-4c05-ba3a-bcb598ebbf73" + } + }, + { + "frame": 0.5, + "value": { + "__uuid__": "f7a10aff-0e3b-4a27-87d9-d232e1ce65bd" + } + }, + { + "frame": 0.6666666666666666, + "value": { + "__uuid__": "a262271d-4484-484a-a1f2-ea3225e48d0b" + } + }, + { + "frame": 0.8333333333333334, + "value": { + "__uuid__": "1637b01d-21a0-4392-80d4-52a8902db184" + } + } + ] + } + } + }, + "events": [ + { + "frame": 1, + "func": "idle", + "params": [] + } + ] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao24.anim.meta b/cc_moba/assets/anim/xiao24.anim.meta new file mode 100644 index 0000000..0f62c4e --- /dev/null +++ b/cc_moba/assets/anim/xiao24.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "9d9b1c47-77e7-4205-bec8-a47477c109fb", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao25.anim b/cc_moba/assets/anim/xiao25.anim new file mode 100644 index 0000000..f0e9863 --- /dev/null +++ b/cc_moba/assets/anim/xiao25.anim @@ -0,0 +1,61 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "xiao25", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1, + "sample": 6, + "speed": 1, + "wrapMode": 1, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "ee34642e-dcf2-41b9-93bb-dafca6000d61" + } + }, + { + "frame": 0.16666666666666666, + "value": { + "__uuid__": "06afa532-2df0-4312-ba58-5ff199ae906c" + } + }, + { + "frame": 0.3333333333333333, + "value": { + "__uuid__": "275b1a0f-036f-43ae-8bea-559c34468024" + } + }, + { + "frame": 0.5, + "value": { + "__uuid__": "d15d25ac-429e-4723-9477-bb94c160faca" + } + }, + { + "frame": 0.6666666666666666, + "value": { + "__uuid__": "d6569e1c-85a4-4524-9ae5-5135f8f29a7f" + } + }, + { + "frame": 0.8333333333333334, + "value": { + "__uuid__": "50a5c246-6ae1-43ad-9995-3bf1af8f2767" + } + } + ] + } + } + }, + "events": [ + { + "frame": 1, + "func": "idle", + "params": [] + } + ] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao25.anim.meta b/cc_moba/assets/anim/xiao25.anim.meta new file mode 100644 index 0000000..45ee537 --- /dev/null +++ b/cc_moba/assets/anim/xiao25.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "048817dc-acf5-435a-804a-01d275e4ab9f", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao31.anim b/cc_moba/assets/anim/xiao31.anim new file mode 100644 index 0000000..2179e26 --- /dev/null +++ b/cc_moba/assets/anim/xiao31.anim @@ -0,0 +1,61 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "xiao31", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1.1666666666666667, + "sample": 6, + "speed": 1, + "wrapMode": 2, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "0fd1ffd3-8031-4b43-8ecb-69283e8376f1" + } + }, + { + "frame": 0.16666666666666666, + "value": { + "__uuid__": "4636dd54-32c7-41c3-b87a-2cc7561aac35" + } + }, + { + "frame": 0.3333333333333333, + "value": { + "__uuid__": "8d596e64-8656-4b11-87b3-dfad0bd8ae94" + } + }, + { + "frame": 0.5, + "value": { + "__uuid__": "37b73f02-341c-43c7-84f3-7ccb37245aeb" + } + }, + { + "frame": 0.6666666666666666, + "value": { + "__uuid__": "1e76c937-b751-4f1f-8481-cff21b857863" + } + }, + { + "frame": 0.8333333333333334, + "value": { + "__uuid__": "6d565e76-9d98-44f4-83ad-d6965db6244b" + } + }, + { + "frame": 1, + "value": { + "__uuid__": "e0697db6-760b-4cca-9603-d48f764c4af8" + } + } + ] + } + } + }, + "events": [] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao31.anim.meta b/cc_moba/assets/anim/xiao31.anim.meta new file mode 100644 index 0000000..0345518 --- /dev/null +++ b/cc_moba/assets/anim/xiao31.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "66892253-49af-48f5-9310-ca65276010c8", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao32.anim b/cc_moba/assets/anim/xiao32.anim new file mode 100644 index 0000000..e02211d --- /dev/null +++ b/cc_moba/assets/anim/xiao32.anim @@ -0,0 +1,67 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "xiao32", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1, + "sample": 8, + "speed": 1, + "wrapMode": 2, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "9f2cf849-c20e-4c86-bb35-0c52ff20f85f" + } + }, + { + "frame": 0.125, + "value": { + "__uuid__": "d20784fd-8676-4689-9dda-8c045b06ede3" + } + }, + { + "frame": 0.25, + "value": { + "__uuid__": "78891935-5f0e-4e04-b261-05a36ad92c87" + } + }, + { + "frame": 0.375, + "value": { + "__uuid__": "a8a5f369-70d9-462a-82c2-aee7bf180449" + } + }, + { + "frame": 0.5, + "value": { + "__uuid__": "3527244f-69bf-46ae-8e89-931d36f6ce1d" + } + }, + { + "frame": 0.625, + "value": { + "__uuid__": "90651f3e-1bd4-4188-867e-258b046d1e21" + } + }, + { + "frame": 0.75, + "value": { + "__uuid__": "98d38311-35d6-4ef8-8b17-43904d615207" + } + }, + { + "frame": 0.875, + "value": { + "__uuid__": "380eb3d6-a7f6-44ea-9b53-1d29cd739a45" + } + } + ] + } + } + }, + "events": [] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao32.anim.meta b/cc_moba/assets/anim/xiao32.anim.meta new file mode 100644 index 0000000..f4b05b1 --- /dev/null +++ b/cc_moba/assets/anim/xiao32.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "2ad010d6-522b-49f3-91eb-f33ccf094d1a", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao33.anim b/cc_moba/assets/anim/xiao33.anim new file mode 100644 index 0000000..ac9a014 --- /dev/null +++ b/cc_moba/assets/anim/xiao33.anim @@ -0,0 +1,67 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "xiao33", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1, + "sample": 8, + "speed": 1, + "wrapMode": 2, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "229ce72c-9cd8-4f14-85f6-e8e30e397624" + } + }, + { + "frame": 0.125, + "value": { + "__uuid__": "ee90cb89-dafe-4134-a7ed-bdbe4a996dae" + } + }, + { + "frame": 0.25, + "value": { + "__uuid__": "f611b513-51ae-429d-9f57-07e02b42ec85" + } + }, + { + "frame": 0.375, + "value": { + "__uuid__": "4ab2fa84-bc55-4a64-93dd-7c8208d82085" + } + }, + { + "frame": 0.5, + "value": { + "__uuid__": "355eb227-f9af-4f79-879e-1577d6a1136d" + } + }, + { + "frame": 0.625, + "value": { + "__uuid__": "841ac5f8-d084-4250-a927-738e4a36923a" + } + }, + { + "frame": 0.75, + "value": { + "__uuid__": "795fde66-6f0c-40b3-8a00-6b805f2efef3" + } + }, + { + "frame": 0.875, + "value": { + "__uuid__": "8d201533-82a2-4a45-b717-16a72f984691" + } + } + ] + } + } + }, + "events": [] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao33.anim.meta b/cc_moba/assets/anim/xiao33.anim.meta new file mode 100644 index 0000000..b70bb2b --- /dev/null +++ b/cc_moba/assets/anim/xiao33.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "faed4592-bc04-418c-9126-687c27535ac7", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao34.anim b/cc_moba/assets/anim/xiao34.anim new file mode 100644 index 0000000..d9199c7 --- /dev/null +++ b/cc_moba/assets/anim/xiao34.anim @@ -0,0 +1,67 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "xiao34", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1, + "sample": 8, + "speed": 1, + "wrapMode": 2, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "b760982f-9e3c-496f-bcfc-eecb4c1160f4" + } + }, + { + "frame": 0.125, + "value": { + "__uuid__": "5ccba57a-b32c-4ddf-b102-5ebecafdf0bc" + } + }, + { + "frame": 0.25, + "value": { + "__uuid__": "b0b1596b-7f51-4717-89f2-45b79dcd23f6" + } + }, + { + "frame": 0.375, + "value": { + "__uuid__": "3a4f2ead-8a05-4c10-950c-d1ea5024e153" + } + }, + { + "frame": 0.5, + "value": { + "__uuid__": "0291cc87-661e-4cca-9c93-0df1b92057e9" + } + }, + { + "frame": 0.625, + "value": { + "__uuid__": "5ef862cd-ed94-4356-add9-d22805544059" + } + }, + { + "frame": 0.75, + "value": { + "__uuid__": "2b2752d5-d3b4-407a-ad03-84b9422a1a0a" + } + }, + { + "frame": 0.875, + "value": { + "__uuid__": "2c233548-84ef-4415-80e7-4801406ffead" + } + } + ] + } + } + }, + "events": [] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao34.anim.meta b/cc_moba/assets/anim/xiao34.anim.meta new file mode 100644 index 0000000..dc4ab46 --- /dev/null +++ b/cc_moba/assets/anim/xiao34.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "0a05e14b-3209-4e84-a87d-19f03ed9c920", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao35.anim b/cc_moba/assets/anim/xiao35.anim new file mode 100644 index 0000000..8272f67 --- /dev/null +++ b/cc_moba/assets/anim/xiao35.anim @@ -0,0 +1,67 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "xiao35", + "_objFlags": 0, + "_rawFiles": null, + "_duration": 1, + "sample": 8, + "speed": 1, + "wrapMode": 2, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "489db2c7-20fb-4a09-934d-d7f7ec04da60" + } + }, + { + "frame": 0.125, + "value": { + "__uuid__": "c0973a5d-f4cf-4d75-8e3e-97d68ac9acf9" + } + }, + { + "frame": 0.25, + "value": { + "__uuid__": "ff210acc-971c-4c98-91c3-b1fb4a3fd7fc" + } + }, + { + "frame": 0.375, + "value": { + "__uuid__": "c5305cea-0efc-4592-878c-624e1ee523fa" + } + }, + { + "frame": 0.5, + "value": { + "__uuid__": "aaa32f73-35fe-4c1a-8ede-3f0ddd61b2a0" + } + }, + { + "frame": 0.625, + "value": { + "__uuid__": "4d892ef1-4850-4233-a4c0-e0f8e67a18f8" + } + }, + { + "frame": 0.75, + "value": { + "__uuid__": "be4cae01-ba06-4d6d-bf5e-93f3ac92a84e" + } + }, + { + "frame": 0.875, + "value": { + "__uuid__": "05658697-9ca5-44e0-ab48-f741de8e4b1b" + } + } + ] + } + } + }, + "events": [] +} \ No newline at end of file diff --git a/cc_moba/assets/anim/xiao35.anim.meta b/cc_moba/assets/anim/xiao35.anim.meta new file mode 100644 index 0000000..8fcf108 --- /dev/null +++ b/cc_moba/assets/anim/xiao35.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "321bc8d0-c5f0-45b9-b425-69d410fb168e", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/img.meta b/cc_moba/assets/img.meta new file mode 100644 index 0000000..127ba2c --- /dev/null +++ b/cc_moba/assets/img.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "471969d5-8429-4c68-a104-902aa1288426", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/img/143.jpg b/cc_moba/assets/img/143.jpg new file mode 100644 index 0000000..06af531 Binary files /dev/null and b/cc_moba/assets/img/143.jpg differ diff --git a/cc_moba/assets/img/143.jpg.meta b/cc_moba/assets/img/143.jpg.meta new file mode 100644 index 0000000..acc93be --- /dev/null +++ b/cc_moba/assets/img/143.jpg.meta @@ -0,0 +1,30 @@ +{ + "ver": "1.0.0", + "uuid": "323c0ea7-3ea4-4d95-bc52-433ac355bcac", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "subMetas": { + "143": { + "ver": "1.0.3", + "uuid": "d66b929c-d538-4d49-92bf-d673363a55d4", + "rawTextureUuid": "323c0ea7-3ea4-4d95-bc52-433ac355bcac", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 78, + "height": 78, + "rawWidth": 78, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/img/191.jpg b/cc_moba/assets/img/191.jpg new file mode 100644 index 0000000..35930d3 Binary files /dev/null and b/cc_moba/assets/img/191.jpg differ diff --git a/cc_moba/assets/img/191.jpg.meta b/cc_moba/assets/img/191.jpg.meta new file mode 100644 index 0000000..406a21f --- /dev/null +++ b/cc_moba/assets/img/191.jpg.meta @@ -0,0 +1,30 @@ +{ + "ver": "1.0.0", + "uuid": "74f41c62-7ea1-4e4f-a604-f16ebb8254ec", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "subMetas": { + "191": { + "ver": "1.0.3", + "uuid": "fc5b1ff1-20dd-4d1b-8d57-908dd1968d35", + "rawTextureUuid": "74f41c62-7ea1-4e4f-a604-f16ebb8254ec", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 78, + "height": 78, + "rawWidth": 78, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/img/197.jpg b/cc_moba/assets/img/197.jpg new file mode 100644 index 0000000..cb708bd Binary files /dev/null and b/cc_moba/assets/img/197.jpg differ diff --git a/cc_moba/assets/img/197.jpg.meta b/cc_moba/assets/img/197.jpg.meta new file mode 100644 index 0000000..e171756 --- /dev/null +++ b/cc_moba/assets/img/197.jpg.meta @@ -0,0 +1,30 @@ +{ + "ver": "1.0.0", + "uuid": "15236d3b-5f53-4e3a-8dee-3d7ba7357091", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "subMetas": { + "197": { + "ver": "1.0.3", + "uuid": "eb099fc5-9049-4204-a43b-ee54245ee515", + "rawTextureUuid": "15236d3b-5f53-4e3a-8dee-3d7ba7357091", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 78, + "height": 78, + "rawWidth": 78, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/img/204.jpg b/cc_moba/assets/img/204.jpg new file mode 100644 index 0000000..5d5b410 Binary files /dev/null and b/cc_moba/assets/img/204.jpg differ diff --git a/cc_moba/assets/img/204.jpg.meta b/cc_moba/assets/img/204.jpg.meta new file mode 100644 index 0000000..40cb094 --- /dev/null +++ b/cc_moba/assets/img/204.jpg.meta @@ -0,0 +1,30 @@ +{ + "ver": "1.0.0", + "uuid": "c44d2d2d-e975-4214-b892-960cce2fe8ba", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "subMetas": { + "204": { + "ver": "1.0.3", + "uuid": "bc309455-833a-4701-8b06-c9ad02257119", + "rawTextureUuid": "c44d2d2d-e975-4214-b892-960cce2fe8ba", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 78, + "height": 78, + "rawWidth": 78, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/img/btn_green_middle_normal.png b/cc_moba/assets/img/btn_green_middle_normal.png new file mode 100644 index 0000000..96f7244 Binary files /dev/null and b/cc_moba/assets/img/btn_green_middle_normal.png differ diff --git a/cc_moba/assets/img/btn_green_middle_normal.png.meta b/cc_moba/assets/img/btn_green_middle_normal.png.meta new file mode 100644 index 0000000..25b5721 --- /dev/null +++ b/cc_moba/assets/img/btn_green_middle_normal.png.meta @@ -0,0 +1,30 @@ +{ + "ver": "1.0.0", + "uuid": "8cd3b332-446f-43b0-82ad-fa87406c4108", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "subMetas": { + "btn_green_middle_normal": { + "ver": "1.0.3", + "uuid": "7edbbac5-01fb-426f-8610-0544dbf81cc8", + "rawTextureUuid": "8cd3b332-446f-43b0-82ad-fa87406c4108", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 230, + "height": 84, + "rawWidth": 230, + "rawHeight": 84, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/img/btn_green_middle_press.png b/cc_moba/assets/img/btn_green_middle_press.png new file mode 100644 index 0000000..1b99cb1 Binary files /dev/null and b/cc_moba/assets/img/btn_green_middle_press.png differ diff --git a/cc_moba/assets/img/btn_green_middle_press.png.meta b/cc_moba/assets/img/btn_green_middle_press.png.meta new file mode 100644 index 0000000..587a024 --- /dev/null +++ b/cc_moba/assets/img/btn_green_middle_press.png.meta @@ -0,0 +1,30 @@ +{ + "ver": "1.0.0", + "uuid": "2939de74-52d5-4284-a569-2e71bf1c1ead", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "subMetas": { + "btn_green_middle_press": { + "ver": "1.0.3", + "uuid": "09370396-2114-4830-ab80-2c3ca4fd736a", + "rawTextureUuid": "2939de74-52d5-4284-a569-2e71bf1c1ead", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 230, + "height": 84, + "rawWidth": 230, + "rawHeight": 84, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/img/choosebox_bg.png b/cc_moba/assets/img/choosebox_bg.png new file mode 100644 index 0000000..7647ff4 Binary files /dev/null and b/cc_moba/assets/img/choosebox_bg.png differ diff --git a/cc_moba/assets/img/choosebox_bg.png.meta b/cc_moba/assets/img/choosebox_bg.png.meta new file mode 100644 index 0000000..29146fc --- /dev/null +++ b/cc_moba/assets/img/choosebox_bg.png.meta @@ -0,0 +1,30 @@ +{ + "ver": "1.0.0", + "uuid": "c37c1341-32a3-4539-9180-7cd614262877", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "subMetas": { + "choosebox_bg": { + "ver": "1.0.3", + "uuid": "bbe13169-49a2-41bd-9631-f25b26214960", + "rawTextureUuid": "c37c1341-32a3-4539-9180-7cd614262877", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 253, + "height": 111, + "rawWidth": 253, + "rawHeight": 111, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/img/def.jpg b/cc_moba/assets/img/def.jpg new file mode 100644 index 0000000..7a1401a Binary files /dev/null and b/cc_moba/assets/img/def.jpg differ diff --git a/cc_moba/assets/img/def.jpg.meta b/cc_moba/assets/img/def.jpg.meta new file mode 100644 index 0000000..f150b72 --- /dev/null +++ b/cc_moba/assets/img/def.jpg.meta @@ -0,0 +1,30 @@ +{ + "ver": "1.0.0", + "uuid": "62007d95-dd89-4742-867d-970b557605bb", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "subMetas": { + "def": { + "ver": "1.0.3", + "uuid": "3b0d10e6-7d07-4172-888c-53eaa100bef3", + "rawTextureUuid": "62007d95-dd89-4742-867d-970b557605bb", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 64, + "height": 64, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/img/doushi.plist b/cc_moba/assets/img/doushi.plist new file mode 100644 index 0000000..17bd2a6 --- /dev/null +++ b/cc_moba/assets/img/doushi.plist @@ -0,0 +1,1257 @@ + + + + + frames + + 100.png.pvr.png + + frame + {{770,354},{78,76}} + offset + {-24,24} + rotated + + sourceColorRect + {{1,2},{78,76}} + sourceSize + {128,128} + + 101.png.pvr.png + + frame + {{850,420},{76,78}} + offset + {-24,24} + rotated + + sourceColorRect + {{2,1},{76,78}} + sourceSize + {128,128} + + 102.png.pvr.png + + frame + {{620,352},{78,76}} + offset + {-24,24} + rotated + + sourceColorRect + {{1,2},{78,76}} + sourceSize + {128,128} + + 103.png.pvr.png + + frame + {{2,534},{78,76}} + offset + {-23,25} + rotated + + sourceColorRect + {{2,1},{78,76}} + sourceSize + {128,128} + + 104.png.pvr.png + + frame + {{850,498},{78,74}} + offset + {-23,25} + rotated + + sourceColorRect + {{2,2},{78,74}} + sourceSize + {128,128} + + 105.png.pvr.png + + frame + {{930,466},{78,74}} + offset + {-23,25} + rotated + + sourceColorRect + {{2,2},{78,74}} + sourceSize + {128,128} + + 110.png.pvr.png + + frame + {{268,276},{42,84}} + offset + {-10,20} + rotated + + sourceColorRect + {{1,2},{42,84}} + sourceSize + {64,128} + + 111.png.pvr.png + + frame + {{182,268},{42,84}} + offset + {-9,20} + rotated + + sourceColorRect + {{2,2},{42,84}} + sourceSize + {64,128} + + 112.png.pvr.png + + frame + {{256,364},{42,82}} + offset + {-10,21} + rotated + + sourceColorRect + {{1,2},{42,82}} + sourceSize + {64,128} + + 113.png.pvr.png + + frame + {{256,320},{42,82}} + offset + {-9,21} + rotated + + sourceColorRect + {{2,2},{42,82}} + sourceSize + {64,128} + + 114.png.pvr.png + + frame + {{2,426},{42,82}} + offset + {-9,21} + rotated + + sourceColorRect + {{2,2},{42,82}} + sourceSize + {64,128} + + 115.png.pvr.png + + frame + {{972,206},{42,84}} + offset + {-10,21} + rotated + + sourceColorRect + {{1,1},{42,84}} + sourceSize + {64,128} + + 120.png.pvr.png + + frame + {{500,452},{74,76}} + offset + {-25,25} + rotated + + sourceColorRect + {{2,1},{74,76}} + sourceSize + {128,128} + + 121.png.pvr.png + + frame + {{2,612},{74,76}} + offset + {-25,25} + rotated + + sourceColorRect + {{2,1},{74,76}} + sourceSize + {128,128} + + 122.png.pvr.png + + frame + {{326,536},{74,74}} + offset + {-25,25} + rotated + + sourceColorRect + {{2,2},{74,74}} + sourceSize + {128,128} + + 123.png.pvr.png + + frame + {{160,612},{72,74}} + offset + {-26,26} + rotated + + sourceColorRect + {{2,1},{72,74}} + sourceSize + {128,128} + + 124.png.pvr.png + + frame + {{242,564},{72,74}} + offset + {-27,26} + rotated + + sourceColorRect + {{1,1},{72,74}} + sourceSize + {128,128} + + 125.png.pvr.png + + frame + {{410,468},{74,74}} + offset + {-26,25} + rotated + + sourceColorRect + {{1,2},{74,74}} + sourceSize + {128,128} + + 130.png.pvr.png + + frame + {{462,134},{90,72}} + offset + {-18,26} + rotated + + sourceColorRect + {{1,2},{90,72}} + sourceSize + {128,128} + + 131.png.pvr.png + + frame + {{590,88},{90,72}} + offset + {-17,26} + rotated + + sourceColorRect + {{2,2},{90,72}} + sourceSize + {128,128} + + 132.png.pvr.png + + frame + {{700,58},{90,72}} + offset + {-17,27} + rotated + + sourceColorRect + {{2,1},{90,72}} + sourceSize + {128,128} + + 133.png.pvr.png + + frame + {{358,160},{90,70}} + offset + {-18,27} + rotated + + sourceColorRect + {{1,2},{90,70}} + sourceSize + {128,128} + + 134.png.pvr.png + + frame + {{772,200},{88,70}} + offset + {-18,27} + rotated + + sourceColorRect + {{2,2},{88,70}} + sourceSize + {128,128} + + 135.png.pvr.png + + frame + {{450,208},{88,72}} + offset + {-18,27} + rotated + + sourceColorRect + {{2,1},{88,72}} + sourceSize + {128,128} + + 140.png.pvr.png + + frame + {{164,534},{76,76}} + offset + {-24,24} + rotated + + sourceColorRect + {{2,2},{76,76}} + sourceSize + {128,128} + + 141.png.pvr.png + + frame + {{248,486},{76,76}} + offset + {-24,24} + rotated + + sourceColorRect + {{2,2},{76,76}} + sourceSize + {128,128} + + 142.png.pvr.png + + frame + {{84,504},{78,76}} + offset + {-24,25} + rotated + + sourceColorRect + {{1,1},{78,76}} + sourceSize + {128,128} + + 143.png.pvr.png + + frame + {{770,432},{78,74}} + offset + {-23,25} + rotated + + sourceColorRect + {{2,2},{78,74}} + sourceSize + {128,128} + + 144.png.pvr.png + + frame + {{168,456},{78,76}} + offset + {-23,25} + rotated + + sourceColorRect + {{2,1},{78,76}} + sourceSize + {128,128} + + 145.png.pvr.png + + frame + {{252,408},{78,76}} + offset + {-23,24} + rotated + + sourceColorRect + {{2,2},{78,76}} + sourceSize + {128,128} + + 200.png.pvr.png + + frame + {{446,282},{86,62}} + offset + {-19,31} + rotated + + sourceColorRect + {{2,2},{86,62}} + sourceSize + {128,128} + + 201.png.pvr.png + + frame + {{882,198},{88,70}} + offset + {-18,28} + rotated + + sourceColorRect + {{2,1},{88,70}} + sourceSize + {128,128} + + 202.png.pvr.png + + frame + {{882,126},{88,70}} + offset + {-18,27} + rotated + + sourceColorRect + {{2,2},{88,70}} + sourceSize + {128,128} + + 203.png.pvr.png + + frame + {{862,270},{88,68}} + offset + {-18,29} + rotated + + sourceColorRect + {{2,1},{88,68}} + sourceSize + {128,128} + + 204.png.pvr.png + + frame + {{952,292},{86,70}} + offset + {-19,28} + rotated + + sourceColorRect + {{2,1},{86,70}} + sourceSize + {128,128} + + 205.png.pvr.png + + frame + {{358,232},{86,72}} + offset + {-20,27} + rotated + + sourceColorRect + {{1,1},{86,72}} + sourceSize + {128,128} + + 210.png.pvr.png + + frame + {{2,470},{62,80}} + offset + {-32,22} + rotated + + sourceColorRect + {{1,2},{62,80}} + sourceSize + {128,128} + + 211.png.pvr.png + + frame + {{2,290},{66,84}} + offset + {-30,21} + rotated + + sourceColorRect + {{1,1},{66,84}} + sourceSize + {128,128} + + 212.png.pvr.png + + frame + {{2,222},{66,84}} + offset + {-29,21} + rotated + + sourceColorRect + {{2,1},{66,84}} + sourceSize + {128,128} + + 213.png.pvr.png + + frame + {{86,366},{64,82}} + offset + {-30,21} + rotated + + sourceColorRect + {{2,2},{64,82}} + sourceSize + {128,128} + + 214.png.pvr.png + + frame + {{438,346},{66,82}} + offset + {-30,21} + rotated + + sourceColorRect + {{1,2},{66,82}} + sourceSize + {128,128} + + 215.png.pvr.png + + frame + {{2,358},{66,82}} + offset + {-29,22} + rotated + + sourceColorRect + {{2,1},{66,82}} + sourceSize + {128,128} + + 220.png.pvr.png + + frame + {{972,126},{50,78}} + offset + {-5,24} + rotated + + sourceColorRect + {{2,1},{50,78}} + sourceSize + {64,128} + + 221.png.pvr.png + + frame + {{420,414},{52,78}} + offset + {-4,23} + rotated + + sourceColorRect + {{2,2},{52,78}} + sourceSize + {64,128} + + 222.png.pvr.png + + frame + {{602,430},{54,78}} + offset + {-3,23} + rotated + + sourceColorRect + {{2,2},{54,78}} + sourceSize + {64,128} + + 223.png.pvr.png + + frame + {{522,396},{54,78}} + offset + {-4,24} + rotated + + sourceColorRect + {{1,1},{54,78}} + sourceSize + {64,128} + + 224.png.pvr.png + + frame + {{716,270},{54,80}} + offset + {-4,22} + rotated + + sourceColorRect + {{1,2},{54,80}} + sourceSize + {64,128} + + 225.png.pvr.png + + frame + {{930,542},{54,78}} + offset + {-3,24} + rotated + + sourceColorRect + {{2,1},{54,78}} + sourceSize + {64,128} + + 230.png.pvr.png + + frame + {{534,322},{84,72}} + offset + {-20,27} + rotated + + sourceColorRect + {{2,1},{84,72}} + sourceSize + {128,128} + + 231.png.pvr.png + + frame + {{88,292},{82,72}} + offset + {-21,27} + rotated + + sourceColorRect + {{2,1},{82,72}} + sourceSize + {128,128} + + 232.png.pvr.png + + frame + {{86,432},{80,70}} + offset + {-22,27} + rotated + + sourceColorRect + {{2,2},{80,70}} + sourceSize + {128,128} + + 233.png.pvr.png + + frame + {{354,306},{82,72}} + offset + {-22,26} + rotated + + sourceColorRect + {{1,2},{82,72}} + sourceSize + {128,128} + + 234.png.pvr.png + + frame + {{278,190},{84,78}} + offset + {-21,23} + rotated + + sourceColorRect + {{1,2},{84,78}} + sourceSize + {128,128} + + 235.png.pvr.png + + frame + {{948,380},{84,74}} + offset + {-20,26} + rotated + + sourceColorRect + {{2,1},{84,74}} + sourceSize + {128,128} + + 240.png.pvr.png + + frame + {{190,190},{86,76}} + offset + {-19,24} + rotated + + sourceColorRect + {{2,2},{86,76}} + sourceSize + {128,128} + + 241.png.pvr.png + + frame + {{682,132},{88,80}} + offset + {-18,23} + rotated + + sourceColorRect + {{2,1},{88,80}} + sourceSize + {128,128} + + 242.png.pvr.png + + frame + {{792,118},{88,80}} + offset + {-18,23} + rotated + + sourceColorRect + {{2,1},{88,80}} + sourceSize + {128,128} + + 243.png.pvr.png + + frame + {{554,162},{88,76}} + offset + {-18,24} + rotated + + sourceColorRect + {{2,2},{88,76}} + sourceSize + {128,128} + + 244.png.pvr.png + + frame + {{896,44},{88,80}} + offset + {-19,23} + rotated + + sourceColorRect + {{1,1},{88,80}} + sourceSize + {128,128} + + 245.png.pvr.png + + frame + {{772,272},{86,80}} + offset + {-20,23} + rotated + + sourceColorRect + {{1,1},{86,80}} + sourceSize + {128,128} + + 300.png.pvr.png + + frame + {{340,380},{78,76}} + offset + {-24,25} + rotated + + sourceColorRect + {{1,1},{78,76}} + sourceSize + {128,128} + + 301.png.pvr.png + + frame + {{490,64},{68,98}} + offset + {-29,14} + rotated + + sourceColorRect + {{1,1},{68,98}} + sourceSize + {128,128} + + 302.png.pvr.png + + frame + {{254,2},{40,122}} + offset + {-10,1} + rotated + + sourceColorRect + {{2,2},{40,122}} + sourceSize + {64,128} + + 303.png.pvr.png + + frame + {{598,2},{42,102}} + offset + {-10,11} + rotated + + sourceColorRect + {{1,2},{42,102}} + sourceSize + {64,128} + + 304.png.pvr.png + + frame + {{598,46},{40,100}} + offset + {-10,12} + rotated + + sourceColorRect + {{2,2},{40,100}} + sourceSize + {64,128} + + 305.png.pvr.png + + frame + {{702,2},{54,100}} + offset + {-3,12} + rotated + + sourceColorRect + {{2,2},{54,100}} + sourceSize + {64,128} + + 306.png.pvr.png + + frame + {{628,270},{86,80}} + offset + {-20,23} + rotated + + sourceColorRect + {{1,1},{86,80}} + sourceSize + {128,128} + + 310.png.pvr.png + + frame + {{314,104},{42,84}} + offset + {-10,20} + rotated + + sourceColorRect + {{1,2},{42,84}} + sourceSize + {64,128} + + 311.png.pvr.png + + frame + {{254,44},{58,108}} + offset + {-1,9} + rotated + + sourceColorRect + {{2,1},{58,108}} + sourceSize + {64,128} + + 312.png.pvr.png + + frame + {{378,2},{72,110}} + offset + {-26,7} + rotated + + sourceColorRect + {{2,2},{72,110}} + sourceSize + {128,128} + + 313.png.pvr.png + + frame + {{218,104},{84,94}} + offset + {-21,16} + rotated + + sourceColorRect + {{1,1},{84,94}} + sourceSize + {128,128} + + 314.png.pvr.png + + frame + {{96,134},{84,92}} + offset + {-21,16} + rotated + + sourceColorRect + {{1,2},{84,92}} + sourceSize + {128,128} + + 315.png.pvr.png + + frame + {{2,134},{92,86}} + offset + {-17,19} + rotated + + sourceColorRect + {{1,2},{92,86}} + sourceSize + {128,128} + + 316.png.pvr.png + + frame + {{172,312},{82,64}} + offset + {-22,30} + rotated + + sourceColorRect + {{1,2},{82,64}} + sourceSize + {128,128} + + 320.png.pvr.png + + frame + {{82,582},{74,76}} + offset + {-25,25} + rotated + + sourceColorRect + {{2,1},{74,76}} + sourceSize + {128,128} + + 321.png.pvr.png + + frame + {{364,76},{82,96}} + offset + {-22,15} + rotated + + sourceColorRect + {{1,1},{82,96}} + sourceSize + {128,128} + + 322.png.pvr.png + + frame + {{540,240},{86,80}} + offset + {-19,22} + rotated + + sourceColorRect + {{2,2},{86,80}} + sourceSize + {128,128} + + 323.png.pvr.png + + frame + {{128,2},{124,64}} + offset + {-1,31} + rotated + + sourceColorRect + {{1,1},{124,64}} + sourceSize + {128,128} + + 324.png.pvr.png + + frame + {{2,2},{124,64}} + offset + {0,31} + rotated + + sourceColorRect + {{2,1},{124,64}} + sourceSize + {128,128} + + 325.png.pvr.png + + frame + {{490,2},{60,106}} + offset + {-1,9} + rotated + + sourceColorRect + {{1,2},{60,106}} + sourceSize + {64,128} + + 326.png.pvr.png + + frame + {{2,688},{66,68}} + offset + {-29,28} + rotated + + sourceColorRect + {{2,2},{66,68}} + sourceSize + {128,128} + + 330.png.pvr.png + + frame + {{804,44},{90,72}} + offset + {-18,26} + rotated + + sourceColorRect + {{1,2},{90,72}} + sourceSize + {128,128} + + 331.png.pvr.png + + frame + {{96,220},{84,70}} + offset + {-20,27} + rotated + + sourceColorRect + {{2,2},{84,70}} + sourceSize + {128,128} + + 332.png.pvr.png + + frame + {{700,422},{68,66}} + offset + {-29,30} + rotated + + sourceColorRect + {{1,1},{68,66}} + sourceSize + {128,128} + + 333.png.pvr.png + + frame + {{110,68},{106,64}} + offset + {-10,31} + rotated + + sourceColorRect + {{1,1},{106,64}} + sourceSize + {128,128} + + 334.png.pvr.png + + frame + {{2,68},{106,64}} + offset + {-10,31} + rotated + + sourceColorRect + {{1,1},{106,64}} + sourceSize + {128,128} + + 335.png.pvr.png + + frame + {{170,378},{80,76}} + offset + {-23,24} + rotated + + sourceColorRect + {{1,2},{80,76}} + sourceSize + {128,128} + + 336.png.pvr.png + + frame + {{80,658},{64,72}} + offset + {-30,26} + rotated + + sourceColorRect + {{2,2},{64,72}} + sourceSize + {128,128} + + 340.png.pvr.png + + frame + {{332,458},{76,76}} + offset + {-24,24} + rotated + + sourceColorRect + {{2,2},{76,76}} + sourceSize + {128,128} + + 341.png.pvr.png + + frame + {{700,352},{68,68}} + offset + {-29,28} + rotated + + sourceColorRect + {{1,2},{68,68}} + sourceSize + {128,128} + + 342.png.pvr.png + + frame + {{578,486},{40,68}} + offset + {-10,28} + rotated + + sourceColorRect + {{2,2},{40,68}} + sourceSize + {64,128} + + 343.png.pvr.png + + frame + {{898,2},{40,92}} + offset + {-10,17} + rotated + + sourceColorRect + {{2,1},{40,92}} + sourceSize + {64,128} + + 344.png.pvr.png + + frame + {{804,2},{40,92}} + offset + {-10,16} + rotated + + sourceColorRect + {{2,2},{40,92}} + sourceSize + {64,128} + + 345.png.pvr.png + + frame + {{644,214},{54,88}} + offset + {-3,19} + rotated + + sourceColorRect + {{2,1},{54,88}} + sourceSize + {64,128} + + 346.png.pvr.png + + frame + {{860,340},{86,78}} + offset + {-20,23} + rotated + + sourceColorRect + {{1,2},{86,78}} + sourceSize + {128,128} + + + metadata + + format + 2 + realTextureFileName + doushi.png + size + {1024,1024} + smartupdate + $TexturePacker:SmartUpdate:0d2173b626ea88256fdcff1c1e3ade3e$ + textureFileName + doushi.png + + + diff --git a/cc_moba/assets/img/doushi.plist.meta b/cc_moba/assets/img/doushi.plist.meta new file mode 100644 index 0000000..9652edb --- /dev/null +++ b/cc_moba/assets/img/doushi.plist.meta @@ -0,0 +1,2102 @@ +{ + "ver": "1.2.4", + "uuid": "910f9dea-12a3-4df7-84bf-361907871717", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "size": { + "width": 1024, + "height": 1024 + }, + "type": "Texture Packer", + "subMetas": { + "100.png.pvr.png": { + "ver": "1.0.3", + "uuid": "7598e0bc-4b88-46f9-a305-8fbd03b25223", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -24, + "offsetY": 24, + "trimX": 770, + "trimY": 354, + "width": 78, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "101.png.pvr.png": { + "ver": "1.0.3", + "uuid": "1ef792ef-598a-4692-b3ac-2cad015c9ecf", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -24, + "offsetY": 24, + "trimX": 850, + "trimY": 420, + "width": 76, + "height": 78, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "102.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e2569edc-10b6-401c-bcdf-5e6f67aa0761", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -24, + "offsetY": 24, + "trimX": 620, + "trimY": 352, + "width": 78, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "103.png.pvr.png": { + "ver": "1.0.3", + "uuid": "da6441dd-5344-4fd3-92f4-03e3336c0567", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -23, + "offsetY": 25, + "trimX": 2, + "trimY": 534, + "width": 78, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "104.png.pvr.png": { + "ver": "1.0.3", + "uuid": "2fddedaf-762a-4770-8f79-a081f2993ddc", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -23, + "offsetY": 25, + "trimX": 850, + "trimY": 498, + "width": 78, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "105.png.pvr.png": { + "ver": "1.0.3", + "uuid": "9adecf10-4184-4d00-bc11-e4554a141738", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -23, + "offsetY": 25, + "trimX": 930, + "trimY": 466, + "width": 78, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "110.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d81b88bc-daef-4dd6-9d90-79a10e8681a9", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -10, + "offsetY": 20, + "trimX": 268, + "trimY": 276, + "width": 42, + "height": 84, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "111.png.pvr.png": { + "ver": "1.0.3", + "uuid": "8fc41c2c-8972-46ba-b10e-81b3317fb070", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -9, + "offsetY": 20, + "trimX": 182, + "trimY": 268, + "width": 42, + "height": 84, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "112.png.pvr.png": { + "ver": "1.0.3", + "uuid": "1860ba73-5790-4127-9392-a6cb976510f0", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -10, + "offsetY": 21, + "trimX": 256, + "trimY": 364, + "width": 42, + "height": 82, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "113.png.pvr.png": { + "ver": "1.0.3", + "uuid": "76d1d9e7-d54c-4dfa-bd40-8ee895696140", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -9, + "offsetY": 21, + "trimX": 256, + "trimY": 320, + "width": 42, + "height": 82, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "114.png.pvr.png": { + "ver": "1.0.3", + "uuid": "18c4b913-1f39-42f2-9a56-de692cea5107", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -9, + "offsetY": 21, + "trimX": 2, + "trimY": 426, + "width": 42, + "height": 82, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "115.png.pvr.png": { + "ver": "1.0.3", + "uuid": "954df6d7-6fdf-4827-8621-09a1e8e0f0db", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -10, + "offsetY": 21, + "trimX": 972, + "trimY": 206, + "width": 42, + "height": 84, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "120.png.pvr.png": { + "ver": "1.0.3", + "uuid": "132ca06c-a4f3-4965-a625-5858fe8b7a1b", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -25, + "offsetY": 25, + "trimX": 500, + "trimY": 452, + "width": 74, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "121.png.pvr.png": { + "ver": "1.0.3", + "uuid": "47549470-1f0d-47fe-b2ca-2405d3a88603", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -25, + "offsetY": 25, + "trimX": 2, + "trimY": 612, + "width": 74, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "122.png.pvr.png": { + "ver": "1.0.3", + "uuid": "5e4f8ba6-850e-4ec7-8e4b-9a96d422d861", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -25, + "offsetY": 25, + "trimX": 326, + "trimY": 536, + "width": 74, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "123.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f8a3c57a-f7ca-47ff-aaa6-df84277bb749", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -26, + "offsetY": 26, + "trimX": 160, + "trimY": 612, + "width": 72, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "124.png.pvr.png": { + "ver": "1.0.3", + "uuid": "eb387305-e98d-414f-9cdb-f7943f99bbb2", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -27, + "offsetY": 26, + "trimX": 242, + "trimY": 564, + "width": 72, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "125.png.pvr.png": { + "ver": "1.0.3", + "uuid": "615b802a-1030-4b1a-b0f2-f701fcfdfefe", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -26, + "offsetY": 25, + "trimX": 410, + "trimY": 468, + "width": 74, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "130.png.pvr.png": { + "ver": "1.0.3", + "uuid": "261f0534-2c38-42c4-b823-db4d068a2967", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -18, + "offsetY": 26, + "trimX": 462, + "trimY": 134, + "width": 90, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "131.png.pvr.png": { + "ver": "1.0.3", + "uuid": "25e629d6-eae4-425b-b678-e99cdf329b25", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -17, + "offsetY": 26, + "trimX": 590, + "trimY": 88, + "width": 90, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "132.png.pvr.png": { + "ver": "1.0.3", + "uuid": "59475110-7dc2-4ce6-aa9e-cc44421d68ab", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -17, + "offsetY": 27, + "trimX": 700, + "trimY": 58, + "width": 90, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "133.png.pvr.png": { + "ver": "1.0.3", + "uuid": "dc487e01-7ec1-4865-883a-5a7c8f656c5d", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -18, + "offsetY": 27, + "trimX": 358, + "trimY": 160, + "width": 90, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "134.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b9da279e-57ed-40f8-9b96-b024423d6408", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -18, + "offsetY": 27, + "trimX": 772, + "trimY": 200, + "width": 88, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "135.png.pvr.png": { + "ver": "1.0.3", + "uuid": "7bc31637-6394-4c87-a771-d569bded840c", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -18, + "offsetY": 27, + "trimX": 450, + "trimY": 208, + "width": 88, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "140.png.pvr.png": { + "ver": "1.0.3", + "uuid": "51258b59-1865-4147-9774-448c49c7a19c", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -24, + "offsetY": 24, + "trimX": 164, + "trimY": 534, + "width": 76, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "141.png.pvr.png": { + "ver": "1.0.3", + "uuid": "7d8318c1-f869-4f8d-90ce-233374a75bce", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -24, + "offsetY": 24, + "trimX": 248, + "trimY": 486, + "width": 76, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "142.png.pvr.png": { + "ver": "1.0.3", + "uuid": "17dcc38d-262e-4477-a2f5-1f7deeee0251", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -24, + "offsetY": 25, + "trimX": 84, + "trimY": 504, + "width": 78, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "143.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b11f1620-b261-4084-9ee8-2a1573020c93", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -23, + "offsetY": 25, + "trimX": 770, + "trimY": 432, + "width": 78, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "144.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0b33d289-ddde-4618-9663-5703f1238b84", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -23, + "offsetY": 25, + "trimX": 168, + "trimY": 456, + "width": 78, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "145.png.pvr.png": { + "ver": "1.0.3", + "uuid": "2c72f33c-2301-41b1-8a1d-558cfe7401ad", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -23, + "offsetY": 24, + "trimX": 252, + "trimY": 408, + "width": 78, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "200.png.pvr.png": { + "ver": "1.0.3", + "uuid": "2f0f78eb-d2fd-468f-8e8d-0485b10fa7e7", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -19, + "offsetY": 31, + "trimX": 446, + "trimY": 282, + "width": 86, + "height": 62, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "201.png.pvr.png": { + "ver": "1.0.3", + "uuid": "2d2adba1-2dfc-4b58-baa3-c62ab73cf6f2", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -18, + "offsetY": 28, + "trimX": 882, + "trimY": 198, + "width": 88, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "202.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0d2bbc4a-c462-4146-909f-2474e6dd2868", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -18, + "offsetY": 27, + "trimX": 882, + "trimY": 126, + "width": 88, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "203.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a9ff2d80-9701-44d0-aa13-a21f97d67954", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -18, + "offsetY": 29, + "trimX": 862, + "trimY": 270, + "width": 88, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "204.png.pvr.png": { + "ver": "1.0.3", + "uuid": "36c270a9-6b32-4122-a522-3321e6bd3b53", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -19, + "offsetY": 28, + "trimX": 952, + "trimY": 292, + "width": 86, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "205.png.pvr.png": { + "ver": "1.0.3", + "uuid": "99424b1c-41f7-4fab-9405-ae4f813725bf", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -20, + "offsetY": 27, + "trimX": 358, + "trimY": 232, + "width": 86, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "210.png.pvr.png": { + "ver": "1.0.3", + "uuid": "7319166c-355e-4a5b-97f2-ac1abea66048", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -32, + "offsetY": 22, + "trimX": 2, + "trimY": 470, + "width": 62, + "height": 80, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "211.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ca490bac-8ca4-4f4a-8547-fc9c0f9e94fa", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -30, + "offsetY": 21, + "trimX": 2, + "trimY": 290, + "width": 66, + "height": 84, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "212.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0d1ceb4f-358d-4481-8536-ceb7736212d0", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -29, + "offsetY": 21, + "trimX": 2, + "trimY": 222, + "width": 66, + "height": 84, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "213.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d3b18a88-e7b5-4d91-b76b-26e4c6b4935e", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -30, + "offsetY": 21, + "trimX": 86, + "trimY": 366, + "width": 64, + "height": 82, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "214.png.pvr.png": { + "ver": "1.0.3", + "uuid": "04035a08-533c-44cd-81b6-7989f24531ec", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -30, + "offsetY": 21, + "trimX": 438, + "trimY": 346, + "width": 66, + "height": 82, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "215.png.pvr.png": { + "ver": "1.0.3", + "uuid": "34b088e6-26a4-40ea-a4c0-f5afe41aef73", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -29, + "offsetY": 22, + "trimX": 2, + "trimY": 358, + "width": 66, + "height": 82, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "220.png.pvr.png": { + "ver": "1.0.3", + "uuid": "63507811-97be-45e0-9c84-99653f777741", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -5, + "offsetY": 24, + "trimX": 972, + "trimY": 126, + "width": 50, + "height": 78, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "221.png.pvr.png": { + "ver": "1.0.3", + "uuid": "8b68753e-d0d3-4c75-8454-1469179807c0", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -4, + "offsetY": 23, + "trimX": 420, + "trimY": 414, + "width": 52, + "height": 78, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "222.png.pvr.png": { + "ver": "1.0.3", + "uuid": "977b6a20-8778-468b-9d94-7a4df4780b4b", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -3, + "offsetY": 23, + "trimX": 602, + "trimY": 430, + "width": 54, + "height": 78, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "223.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4f21163d-692e-44fd-86b5-db2cc7309d14", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -4, + "offsetY": 24, + "trimX": 522, + "trimY": 396, + "width": 54, + "height": 78, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "224.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4500202e-d071-4906-bd4f-4696e77a504b", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -4, + "offsetY": 22, + "trimX": 716, + "trimY": 270, + "width": 54, + "height": 80, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "225.png.pvr.png": { + "ver": "1.0.3", + "uuid": "23872bad-385c-45fa-ba6d-7f7df1aa33d5", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -3, + "offsetY": 24, + "trimX": 930, + "trimY": 542, + "width": 54, + "height": 78, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "230.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b1807cb5-8281-400f-91c1-043ac6f439b0", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -20, + "offsetY": 27, + "trimX": 534, + "trimY": 322, + "width": 84, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "231.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4490540e-90df-4441-a43b-d3201a3ef6ae", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -21, + "offsetY": 27, + "trimX": 88, + "trimY": 292, + "width": 82, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "232.png.pvr.png": { + "ver": "1.0.3", + "uuid": "2387e116-5879-4332-88f5-80792f9d3702", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -22, + "offsetY": 27, + "trimX": 86, + "trimY": 432, + "width": 80, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "233.png.pvr.png": { + "ver": "1.0.3", + "uuid": "33fb7695-8e6c-463f-b587-b9a70f014a1c", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -22, + "offsetY": 26, + "trimX": 354, + "trimY": 306, + "width": 82, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "234.png.pvr.png": { + "ver": "1.0.3", + "uuid": "50bb9b89-21de-4dc1-b95b-645f9461de55", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -21, + "offsetY": 23, + "trimX": 278, + "trimY": 190, + "width": 84, + "height": 78, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "235.png.pvr.png": { + "ver": "1.0.3", + "uuid": "7e3901e9-a357-4fe2-8800-2cc68f26f038", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -20, + "offsetY": 26, + "trimX": 948, + "trimY": 380, + "width": 84, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "240.png.pvr.png": { + "ver": "1.0.3", + "uuid": "34e75778-02e3-40bc-9572-6e08661226bf", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -19, + "offsetY": 24, + "trimX": 190, + "trimY": 190, + "width": 86, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "241.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c246cdd0-882e-4df5-affd-94b6ead5da3b", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -18, + "offsetY": 23, + "trimX": 682, + "trimY": 132, + "width": 88, + "height": 80, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "242.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4b0dbd8a-e3a3-463f-8a9f-6133b92506c8", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -18, + "offsetY": 23, + "trimX": 792, + "trimY": 118, + "width": 88, + "height": 80, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "243.png.pvr.png": { + "ver": "1.0.3", + "uuid": "6ba74fe6-2bc4-483d-a0f5-5095b7e443d6", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -18, + "offsetY": 24, + "trimX": 554, + "trimY": 162, + "width": 88, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "244.png.pvr.png": { + "ver": "1.0.3", + "uuid": "7195fe31-fd81-4688-be22-965ff89360a6", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -19, + "offsetY": 23, + "trimX": 896, + "trimY": 44, + "width": 88, + "height": 80, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "245.png.pvr.png": { + "ver": "1.0.3", + "uuid": "86da8762-5ec5-4275-b6f2-faab3d636c4e", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -20, + "offsetY": 23, + "trimX": 772, + "trimY": 272, + "width": 86, + "height": 80, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "300.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3c614a2c-a519-4d4f-b6b7-882083a1d9c9", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -24, + "offsetY": 25, + "trimX": 340, + "trimY": 380, + "width": 78, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "301.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b494b4e1-fdc6-4714-95bd-2ade38aaf11e", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -29, + "offsetY": 14, + "trimX": 490, + "trimY": 64, + "width": 68, + "height": 98, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "302.png.pvr.png": { + "ver": "1.0.3", + "uuid": "7d54f262-71a9-43fd-af2d-f50476e4a05b", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -10, + "offsetY": 1, + "trimX": 254, + "trimY": 2, + "width": 40, + "height": 122, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "303.png.pvr.png": { + "ver": "1.0.3", + "uuid": "faea002f-8f7d-4f26-bb81-8152ba7cdfa1", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -10, + "offsetY": 11, + "trimX": 598, + "trimY": 2, + "width": 42, + "height": 102, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "304.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e1265caf-4ad4-4942-8f07-671b7da0dc9a", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -10, + "offsetY": 12, + "trimX": 598, + "trimY": 46, + "width": 40, + "height": 100, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "305.png.pvr.png": { + "ver": "1.0.3", + "uuid": "76ba8adb-820a-476b-98a6-666ccd847ce4", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -3, + "offsetY": 12, + "trimX": 702, + "trimY": 2, + "width": 54, + "height": 100, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "306.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0ef53125-d64c-4b8d-ade2-7f381897c787", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -20, + "offsetY": 23, + "trimX": 628, + "trimY": 270, + "width": 86, + "height": 80, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "310.png.pvr.png": { + "ver": "1.0.3", + "uuid": "2e7258e1-1069-4762-9d00-8db0bf8d0df3", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -10, + "offsetY": 20, + "trimX": 314, + "trimY": 104, + "width": 42, + "height": 84, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "311.png.pvr.png": { + "ver": "1.0.3", + "uuid": "53591dfe-5d68-47ef-8704-4d2f947f9b8a", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": 9, + "trimX": 254, + "trimY": 44, + "width": 58, + "height": 108, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "312.png.pvr.png": { + "ver": "1.0.3", + "uuid": "7d5f818c-1d2d-4c0f-a931-70e367a07594", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -26, + "offsetY": 7, + "trimX": 378, + "trimY": 2, + "width": 72, + "height": 110, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "313.png.pvr.png": { + "ver": "1.0.3", + "uuid": "1e71d847-9081-44ae-8b63-190360755679", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -21, + "offsetY": 16, + "trimX": 218, + "trimY": 104, + "width": 84, + "height": 94, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "314.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3ae064cc-d77f-4d05-ae17-ee6b694341a1", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -21, + "offsetY": 16, + "trimX": 96, + "trimY": 134, + "width": 84, + "height": 92, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "315.png.pvr.png": { + "ver": "1.0.3", + "uuid": "540b032b-c71d-4d18-afcc-42a70688d29b", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -17, + "offsetY": 19, + "trimX": 2, + "trimY": 134, + "width": 92, + "height": 86, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "316.png.pvr.png": { + "ver": "1.0.3", + "uuid": "6e50b7aa-ff3a-40b1-b9ac-88a8e25e4c98", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -22, + "offsetY": 30, + "trimX": 172, + "trimY": 312, + "width": 82, + "height": 64, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "320.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3bdaa68c-e045-4da9-ac67-111feb26ab25", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -25, + "offsetY": 25, + "trimX": 82, + "trimY": 582, + "width": 74, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "321.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f3f036de-dd68-4fd9-9585-7678396888d1", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -22, + "offsetY": 15, + "trimX": 364, + "trimY": 76, + "width": 82, + "height": 96, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "322.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e719df71-4353-4c5f-8de8-e7f9a347779d", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -19, + "offsetY": 22, + "trimX": 540, + "trimY": 240, + "width": 86, + "height": 80, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "323.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d1ffb449-0dfe-4e59-8a05-92c865e62fa5", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 31, + "trimX": 128, + "trimY": 2, + "width": 124, + "height": 64, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "324.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0497e308-2507-48ac-87ff-8e57502d789d", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 31, + "trimX": 2, + "trimY": 2, + "width": 124, + "height": 64, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "325.png.pvr.png": { + "ver": "1.0.3", + "uuid": "77ac5e2d-b32c-4e56-bde2-425f9c172a89", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": 9, + "trimX": 490, + "trimY": 2, + "width": 60, + "height": 106, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "326.png.pvr.png": { + "ver": "1.0.3", + "uuid": "829c3961-1b41-4d69-af75-f1e232f0741c", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -29, + "offsetY": 28, + "trimX": 2, + "trimY": 688, + "width": 66, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "330.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b06c4592-bb82-4d11-a506-4ff02e9be848", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -18, + "offsetY": 26, + "trimX": 804, + "trimY": 44, + "width": 90, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "331.png.pvr.png": { + "ver": "1.0.3", + "uuid": "dfc11aea-6700-40d5-90ce-41ea8982cd59", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -20, + "offsetY": 27, + "trimX": 96, + "trimY": 220, + "width": 84, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "332.png.pvr.png": { + "ver": "1.0.3", + "uuid": "7f027aaa-66fe-47c8-8775-8a32e05f2745", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 30, + "trimX": 700, + "trimY": 422, + "width": 68, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "333.png.pvr.png": { + "ver": "1.0.3", + "uuid": "75194cef-bef8-4ea1-97a8-d0ba20f0a6a5", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -10, + "offsetY": 31, + "trimX": 110, + "trimY": 68, + "width": 106, + "height": 64, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "334.png.pvr.png": { + "ver": "1.0.3", + "uuid": "82f93433-e832-40eb-9a4c-94631e071a74", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -10, + "offsetY": 31, + "trimX": 2, + "trimY": 68, + "width": 106, + "height": 64, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "335.png.pvr.png": { + "ver": "1.0.3", + "uuid": "192bf7cf-69b9-45d2-8ded-2b2620acd900", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -23, + "offsetY": 24, + "trimX": 170, + "trimY": 378, + "width": 80, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "336.png.pvr.png": { + "ver": "1.0.3", + "uuid": "2ebdd29d-d3ee-4602-95fd-636cd01773bb", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -30, + "offsetY": 26, + "trimX": 80, + "trimY": 658, + "width": 64, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "340.png.pvr.png": { + "ver": "1.0.3", + "uuid": "66522a80-c937-480f-b797-1a84a963398c", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -24, + "offsetY": 24, + "trimX": 332, + "trimY": 458, + "width": 76, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "341.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3557be2c-fb06-4d8d-98a0-59ab0a9c4fec", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 28, + "trimX": 700, + "trimY": 352, + "width": 68, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "342.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4e270a93-ffde-4b0b-85a5-d1a67ac6271e", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -10, + "offsetY": 28, + "trimX": 578, + "trimY": 486, + "width": 40, + "height": 68, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "343.png.pvr.png": { + "ver": "1.0.3", + "uuid": "6892c7a4-f662-4e97-a367-08e9a0ffb643", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -10, + "offsetY": 17, + "trimX": 898, + "trimY": 2, + "width": 40, + "height": 92, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "344.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b6be8e59-b6b7-4979-b9ee-57a766492661", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -10, + "offsetY": 16, + "trimX": 804, + "trimY": 2, + "width": 40, + "height": 92, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "345.png.pvr.png": { + "ver": "1.0.3", + "uuid": "66f4d0fe-70ea-4b52-a362-42b6e838e840", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -3, + "offsetY": 19, + "trimX": 644, + "trimY": 214, + "width": 54, + "height": 88, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "346.png.pvr.png": { + "ver": "1.0.3", + "uuid": "043f423c-747c-40e3-b696-7d4ad9c61f26", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -20, + "offsetY": 23, + "trimX": 860, + "trimY": 340, + "width": 86, + "height": 78, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/img/doushi.png b/cc_moba/assets/img/doushi.png new file mode 100644 index 0000000..ab07be1 Binary files /dev/null and b/cc_moba/assets/img/doushi.png differ diff --git a/cc_moba/assets/img/doushi.png.meta b/cc_moba/assets/img/doushi.png.meta new file mode 100644 index 0000000..afc7e83 --- /dev/null +++ b/cc_moba/assets/img/doushi.png.meta @@ -0,0 +1,30 @@ +{ + "ver": "1.0.0", + "uuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "subMetas": { + "doushi": { + "ver": "1.0.3", + "uuid": "2cb88167-5d9e-4356-aae6-04d384aa5d52", + "rawTextureUuid": "3b99076d-b51c-4222-b52f-5199d61134d9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 134, + "trimX": 2, + "trimY": 2, + "width": 1020, + "height": 752, + "rawWidth": 1024, + "rawHeight": 1024, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/img/equip_frame_blue.png b/cc_moba/assets/img/equip_frame_blue.png new file mode 100644 index 0000000..7dcad70 Binary files /dev/null and b/cc_moba/assets/img/equip_frame_blue.png differ diff --git a/cc_moba/assets/img/equip_frame_blue.png.meta b/cc_moba/assets/img/equip_frame_blue.png.meta new file mode 100644 index 0000000..3e6143f --- /dev/null +++ b/cc_moba/assets/img/equip_frame_blue.png.meta @@ -0,0 +1,30 @@ +{ + "ver": "1.0.0", + "uuid": "4091c778-dbef-478f-8197-a4f127a12f05", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "subMetas": { + "equip_frame_blue": { + "ver": "1.0.3", + "uuid": "187015ec-f3d4-4abe-8fad-ce8d537619b8", + "rawTextureUuid": "4091c778-dbef-478f-8197-a4f127a12f05", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 1.5, + "trimX": 4, + "trimY": 3, + "width": 86, + "height": 86, + "rawWidth": 94, + "rawHeight": 95, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/img/hit.jpg b/cc_moba/assets/img/hit.jpg new file mode 100644 index 0000000..56e3cdb Binary files /dev/null and b/cc_moba/assets/img/hit.jpg differ diff --git a/cc_moba/assets/img/hit.jpg.meta b/cc_moba/assets/img/hit.jpg.meta new file mode 100644 index 0000000..b4aebfd --- /dev/null +++ b/cc_moba/assets/img/hit.jpg.meta @@ -0,0 +1,30 @@ +{ + "ver": "1.0.0", + "uuid": "5cfa71e7-e308-4659-a662-3813058cf8db", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "subMetas": { + "hit": { + "ver": "1.0.3", + "uuid": "57f7a1fa-cc95-4c68-a947-5ec573c5855b", + "rawTextureUuid": "5cfa71e7-e308-4659-a662-3813058cf8db", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 64, + "height": 64, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/img/hp.jpg b/cc_moba/assets/img/hp.jpg new file mode 100644 index 0000000..fab86f7 Binary files /dev/null and b/cc_moba/assets/img/hp.jpg differ diff --git a/cc_moba/assets/img/hp.jpg.meta b/cc_moba/assets/img/hp.jpg.meta new file mode 100644 index 0000000..34804dd --- /dev/null +++ b/cc_moba/assets/img/hp.jpg.meta @@ -0,0 +1,30 @@ +{ + "ver": "1.0.0", + "uuid": "7a609282-0c55-414a-a840-e8946af3b196", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "subMetas": { + "hp": { + "ver": "1.0.3", + "uuid": "8cad37ab-f664-42e0-90d7-2234fa985958", + "rawTextureUuid": "7a609282-0c55-414a-a840-e8946af3b196", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 64, + "height": 64, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/img/pass_dot.png b/cc_moba/assets/img/pass_dot.png new file mode 100644 index 0000000..8fffe72 Binary files /dev/null and b/cc_moba/assets/img/pass_dot.png differ diff --git a/cc_moba/assets/img/pass_dot.png.meta b/cc_moba/assets/img/pass_dot.png.meta new file mode 100644 index 0000000..bb15824 --- /dev/null +++ b/cc_moba/assets/img/pass_dot.png.meta @@ -0,0 +1,30 @@ +{ + "ver": "1.0.0", + "uuid": "ca04aaad-5988-4553-9fad-b77c194e45d1", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "subMetas": { + "pass_dot": { + "ver": "1.0.3", + "uuid": "884dab8a-37b9-4829-99d7-a208dde30ac1", + "rawTextureUuid": "ca04aaad-5988-4553-9fad-b77c194e45d1", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 36, + "height": 35, + "rawWidth": 36, + "rawHeight": 35, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/img/tax_bar.png b/cc_moba/assets/img/tax_bar.png new file mode 100644 index 0000000..d46e926 Binary files /dev/null and b/cc_moba/assets/img/tax_bar.png differ diff --git a/cc_moba/assets/img/tax_bar.png.meta b/cc_moba/assets/img/tax_bar.png.meta new file mode 100644 index 0000000..dd86370 --- /dev/null +++ b/cc_moba/assets/img/tax_bar.png.meta @@ -0,0 +1,30 @@ +{ + "ver": "1.0.0", + "uuid": "505f3e00-10cf-4162-b7b4-c466e35142ba", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "subMetas": { + "tax_bar": { + "ver": "1.0.3", + "uuid": "050cd0f9-97b4-4528-814b-44f6760f304a", + "rawTextureUuid": "505f3e00-10cf-4162-b7b4-c466e35142ba", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 142, + "height": 142, + "rawWidth": 146, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/img/taxbar_bg.png b/cc_moba/assets/img/taxbar_bg.png new file mode 100644 index 0000000..09cf029 Binary files /dev/null and b/cc_moba/assets/img/taxbar_bg.png differ diff --git a/cc_moba/assets/img/taxbar_bg.png.meta b/cc_moba/assets/img/taxbar_bg.png.meta new file mode 100644 index 0000000..a482c32 --- /dev/null +++ b/cc_moba/assets/img/taxbar_bg.png.meta @@ -0,0 +1,30 @@ +{ + "ver": "1.0.0", + "uuid": "340f7500-8479-4fc7-87f9-a7de2a19b345", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "subMetas": { + "taxbar_bg": { + "ver": "1.0.3", + "uuid": "c3e8c1b6-e21a-47e7-ae29-162c967aae9b", + "rawTextureUuid": "340f7500-8479-4fc7-87f9-a7de2a19b345", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 146, + "height": 146, + "rawWidth": 146, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/img/time.png b/cc_moba/assets/img/time.png new file mode 100644 index 0000000..dc08935 Binary files /dev/null and b/cc_moba/assets/img/time.png differ diff --git a/cc_moba/assets/img/time.png.meta b/cc_moba/assets/img/time.png.meta new file mode 100644 index 0000000..ed31717 --- /dev/null +++ b/cc_moba/assets/img/time.png.meta @@ -0,0 +1,30 @@ +{ + "ver": "1.0.0", + "uuid": "d11186be-5f4f-4262-8c2b-c7618d0bf250", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "subMetas": { + "time": { + "ver": "1.0.3", + "uuid": "1e0cd132-4525-43a7-9ac0-efd191ee8ee4", + "rawTextureUuid": "d11186be-5f4f-4262-8c2b-c7618d0bf250", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 63, + "height": 67, + "rawWidth": 63, + "rawHeight": 67, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/img/x.png b/cc_moba/assets/img/x.png new file mode 100644 index 0000000..435e78d Binary files /dev/null and b/cc_moba/assets/img/x.png differ diff --git a/cc_moba/assets/img/x.png.meta b/cc_moba/assets/img/x.png.meta new file mode 100644 index 0000000..9d5be17 --- /dev/null +++ b/cc_moba/assets/img/x.png.meta @@ -0,0 +1,30 @@ +{ + "ver": "1.0.0", + "uuid": "3d7c136a-604d-4c08-9b0e-0d8c48f8b626", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "subMetas": { + "x": { + "ver": "1.0.3", + "uuid": "9d941b26-2b7b-4c46-953c-fe5ae6d075f6", + "rawTextureUuid": "3d7c136a-604d-4c08-9b0e-0d8c48f8b626", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 331, + "height": 375, + "rawWidth": 331, + "rawHeight": 375, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/img/xiaoxiao.plist b/cc_moba/assets/img/xiaoxiao.plist new file mode 100644 index 0000000..25f855e --- /dev/null +++ b/cc_moba/assets/img/xiaoxiao.plist @@ -0,0 +1,1322 @@ + + + + + frames + + 100.png.pvr.png + + frame + {{394,76},{88,68}} + offset + {-19,28} + rotated + + sourceColorRect + {{1,2},{88,68}} + sourceSize + {128,128} + + 101.png.pvr.png + + frame + {{494,74},{88,68}} + offset + {-18,29} + rotated + + sourceColorRect + {{2,1},{88,68}} + sourceSize + {128,128} + + 102.png.pvr.png + + frame + {{584,72},{88,68}} + offset + {-18,29} + rotated + + sourceColorRect + {{2,1},{88,68}} + sourceSize + {128,128} + + 103.png.pvr.png + + frame + {{854,2},{88,68}} + offset + {-18,29} + rotated + + sourceColorRect + {{2,1},{88,68}} + sourceSize + {128,128} + + 104.png.pvr.png + + frame + {{764,2},{88,68}} + offset + {-19,28} + rotated + + sourceColorRect + {{1,2},{88,68}} + sourceSize + {128,128} + + 105.png.pvr.png + + frame + {{674,2},{88,68}} + offset + {-19,28} + rotated + + sourceColorRect + {{1,2},{88,68}} + sourceSize + {128,128} + + 110.png.pvr.png + + frame + {{678,344},{66,76}} + offset + {-30,25} + rotated + + sourceColorRect + {{1,1},{66,76}} + sourceSize + {128,128} + + 111.png.pvr.png + + frame + {{756,276},{68,76}} + offset + {-29,24} + rotated + + sourceColorRect + {{1,2},{68,76}} + sourceSize + {128,128} + + 112.png.pvr.png + + frame + {{678,274},{68,76}} + offset + {-29,25} + rotated + + sourceColorRect + {{1,1},{68,76}} + sourceSize + {128,128} + + 113.png.pvr.png + + frame + {{600,344},{66,76}} + offset + {-29,24} + rotated + + sourceColorRect + {{2,2},{66,76}} + sourceSize + {128,128} + + 114.png.pvr.png + + frame + {{756,346},{64,76}} + offset + {-30,24} + rotated + + sourceColorRect + {{2,2},{64,76}} + sourceSize + {128,128} + + 115.png.pvr.png + + frame + {{510,346},{64,76}} + offset + {-30,24} + rotated + + sourceColorRect + {{2,2},{64,76}} + sourceSize + {128,128} + + 120.png.pvr.png + + frame + {{86,334},{52,82}} + offset + {-5,22} + rotated + + sourceColorRect + {{1,1},{52,82}} + sourceSize + {64,128} + + 121.png.pvr.png + + frame + {{170,284},{52,82}} + offset + {-5,21} + rotated + + sourceColorRect + {{1,2},{52,82}} + sourceSize + {64,128} + + 122.png.pvr.png + + frame + {{266,280},{52,82}} + offset + {-5,21} + rotated + + sourceColorRect + {{1,2},{52,82}} + sourceSize + {64,128} + + 123.png.pvr.png + + frame + {{356,270},{52,82}} + offset + {-5,22} + rotated + + sourceColorRect + {{1,1},{52,82}} + sourceSize + {64,128} + + 124.png.pvr.png + + frame + {{440,216},{52,82}} + offset + {-5,22} + rotated + + sourceColorRect + {{1,1},{52,82}} + sourceSize + {64,128} + + 125.png.pvr.png + + frame + {{356,216},{52,82}} + offset + {-5,22} + rotated + + sourceColorRect + {{1,1},{52,82}} + sourceSize + {64,128} + + 130.png.pvr.png + + frame + {{510,412},{74,74}} + offset + {-26,25} + rotated + + sourceColorRect + {{1,2},{74,74}} + sourceSize + {128,128} + + 131.png.pvr.png + + frame + {{586,412},{72,72}} + offset + {-26,26} + rotated + + sourceColorRect + {{2,2},{72,72}} + sourceSize + {128,128} + + 132.png.pvr.png + + frame + {{2,614},{72,72}} + offset + {-26,26} + rotated + + sourceColorRect + {{2,2},{72,72}} + sourceSize + {128,128} + + 133.png.pvr.png + + frame + {{318,468},{74,72}} + offset + {-26,26} + rotated + + sourceColorRect + {{1,2},{74,72}} + sourceSize + {128,128} + + 134.png.pvr.png + + frame + {{242,402},{74,74}} + offset + {-25,26} + rotated + + sourceColorRect + {{2,1},{74,74}} + sourceSize + {128,128} + + 135.png.pvr.png + + frame + {{2,476},{74,74}} + offset + {-26,26} + rotated + + sourceColorRect + {{1,1},{74,74}} + sourceSize + {128,128} + + 140.png.pvr.png + + frame + {{494,2},{88,70}} + offset + {-19,27} + rotated + + sourceColorRect + {{1,2},{88,70}} + sourceSize + {128,128} + + 141.png.pvr.png + + frame + {{206,74},{88,72}} + offset + {-18,27} + rotated + + sourceColorRect + {{2,1},{88,72}} + sourceSize + {128,128} + + 142.png.pvr.png + + frame + {{92,152},{88,70}} + offset + {-18,27} + rotated + + sourceColorRect + {{2,2},{88,70}} + sourceSize + {128,128} + + 143.png.pvr.png + + frame + {{2,152},{88,70}} + offset + {-18,27} + rotated + + sourceColorRect + {{2,2},{88,70}} + sourceSize + {128,128} + + 144.png.pvr.png + + frame + {{182,148},{88,70}} + offset + {-19,28} + rotated + + sourceColorRect + {{1,1},{88,70}} + sourceSize + {128,128} + + 145.png.pvr.png + + frame + {{92,80},{88,70}} + offset + {-19,27} + rotated + + sourceColorRect + {{1,2},{88,70}} + sourceSize + {128,128} + + 200.png.pvr.png + + frame + {{254,334},{80,66}} + offset + {-22,29} + rotated + + sourceColorRect + {{2,2},{80,66}} + sourceSize + {128,128} + + 201.png.pvr.png + + frame + {{272,150},{82,64}} + offset + {-21,31} + rotated + + sourceColorRect + {{2,1},{82,64}} + sourceSize + {128,128} + + 202.png.pvr.png + + frame + {{760,140},{84,60}} + offset + {-20,0} + rotated + + sourceColorRect + {{2,2},{84,60}} + sourceSize + {128,64} + + 203.png.pvr.png + + frame + {{182,220},{82,62}} + offset + {-21,32} + rotated + + sourceColorRect + {{2,1},{82,62}} + sourceSize + {128,128} + + 204.png.pvr.png + + frame + {{568,204},{82,66}} + offset + {-21,30} + rotated + + sourceColorRect + {{2,1},{82,66}} + sourceSize + {128,128} + + 205.png.pvr.png + + frame + {{652,208},{82,64}} + offset + {-22,31} + rotated + + sourceColorRect + {{1,1},{82,64}} + sourceSize + {128,128} + + 206.png.pvr.png + + frame + {{584,142},{84,60}} + offset + {-21,0} + rotated + + sourceColorRect + {{1,2},{84,60}} + sourceSize + {128,64} + + 207.png.pvr.png + + frame + {{2,224},{82,60}} + offset + {-21,0} + rotated + + sourceColorRect + {{2,2},{82,60}} + sourceSize + {128,64} + + 210.png.pvr.png + + frame + {{170,338},{62,80}} + offset + {-31,22} + rotated + + sourceColorRect + {{2,2},{62,80}} + sourceSize + {128,128} + + 211.png.pvr.png + + frame + {{78,522},{64,74}} + offset + {-30,25} + rotated + + sourceColorRect + {{2,2},{64,74}} + sourceSize + {128,128} + + 212.png.pvr.png + + frame + {{882,500},{68,70}} + offset + {-29,28} + rotated + + sourceColorRect + {{1,1},{68,70}} + sourceSize + {128,128} + + 213.png.pvr.png + + frame + {{660,412},{72,68}} + offset + {-27,29} + rotated + + sourceColorRect + {{1,1},{72,68}} + sourceSize + {128,128} + + 214.png.pvr.png + + frame + {{158,478},{74,68}} + offset + {-25,29} + rotated + + sourceColorRect + {{2,1},{74,68}} + sourceSize + {128,128} + + 215.png.pvr.png + + frame + {{600,274},{76,68}} + offset + {-24,28} + rotated + + sourceColorRect + {{2,2},{76,68}} + sourceSize + {128,128} + + 216.png.pvr.png + + frame + {{432,342},{76,70}} + offset + {-25,27} + rotated + + sourceColorRect + {{1,2},{76,70}} + sourceSize + {128,128} + + 217.png.pvr.png + + frame + {{336,396},{70,76}} + offset + {-28,24} + rotated + + sourceColorRect + {{1,2},{70,76}} + sourceSize + {128,128} + + 220.png.pvr.png + + frame + {{2,552},{60,74}} + offset + {-1,25} + rotated + + sourceColorRect + {{1,2},{60,74}} + sourceSize + {64,128} + + 221.png.pvr.png + + frame + {{734,472},{56,72}} + offset + {-2,26} + rotated + + sourceColorRect + {{2,2},{56,72}} + sourceSize + {64,128} + + 222.png.pvr.png + + frame + {{154,548},{56,74}} + offset + {-2,25} + rotated + + sourceColorRect + {{2,2},{56,74}} + sourceSize + {64,128} + + 223.png.pvr.png + + frame + {{808,464},{56,72}} + offset + {-2,26} + rotated + + sourceColorRect + {{2,2},{56,72}} + sourceSize + {64,128} + + 224.png.pvr.png + + frame + {{734,412},{58,72}} + offset + {-1,26} + rotated + + sourceColorRect + {{2,2},{58,72}} + sourceSize + {64,128} + + 225.png.pvr.png + + frame + {{234,536},{56,74}} + offset + {-3,26} + rotated + + sourceColorRect + {{1,1},{56,74}} + sourceSize + {64,128} + + 226.png.pvr.png + + frame + {{234,478},{56,74}} + offset + {-2,25} + rotated + + sourceColorRect + {{2,2},{56,74}} + sourceSize + {64,128} + + 227.png.pvr.png + + frame + {{912,366},{56,76}} + offset + {-2,25} + rotated + + sourceColorRect + {{2,1},{56,76}} + sourceSize + {64,128} + + 230.png.pvr.png + + frame + {{414,414},{74,72}} + offset + {-25,26} + rotated + + sourceColorRect + {{2,2},{74,72}} + sourceSize + {128,128} + + 231.png.pvr.png + + frame + {{82,446},{74,74}} + offset + {-25,25} + rotated + + sourceColorRect + {{2,2},{74,74}} + sourceSize + {128,128} + + 232.png.pvr.png + + frame + {{166,402},{74,74}} + offset + {-25,25} + rotated + + sourceColorRect + {{2,2},{74,74}} + sourceSize + {128,128} + + 233.png.pvr.png + + frame + {{954,500},{68,64}} + offset + {-29,30} + rotated + + sourceColorRect + {{1,2},{68,64}} + sourceSize + {128,128} + + 234.png.pvr.png + + frame + {{880,570},{62,66}} + offset + {-32,29} + rotated + + sourceColorRect + {{1,2},{62,66}} + sourceSize + {128,128} + + 235.png.pvr.png + + frame + {{954,566},{62,68}} + offset + {-31,28} + rotated + + sourceColorRect + {{2,2},{62,68}} + sourceSize + {128,128} + + 236.png.pvr.png + + frame + {{808,522},{66,70}} + offset + {-29,27} + rotated + + sourceColorRect + {{2,2},{66,70}} + sourceSize + {128,128} + + 237.png.pvr.png + + frame + {{586,486},{70,70}} + offset + {-27,27} + rotated + + sourceColorRect + {{2,2},{70,70}} + sourceSize + {128,128} + + 240.png.pvr.png + + frame + {{350,324},{80,70}} + offset + {-22,27} + rotated + + sourceColorRect + {{2,2},{80,70}} + sourceSize + {128,128} + + 241.png.pvr.png + + frame + {{940,74},{82,74}} + offset + {-21,26} + rotated + + sourceColorRect + {{2,1},{82,74}} + sourceSize + {128,128} + + 242.png.pvr.png + + frame + {{938,150},{84,72}} + offset + {-20,26} + rotated + + sourceColorRect + {{2,2},{84,72}} + sourceSize + {128,128} + + 243.png.pvr.png + + frame + {{928,224},{82,72}} + offset + {-21,27} + rotated + + sourceColorRect + {{2,1},{82,72}} + sourceSize + {128,128} + + 244.png.pvr.png + + frame + {{394,146},{82,68}} + offset + {-22,28} + rotated + + sourceColorRect + {{1,2},{82,68}} + sourceSize + {128,128} + + 245.png.pvr.png + + frame + {{844,204},{82,72}} + offset + {-22,26} + rotated + + sourceColorRect + {{1,2},{82,72}} + sourceSize + {128,128} + + 246.png.pvr.png + + frame + {{852,130},{84,72}} + offset + {-21,27} + rotated + + sourceColorRect + {{1,1},{84,72}} + sourceSize + {128,128} + + 247.png.pvr.png + + frame + {{484,144},{82,70}} + offset + {-21,27} + rotated + + sourceColorRect + {{2,2},{82,70}} + sourceSize + {128,128} + + 300.png.pvr.png + + frame + {{584,2},{88,68}} + offset + {-19,28} + rotated + + sourceColorRect + {{1,2},{88,68}} + sourceSize + {128,128} + + 301.png.pvr.png + + frame + {{304,66},{88,82}} + offset + {-19,22} + rotated + + sourceColorRect + {{1,1},{88,82}} + sourceSize + {128,128} + + 302.png.pvr.png + + frame + {{104,2},{100,76}} + offset + {-12,25} + rotated + + sourceColorRect + {{2,1},{100,76}} + sourceSize + {128,128} + + 303.png.pvr.png + + frame + {{852,72},{56,86}} + offset + {-3,20} + rotated + + sourceColorRect + {{1,1},{56,86}} + sourceSize + {64,128} + + 304.png.pvr.png + + frame + {{86,224},{54,82}} + offset + {-4,21} + rotated + + sourceColorRect + {{1,2},{54,82}} + sourceSize + {64,128} + + 305.png.pvr.png + + frame + {{2,340},{80,72}} + offset + {-22,26} + rotated + + sourceColorRect + {{2,2},{80,72}} + sourceSize + {128,128} + + 310.png.pvr.png + + frame + {{912,298},{66,76}} + offset + {-30,25} + rotated + + sourceColorRect + {{1,1},{66,76}} + sourceSize + {128,128} + + 311.png.pvr.png + + frame + {{2,286},{52,82}} + offset + {-5,21} + rotated + + sourceColorRect + {{1,2},{52,82}} + sourceSize + {64,128} + + 312.png.pvr.png + + frame + {{944,2},{70,78}} + offset + {-27,23} + rotated + + sourceColorRect + {{2,2},{70,78}} + sourceSize + {128,128} + + 313.png.pvr.png + + frame + {{760,202},{82,72}} + offset + {-22,26} + rotated + + sourceColorRect + {{1,2},{82,72}} + sourceSize + {128,128} + + 314.png.pvr.png + + frame + {{272,216},{82,62}} + offset + {-21,31} + rotated + + sourceColorRect + {{2,2},{82,62}} + sourceSize + {128,128} + + 315.png.pvr.png + + frame + {{764,72},{86,66}} + offset + {-20,29} + rotated + + sourceColorRect + {{1,2},{86,66}} + sourceSize + {128,128} + + 320.png.pvr.png + + frame + {{86,280},{52,82}} + offset + {-5,22} + rotated + + sourceColorRect + {{1,1},{52,82}} + sourceSize + {64,128} + + 321.png.pvr.png + + frame + {{834,278},{66,76}} + offset + {-30,25} + rotated + + sourceColorRect + {{1,1},{66,76}} + sourceSize + {128,128} + + 322.png.pvr.png + + frame + {{2,414},{60,78}} + offset + {0,24} + rotated + + sourceColorRect + {{2,1},{60,78}} + sourceSize + {64,128} + + 323.png.pvr.png + + frame + {{304,2},{96,62}} + offset + {-15,31} + rotated + + sourceColorRect + {{1,2},{96,62}} + sourceSize + {128,128} + + 324.png.pvr.png + + frame + {{674,140},{84,66}} + offset + {-20,30} + rotated + + sourceColorRect + {{2,1},{84,66}} + sourceSize + {128,128} + + 325.png.pvr.png + + frame + {{660,482},{54,72}} + offset + {-4,26} + rotated + + sourceColorRect + {{1,2},{54,72}} + sourceSize + {64,128} + + 330.png.pvr.png + + frame + {{912,424},{74,74}} + offset + {-26,26} + rotated + + sourceColorRect + {{1,1},{74,74}} + sourceSize + {128,128} + + 331.png.pvr.png + + frame + {{206,2},{96,70}} + offset + {-15,27} + rotated + + sourceColorRect + {{1,2},{96,70}} + sourceSize + {128,128} + + 332.png.pvr.png + + frame + {{402,2},{90,72}} + offset + {-17,26} + rotated + + sourceColorRect + {{2,2},{90,72}} + sourceSize + {128,128} + + 333.png.pvr.png + + frame + {{522,272},{72,76}} + offset + {-26,24} + rotated + + sourceColorRect + {{2,2},{72,76}} + sourceSize + {128,128} + + 334.png.pvr.png + + frame + {{834,346},{60,76}} + offset + {0,24} + rotated + + sourceColorRect + {{2,2},{60,76}} + sourceSize + {64,128} + + 335.png.pvr.png + + frame + {{78,588},{52,74}} + offset + {-5,25} + rotated + + sourceColorRect + {{1,2},{52,74}} + sourceSize + {64,128} + + 340.png.pvr.png + + frame + {{2,80},{88,70}} + offset + {-19,27} + rotated + + sourceColorRect + {{1,2},{88,70}} + sourceSize + {128,128} + + 341.png.pvr.png + + frame + {{674,72},{88,66}} + offset + {-19,30} + rotated + + sourceColorRect + {{1,1},{88,66}} + sourceSize + {128,128} + + 342.png.pvr.png + + frame + {{2,2},{100,76}} + offset + {-12,25} + rotated + + sourceColorRect + {{2,1},{100,76}} + sourceSize + {128,128} + + 343.png.pvr.png + + frame + {{84,388},{56,80}} + offset + {-3,22} + rotated + + sourceColorRect + {{1,2},{56,80}} + sourceSize + {64,128} + + 344.png.pvr.png + + frame + {{834,408},{54,76}} + offset + {-4,24} + rotated + + sourceColorRect + {{1,2},{54,76}} + sourceSize + {64,128} + + 345.png.pvr.png + + frame + {{440,270},{80,70}} + offset + {-22,27} + rotated + + sourceColorRect + {{2,2},{80,70}} + sourceSize + {128,128} + + + metadata + + format + 2 + realTextureFileName + xiaoxiao.png + size + {1024,1024} + smartupdate + $TexturePacker:SmartUpdate:1be7b30ce7e566ff84a343e6f146f0ea$ + textureFileName + xiaoxiao.png + + + diff --git a/cc_moba/assets/img/xiaoxiao.plist.meta b/cc_moba/assets/img/xiaoxiao.plist.meta new file mode 100644 index 0000000..e24693d --- /dev/null +++ b/cc_moba/assets/img/xiaoxiao.plist.meta @@ -0,0 +1,2212 @@ +{ + "ver": "1.2.4", + "uuid": "fd41d6cf-8d57-452d-bc0d-ccb46b1c937b", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "size": { + "width": 1024, + "height": 1024 + }, + "type": "Texture Packer", + "subMetas": { + "100.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f819869e-e791-4a72-9a6f-abdb130d0943", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -19, + "offsetY": 28, + "trimX": 394, + "trimY": 76, + "width": 88, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "101.png.pvr.png": { + "ver": "1.0.3", + "uuid": "46aaf8bc-3950-457b-ba62-e9b71ffad28c", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -18, + "offsetY": 29, + "trimX": 494, + "trimY": 74, + "width": 88, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "102.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a870d41a-ab2e-4a99-a6e4-c2e9718d8df0", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -18, + "offsetY": 29, + "trimX": 584, + "trimY": 72, + "width": 88, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "103.png.pvr.png": { + "ver": "1.0.3", + "uuid": "88f64431-06e1-4420-ad3d-251fadcc57e3", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -18, + "offsetY": 29, + "trimX": 854, + "trimY": 2, + "width": 88, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "104.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0e4fe3f9-8b94-41b6-89a2-a1a3d023e5e6", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -19, + "offsetY": 28, + "trimX": 764, + "trimY": 2, + "width": 88, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "105.png.pvr.png": { + "ver": "1.0.3", + "uuid": "2c55bd77-4c3a-4d75-8a62-654876d65c63", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -19, + "offsetY": 28, + "trimX": 674, + "trimY": 2, + "width": 88, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "110.png.pvr.png": { + "ver": "1.0.3", + "uuid": "df5674eb-b55a-457c-870c-377f9ac2b69e", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -30, + "offsetY": 25, + "trimX": 678, + "trimY": 344, + "width": 66, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "111.png.pvr.png": { + "ver": "1.0.3", + "uuid": "38acf828-8b25-41fc-aca0-c83a04989fd5", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -29, + "offsetY": 24, + "trimX": 756, + "trimY": 276, + "width": 68, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "112.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c922a74c-9fbd-4c74-a9c3-28a10f585f7e", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -29, + "offsetY": 25, + "trimX": 678, + "trimY": 274, + "width": 68, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "113.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d9328cab-a389-48a1-ac4b-01ed35a43d1f", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -29, + "offsetY": 24, + "trimX": 600, + "trimY": 344, + "width": 66, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "114.png.pvr.png": { + "ver": "1.0.3", + "uuid": "456931a7-2fb7-4a80-b831-6c3019e5a031", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -30, + "offsetY": 24, + "trimX": 756, + "trimY": 346, + "width": 64, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "115.png.pvr.png": { + "ver": "1.0.3", + "uuid": "dab625de-b17f-44b7-8cc7-6dcddc725f7e", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -30, + "offsetY": 24, + "trimX": 510, + "trimY": 346, + "width": 64, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "120.png.pvr.png": { + "ver": "1.0.3", + "uuid": "32489883-0044-42a6-9685-235158dc2dc4", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 22, + "trimX": 86, + "trimY": 334, + "width": 52, + "height": 82, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "121.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d44f7551-e116-4de9-a73c-7dd9f36d0a0a", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 21, + "trimX": 170, + "trimY": 284, + "width": 52, + "height": 82, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "122.png.pvr.png": { + "ver": "1.0.3", + "uuid": "89f2d8ac-6ac2-4016-b665-177b6aa704b8", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 21, + "trimX": 266, + "trimY": 280, + "width": 52, + "height": 82, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "123.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b764ce6a-6f6a-4b1a-9bad-9a71549ee95b", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 22, + "trimX": 356, + "trimY": 270, + "width": 52, + "height": 82, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "124.png.pvr.png": { + "ver": "1.0.3", + "uuid": "5b98955b-497d-4057-8f41-dc81f7652491", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 22, + "trimX": 440, + "trimY": 216, + "width": 52, + "height": 82, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "125.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c21a8804-d325-4857-9a9a-ebaad828c3ff", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 22, + "trimX": 356, + "trimY": 216, + "width": 52, + "height": 82, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "130.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ac6dfdfb-3591-47a4-8133-ee69a7d59513", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -26, + "offsetY": 25, + "trimX": 510, + "trimY": 412, + "width": 74, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "131.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a501d7bb-e187-4676-baca-c1dfaaca5fdd", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -26, + "offsetY": 26, + "trimX": 586, + "trimY": 412, + "width": 72, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "132.png.pvr.png": { + "ver": "1.0.3", + "uuid": "efd7d9e3-e74c-4042-b9ed-27f4bc43bae3", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -26, + "offsetY": 26, + "trimX": 2, + "trimY": 614, + "width": 72, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "133.png.pvr.png": { + "ver": "1.0.3", + "uuid": "cb50a6df-fd5d-48df-a2e0-35e666c896c4", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -26, + "offsetY": 26, + "trimX": 318, + "trimY": 468, + "width": 74, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "134.png.pvr.png": { + "ver": "1.0.3", + "uuid": "bf8923cc-6481-4b3f-b387-de051639edf6", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -25, + "offsetY": 26, + "trimX": 242, + "trimY": 402, + "width": 74, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "135.png.pvr.png": { + "ver": "1.0.3", + "uuid": "23ea92ae-f005-40db-a72e-afbb8596b55d", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -26, + "offsetY": 26, + "trimX": 2, + "trimY": 476, + "width": 74, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "140.png.pvr.png": { + "ver": "1.0.3", + "uuid": "233f1138-ad6c-47d4-ba99-81ccaaa4875f", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -19, + "offsetY": 27, + "trimX": 494, + "trimY": 2, + "width": 88, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "141.png.pvr.png": { + "ver": "1.0.3", + "uuid": "daa8b0af-e2ac-4898-91e8-cafef3f903d8", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -18, + "offsetY": 27, + "trimX": 206, + "trimY": 74, + "width": 88, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "142.png.pvr.png": { + "ver": "1.0.3", + "uuid": "06b89ee8-36b4-4f74-8321-b7b76d32321f", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -18, + "offsetY": 27, + "trimX": 92, + "trimY": 152, + "width": 88, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "143.png.pvr.png": { + "ver": "1.0.3", + "uuid": "8958cb08-7c9f-45f0-ae28-62c608286c4e", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -18, + "offsetY": 27, + "trimX": 2, + "trimY": 152, + "width": 88, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "144.png.pvr.png": { + "ver": "1.0.3", + "uuid": "26842df2-471b-4f40-abfa-8f89c2c595e3", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -19, + "offsetY": 28, + "trimX": 182, + "trimY": 148, + "width": 88, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "145.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e2a387bd-342a-4133-aec9-2cf83afe00a2", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -19, + "offsetY": 27, + "trimX": 92, + "trimY": 80, + "width": 88, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "200.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0fd1ffd3-8031-4b43-8ecb-69283e8376f1", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -22, + "offsetY": 29, + "trimX": 254, + "trimY": 334, + "width": 80, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "201.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4636dd54-32c7-41c3-b87a-2cc7561aac35", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -21, + "offsetY": 31, + "trimX": 272, + "trimY": 150, + "width": 82, + "height": 64, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "202.png.pvr.png": { + "ver": "1.0.3", + "uuid": "8d596e64-8656-4b11-87b3-dfad0bd8ae94", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -20, + "offsetY": 0, + "trimX": 760, + "trimY": 140, + "width": 84, + "height": 60, + "rawWidth": 128, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "203.png.pvr.png": { + "ver": "1.0.3", + "uuid": "37b73f02-341c-43c7-84f3-7ccb37245aeb", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -21, + "offsetY": 32, + "trimX": 182, + "trimY": 220, + "width": 82, + "height": 62, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "204.png.pvr.png": { + "ver": "1.0.3", + "uuid": "1e76c937-b751-4f1f-8481-cff21b857863", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -21, + "offsetY": 30, + "trimX": 568, + "trimY": 204, + "width": 82, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "205.png.pvr.png": { + "ver": "1.0.3", + "uuid": "6d565e76-9d98-44f4-83ad-d6965db6244b", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -22, + "offsetY": 31, + "trimX": 652, + "trimY": 208, + "width": 82, + "height": 64, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "206.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e0697db6-760b-4cca-9603-d48f764c4af8", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -21, + "offsetY": 0, + "trimX": 584, + "trimY": 142, + "width": 84, + "height": 60, + "rawWidth": 128, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "207.png.pvr.png": { + "ver": "1.0.3", + "uuid": "680856ca-c52e-44f4-bf9d-6879c43ffb57", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -21, + "offsetY": 0, + "trimX": 2, + "trimY": 224, + "width": 82, + "height": 60, + "rawWidth": 128, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "210.png.pvr.png": { + "ver": "1.0.3", + "uuid": "9f2cf849-c20e-4c86-bb35-0c52ff20f85f", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -31, + "offsetY": 22, + "trimX": 170, + "trimY": 338, + "width": 62, + "height": 80, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "211.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d20784fd-8676-4689-9dda-8c045b06ede3", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -30, + "offsetY": 25, + "trimX": 78, + "trimY": 522, + "width": 64, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "212.png.pvr.png": { + "ver": "1.0.3", + "uuid": "78891935-5f0e-4e04-b261-05a36ad92c87", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -29, + "offsetY": 28, + "trimX": 882, + "trimY": 500, + "width": 68, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "213.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a8a5f369-70d9-462a-82c2-aee7bf180449", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -27, + "offsetY": 29, + "trimX": 660, + "trimY": 412, + "width": 72, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "214.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3527244f-69bf-46ae-8e89-931d36f6ce1d", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -25, + "offsetY": 29, + "trimX": 158, + "trimY": 478, + "width": 74, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "215.png.pvr.png": { + "ver": "1.0.3", + "uuid": "90651f3e-1bd4-4188-867e-258b046d1e21", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -24, + "offsetY": 28, + "trimX": 600, + "trimY": 274, + "width": 76, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "216.png.pvr.png": { + "ver": "1.0.3", + "uuid": "98d38311-35d6-4ef8-8b17-43904d615207", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -25, + "offsetY": 27, + "trimX": 432, + "trimY": 342, + "width": 76, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "217.png.pvr.png": { + "ver": "1.0.3", + "uuid": "380eb3d6-a7f6-44ea-9b53-1d29cd739a45", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -28, + "offsetY": 24, + "trimX": 336, + "trimY": 396, + "width": 70, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "220.png.pvr.png": { + "ver": "1.0.3", + "uuid": "229ce72c-9cd8-4f14-85f6-e8e30e397624", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": 25, + "trimX": 2, + "trimY": 552, + "width": 60, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "221.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ee90cb89-dafe-4134-a7ed-bdbe4a996dae", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 26, + "trimX": 734, + "trimY": 472, + "width": 56, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "222.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f611b513-51ae-429d-9f57-07e02b42ec85", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 25, + "trimX": 154, + "trimY": 548, + "width": 56, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "223.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4ab2fa84-bc55-4a64-93dd-7c8208d82085", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 26, + "trimX": 808, + "trimY": 464, + "width": 56, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "224.png.pvr.png": { + "ver": "1.0.3", + "uuid": "355eb227-f9af-4f79-879e-1577d6a1136d", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": 26, + "trimX": 734, + "trimY": 412, + "width": 58, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "225.png.pvr.png": { + "ver": "1.0.3", + "uuid": "841ac5f8-d084-4250-a927-738e4a36923a", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -3, + "offsetY": 26, + "trimX": 234, + "trimY": 536, + "width": 56, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "226.png.pvr.png": { + "ver": "1.0.3", + "uuid": "795fde66-6f0c-40b3-8a00-6b805f2efef3", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 25, + "trimX": 234, + "trimY": 478, + "width": 56, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "227.png.pvr.png": { + "ver": "1.0.3", + "uuid": "8d201533-82a2-4a45-b717-16a72f984691", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 25, + "trimX": 912, + "trimY": 366, + "width": 56, + "height": 76, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "230.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b760982f-9e3c-496f-bcfc-eecb4c1160f4", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -25, + "offsetY": 26, + "trimX": 414, + "trimY": 414, + "width": 74, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "231.png.pvr.png": { + "ver": "1.0.3", + "uuid": "5ccba57a-b32c-4ddf-b102-5ebecafdf0bc", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -25, + "offsetY": 25, + "trimX": 82, + "trimY": 446, + "width": 74, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "232.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b0b1596b-7f51-4717-89f2-45b79dcd23f6", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -25, + "offsetY": 25, + "trimX": 166, + "trimY": 402, + "width": 74, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "233.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3a4f2ead-8a05-4c10-950c-d1ea5024e153", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 30, + "trimX": 954, + "trimY": 500, + "width": 68, + "height": 64, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "234.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0291cc87-661e-4cca-9c93-0df1b92057e9", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -32, + "offsetY": 29, + "trimX": 880, + "trimY": 570, + "width": 62, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "235.png.pvr.png": { + "ver": "1.0.3", + "uuid": "5ef862cd-ed94-4356-add9-d22805544059", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -31, + "offsetY": 28, + "trimX": 954, + "trimY": 566, + "width": 62, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "236.png.pvr.png": { + "ver": "1.0.3", + "uuid": "2b2752d5-d3b4-407a-ad03-84b9422a1a0a", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -29, + "offsetY": 27, + "trimX": 808, + "trimY": 522, + "width": 66, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "237.png.pvr.png": { + "ver": "1.0.3", + "uuid": "2c233548-84ef-4415-80e7-4801406ffead", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -27, + "offsetY": 27, + "trimX": 586, + "trimY": 486, + "width": 70, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "240.png.pvr.png": { + "ver": "1.0.3", + "uuid": "489db2c7-20fb-4a09-934d-d7f7ec04da60", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -22, + "offsetY": 27, + "trimX": 350, + "trimY": 324, + "width": 80, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "241.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c0973a5d-f4cf-4d75-8e3e-97d68ac9acf9", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -21, + "offsetY": 26, + "trimX": 940, + "trimY": 74, + "width": 82, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "242.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ff210acc-971c-4c98-91c3-b1fb4a3fd7fc", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -20, + "offsetY": 26, + "trimX": 938, + "trimY": 150, + "width": 84, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "243.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c5305cea-0efc-4592-878c-624e1ee523fa", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -21, + "offsetY": 27, + "trimX": 928, + "trimY": 224, + "width": 82, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "244.png.pvr.png": { + "ver": "1.0.3", + "uuid": "aaa32f73-35fe-4c1a-8ede-3f0ddd61b2a0", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -22, + "offsetY": 28, + "trimX": 394, + "trimY": 146, + "width": 82, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "245.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4d892ef1-4850-4233-a4c0-e0f8e67a18f8", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -22, + "offsetY": 26, + "trimX": 844, + "trimY": 204, + "width": 82, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "246.png.pvr.png": { + "ver": "1.0.3", + "uuid": "be4cae01-ba06-4d6d-bf5e-93f3ac92a84e", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -21, + "offsetY": 27, + "trimX": 852, + "trimY": 130, + "width": 84, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "247.png.pvr.png": { + "ver": "1.0.3", + "uuid": "05658697-9ca5-44e0-ab48-f741de8e4b1b", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -21, + "offsetY": 27, + "trimX": 484, + "trimY": 144, + "width": 82, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "300.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b683c273-df1a-4047-858c-c81bd86e11cd", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -19, + "offsetY": 28, + "trimX": 584, + "trimY": 2, + "width": 88, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "301.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c0a2dac3-8b32-4077-9f3e-2714c2fa40f8", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -19, + "offsetY": 22, + "trimX": 304, + "trimY": 66, + "width": 88, + "height": 82, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "302.png.pvr.png": { + "ver": "1.0.3", + "uuid": "6a4f06df-da82-4c66-8f93-88056964c1ac", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -12, + "offsetY": 25, + "trimX": 104, + "trimY": 2, + "width": 100, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "303.png.pvr.png": { + "ver": "1.0.3", + "uuid": "02f31941-4dcc-4bc7-a114-424a62a9304d", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -3, + "offsetY": 20, + "trimX": 852, + "trimY": 72, + "width": 56, + "height": 86, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "304.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d48f2cde-3642-4205-a91b-f524ccd1d7cd", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -4, + "offsetY": 21, + "trimX": 86, + "trimY": 224, + "width": 54, + "height": 82, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "305.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e6d5a497-377d-4fb3-9d48-d018f7363ed0", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -22, + "offsetY": 26, + "trimX": 2, + "trimY": 340, + "width": 80, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "310.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f5d9846f-2959-40b3-accf-e37a8effa48d", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -30, + "offsetY": 25, + "trimX": 912, + "trimY": 298, + "width": 66, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "311.png.pvr.png": { + "ver": "1.0.3", + "uuid": "1130b27e-d22c-49c4-8937-557523d0fda0", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 21, + "trimX": 2, + "trimY": 286, + "width": 52, + "height": 82, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "312.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f5843588-edad-4f8b-ba1f-1460b45dfdc8", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -27, + "offsetY": 23, + "trimX": 944, + "trimY": 2, + "width": 70, + "height": 78, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "313.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4ce82255-445a-4239-b9a1-725bf354391a", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -22, + "offsetY": 26, + "trimX": 760, + "trimY": 202, + "width": 82, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "314.png.pvr.png": { + "ver": "1.0.3", + "uuid": "1332abe3-7943-4b98-a340-6c428ed3403f", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -21, + "offsetY": 31, + "trimX": 272, + "trimY": 216, + "width": 82, + "height": 62, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "315.png.pvr.png": { + "ver": "1.0.3", + "uuid": "1156e667-613b-46a2-8317-c99e4eb979bf", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -20, + "offsetY": 29, + "trimX": 764, + "trimY": 72, + "width": 86, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "320.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a1b7776b-2535-4909-a75b-9897f1d74550", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 22, + "trimX": 86, + "trimY": 280, + "width": 52, + "height": 82, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "321.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c08d7924-1c78-4d33-94cd-de929f9a4257", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -30, + "offsetY": 25, + "trimX": 834, + "trimY": 278, + "width": 66, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "322.png.pvr.png": { + "ver": "1.0.3", + "uuid": "df823eb8-cce0-45c8-8790-7bda3db71204", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 24, + "trimX": 2, + "trimY": 414, + "width": 60, + "height": 78, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "323.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4d7f7110-fa87-4c14-83c1-aa658e0b9a10", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -15, + "offsetY": 31, + "trimX": 304, + "trimY": 2, + "width": 96, + "height": 62, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "324.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b893c976-4948-43d6-9deb-b0f8c923c202", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -20, + "offsetY": 30, + "trimX": 674, + "trimY": 140, + "width": 84, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "325.png.pvr.png": { + "ver": "1.0.3", + "uuid": "136eb1ea-c563-4a4a-9736-02014b591e4e", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -4, + "offsetY": 26, + "trimX": 660, + "trimY": 482, + "width": 54, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "330.png.pvr.png": { + "ver": "1.0.3", + "uuid": "88d5b3d5-1e72-427a-ab69-88639f01ba21", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -26, + "offsetY": 26, + "trimX": 912, + "trimY": 424, + "width": 74, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "331.png.pvr.png": { + "ver": "1.0.3", + "uuid": "780e8c39-f22e-4050-8f04-d06b95f3e0da", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -15, + "offsetY": 27, + "trimX": 206, + "trimY": 2, + "width": 96, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "332.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0daac86e-3843-4c05-ba3a-bcb598ebbf73", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -17, + "offsetY": 26, + "trimX": 402, + "trimY": 2, + "width": 90, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "333.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f7a10aff-0e3b-4a27-87d9-d232e1ce65bd", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -26, + "offsetY": 24, + "trimX": 522, + "trimY": 272, + "width": 72, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "334.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a262271d-4484-484a-a1f2-ea3225e48d0b", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 24, + "trimX": 834, + "trimY": 346, + "width": 60, + "height": 76, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "335.png.pvr.png": { + "ver": "1.0.3", + "uuid": "1637b01d-21a0-4392-80d4-52a8902db184", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 25, + "trimX": 78, + "trimY": 588, + "width": 52, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "340.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ee34642e-dcf2-41b9-93bb-dafca6000d61", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -19, + "offsetY": 27, + "trimX": 2, + "trimY": 80, + "width": 88, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "341.png.pvr.png": { + "ver": "1.0.3", + "uuid": "06afa532-2df0-4312-ba58-5ff199ae906c", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -19, + "offsetY": 30, + "trimX": 674, + "trimY": 72, + "width": 88, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "342.png.pvr.png": { + "ver": "1.0.3", + "uuid": "275b1a0f-036f-43ae-8bea-559c34468024", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -12, + "offsetY": 25, + "trimX": 2, + "trimY": 2, + "width": 100, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "343.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d15d25ac-429e-4723-9477-bb94c160faca", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -3, + "offsetY": 22, + "trimX": 84, + "trimY": 388, + "width": 56, + "height": 80, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "344.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d6569e1c-85a4-4524-9ae5-5135f8f29a7f", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -4, + "offsetY": 24, + "trimX": 834, + "trimY": 408, + "width": 54, + "height": 76, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "345.png.pvr.png": { + "ver": "1.0.3", + "uuid": "50a5c246-6ae1-43ad-9995-3bf1af8f2767", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -22, + "offsetY": 27, + "trimX": 440, + "trimY": 270, + "width": 80, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/img/xiaoxiao.png b/cc_moba/assets/img/xiaoxiao.png new file mode 100644 index 0000000..b00a247 Binary files /dev/null and b/cc_moba/assets/img/xiaoxiao.png differ diff --git a/cc_moba/assets/img/xiaoxiao.png.meta b/cc_moba/assets/img/xiaoxiao.png.meta new file mode 100644 index 0000000..f590b7b --- /dev/null +++ b/cc_moba/assets/img/xiaoxiao.png.meta @@ -0,0 +1,30 @@ +{ + "ver": "1.0.0", + "uuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "subMetas": { + "xiaoxiao": { + "ver": "1.0.3", + "uuid": "327ae809-54ff-4e9a-934e-e816a2233bba", + "rawTextureUuid": "72c49ed0-2447-4bd4-9ad9-44b71a92f3da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 168, + "trimX": 2, + "trimY": 2, + "width": 1020, + "height": 684, + "rawWidth": 1024, + "rawHeight": 1024, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/img/xueren.plist b/cc_moba/assets/img/xueren.plist new file mode 100644 index 0000000..c6481cf --- /dev/null +++ b/cc_moba/assets/img/xueren.plist @@ -0,0 +1,1322 @@ + + + + + frames + + 100.png.pvr.png + + frame + {{134,224},{66,76}} + offset + {-29,25} + rotated + + sourceColorRect + {{2,1},{66,76}} + sourceSize + {128,128} + + 101.png.pvr.png + + frame + {{324,2},{68,78}} + offset + {-28,23} + rotated + + sourceColorRect + {{2,2},{68,78}} + sourceSize + {128,128} + + 102.png.pvr.png + + frame + {{564,2},{66,78}} + offset + {-29,24} + rotated + + sourceColorRect + {{2,1},{66,78}} + sourceSize + {128,128} + + 103.png.pvr.png + + frame + {{374,72},{64,74}} + offset + {-30,25} + rotated + + sourceColorRect + {{2,2},{64,74}} + sourceSize + {128,128} + + 104.png.pvr.png + + frame + {{158,150},{64,72}} + offset + {-30,26} + rotated + + sourceColorRect + {{2,2},{64,72}} + sourceSize + {128,128} + + 105.png.pvr.png + + frame + {{854,60},{66,74}} + offset + {-30,26} + rotated + + sourceColorRect + {{1,1},{66,74}} + sourceSize + {128,128} + + 110.png.pvr.png + + frame + {{880,212},{62,74}} + offset + {-31,25} + rotated + + sourceColorRect + {{2,2},{62,74}} + sourceSize + {128,128} + + 111.png.pvr.png + + frame + {{728,68},{68,74}} + offset + {-29,25} + rotated + + sourceColorRect + {{1,2},{68,74}} + sourceSize + {128,128} + + 112.png.pvr.png + + frame + {{440,70},{70,74}} + offset + {-28,26} + rotated + + sourceColorRect + {{1,1},{70,74}} + sourceSize + {128,128} + + 113.png.pvr.png + + frame + {{138,372},{66,72}} + offset + {-30,26} + rotated + + sourceColorRect + {{1,2},{66,72}} + sourceSize + {128,128} + + 114.png.pvr.png + + frame + {{564,296},{60,72}} + offset + {0,26} + rotated + + sourceColorRect + {{2,2},{60,72}} + sourceSize + {64,128} + + 115.png.pvr.png + + frame + {{266,224},{60,74}} + offset + {-1,26} + rotated + + sourceColorRect + {{1,1},{60,74}} + sourceSize + {64,128} + + 120.png.pvr.png + + frame + {{762,358},{50,72}} + offset + {-5,26} + rotated + + sourceColorRect + {{2,2},{50,72}} + sourceSize + {64,128} + + 121.png.pvr.png + + frame + {{512,222},{56,72}} + offset + {-3,26} + rotated + + sourceColorRect + {{1,2},{56,72}} + sourceSize + {64,128} + + 122.png.pvr.png + + frame + {{758,410},{58,72}} + offset + {-1,26} + rotated + + sourceColorRect + {{2,2},{58,72}} + sourceSize + {64,128} + + 123.png.pvr.png + + frame + {{430,148},{56,72}} + offset + {-2,27} + rotated + + sourceColorRect + {{2,1},{56,72}} + sourceSize + {64,128} + + 124.png.pvr.png + + frame + {{760,144},{50,72}} + offset + {-5,26} + rotated + + sourceColorRect + {{2,2},{50,72}} + sourceSize + {64,128} + + 125.png.pvr.png + + frame + {{812,144},{48,72}} + offset + {-6,26} + rotated + + sourceColorRect + {{2,2},{48,72}} + sourceSize + {64,128} + + 130.png.pvr.png + + frame + {{930,132},{56,74}} + offset + {-2,26} + rotated + + sourceColorRect + {{2,1},{56,74}} + sourceSize + {64,128} + + 131.png.pvr.png + + frame + {{570,218},{58,74}} + offset + {-1,25} + rotated + + sourceColorRect + {{2,2},{58,74}} + sourceSize + {64,128} + + 132.png.pvr.png + + frame + {{766,218},{56,74}} + offset + {-2,25} + rotated + + sourceColorRect + {{2,2},{56,74}} + sourceSize + {64,128} + + 133.png.pvr.png + + frame + {{922,56},{54,74}} + offset + {-3,25} + rotated + + sourceColorRect + {{2,2},{54,74}} + sourceSize + {64,128} + + 134.png.pvr.png + + frame + {{824,218},{54,74}} + offset + {-3,26} + rotated + + sourceColorRect + {{2,1},{54,74}} + sourceSize + {64,128} + + 135.png.pvr.png + + frame + {{944,208},{54,72}} + offset + {-3,26} + rotated + + sourceColorRect + {{2,2},{54,72}} + sourceSize + {64,128} + + 140.png.pvr.png + + frame + {{956,350},{66,66}} + offset + {-29,29} + rotated + + sourceColorRect + {{2,2},{66,66}} + sourceSize + {128,128} + + 141.png.pvr.png + + frame + {{284,372},{68,66}} + offset + {-28,29} + rotated + + sourceColorRect + {{2,2},{68,66}} + sourceSize + {128,128} + + 142.png.pvr.png + + frame + {{418,434},{66,68}} + offset + {-29,28} + rotated + + sourceColorRect + {{2,2},{66,68}} + sourceSize + {128,128} + + 143.png.pvr.png + + frame + {{134,302},{66,68}} + offset + {-30,29} + rotated + + sourceColorRect + {{1,1},{66,68}} + sourceSize + {128,128} + + 144.png.pvr.png + + frame + {{564,370},{64,68}} + offset + {-30,29} + rotated + + sourceColorRect + {{2,1},{64,68}} + sourceSize + {128,128} + + 145.png.pvr.png + + frame + {{836,294},{64,66}} + offset + {-30,30} + rotated + + sourceColorRect + {{2,1},{64,66}} + sourceSize + {128,128} + + 200.png.pvr.png + + frame + {{418,366},{66,70}} + offset + {-29,27} + rotated + + sourceColorRect + {{2,2},{66,70}} + sourceSize + {128,128} + + 201.png.pvr.png + + frame + {{698,218},{66,74}} + offset + {-29,25} + rotated + + sourceColorRect + {{2,2},{66,74}} + sourceSize + {128,128} + + 202.png.pvr.png + + frame + {{302,72},{70,74}} + offset + {-27,25} + rotated + + sourceColorRect + {{2,2},{70,74}} + sourceSize + {128,128} + + 203.png.pvr.png + + frame + {{348,440},{70,68}} + offset + {-28,28} + rotated + + sourceColorRect + {{1,2},{70,68}} + sourceSize + {128,128} + + 204.png.pvr.png + + frame + {{692,146},{66,70}} + offset + {-30,27} + rotated + + sourceColorRect + {{1,2},{66,70}} + sourceSize + {128,128} + + 205.png.pvr.png + + frame + {{630,218},{66,74}} + offset + {-29,26} + rotated + + sourceColorRect + {{2,1},{66,74}} + sourceSize + {128,128} + + 206.png.pvr.png + + frame + {{230,72},{70,74}} + offset + {-27,26} + rotated + + sourceColorRect + {{2,1},{70,74}} + sourceSize + {128,128} + + 207.png.pvr.png + + frame + {{278,440},{70,68}} + offset + {-28,28} + rotated + + sourceColorRect + {{1,2},{70,68}} + sourceSize + {128,128} + + 210.png.pvr.png + + frame + {{492,296},{70,68}} + offset + {-27,28} + rotated + + sourceColorRect + {{2,2},{70,68}} + sourceSize + {128,128} + + 211.png.pvr.png + + frame + {{206,440},{70,70}} + offset + {-27,27} + rotated + + sourceColorRect + {{2,2},{70,70}} + sourceSize + {128,128} + + 212.png.pvr.png + + frame + {{862,136},{74,66}} + offset + {-25,29} + rotated + + sourceColorRect + {{2,2},{74,66}} + sourceSize + {128,128} + + 213.png.pvr.png + + frame + {{722,2},{78,64}} + offset + {-24,30} + rotated + + sourceColorRect + {{1,2},{78,64}} + sourceSize + {128,128} + + 214.png.pvr.png + + frame + {{484,2},{78,66}} + offset + {-24,30} + rotated + + sourceColorRect + {{1,1},{78,66}} + sourceSize + {128,128} + + 215.png.pvr.png + + frame + {{244,2},{78,68}} + offset + {-24,28} + rotated + + sourceColorRect + {{1,2},{78,68}} + sourceSize + {128,128} + + 216.png.pvr.png + + frame + {{404,2},{78,66}} + offset + {-24,29} + rotated + + sourceColorRect + {{1,2},{78,66}} + sourceSize + {128,128} + + 217.png.pvr.png + + frame + {{344,296},{72,68}} + offset + {-26,28} + rotated + + sourceColorRect + {{2,2},{72,68}} + sourceSize + {128,128} + + 220.png.pvr.png + + frame + {{64,372},{66,72}} + offset + {-30,26} + rotated + + sourceColorRect + {{1,2},{66,72}} + sourceSize + {128,128} + + 221.png.pvr.png + + frame + {{418,296},{68,72}} + offset + {-28,26} + rotated + + sourceColorRect + {{2,2},{68,72}} + sourceSize + {128,128} + + 222.png.pvr.png + + frame + {{618,146},{70,72}} + offset + {-27,26} + rotated + + sourceColorRect + {{2,2},{70,72}} + sourceSize + {128,128} + + 223.png.pvr.png + + frame + {{586,70},{72,72}} + offset + {-26,27} + rotated + + sourceColorRect + {{2,1},{72,72}} + sourceSize + {128,128} + + 224.png.pvr.png + + frame + {{80,150},{76,72}} + offset + {-24,27} + rotated + + sourceColorRect + {{2,1},{76,72}} + sourceSize + {128,128} + + 225.png.pvr.png + + frame + {{84,76},{76,72}} + offset + {-25,27} + rotated + + sourceColorRect + {{1,1},{76,72}} + sourceSize + {128,128} + + 226.png.pvr.png + + frame + {{546,144},{70,72}} + offset + {-27,26} + rotated + + sourceColorRect + {{2,2},{70,72}} + sourceSize + {128,128} + + 227.png.pvr.png + + frame + {{162,76},{66,72}} + offset + {-30,26} + rotated + + sourceColorRect + {{1,2},{66,72}} + sourceSize + {128,128} + + 230.png.pvr.png + + frame + {{134,440},{70,70}} + offset + {-28,27} + rotated + + sourceColorRect + {{1,2},{70,70}} + sourceSize + {128,128} + + 231.png.pvr.png + + frame + {{62,440},{70,70}} + offset + {-27,27} + rotated + + sourceColorRect + {{2,2},{70,70}} + sourceSize + {128,128} + + 232.png.pvr.png + + frame + {{762,294},{62,72}} + offset + {-31,26} + rotated + + sourceColorRect + {{2,2},{62,72}} + sourceSize + {128,128} + + 233.png.pvr.png + + frame + {{798,68},{54,74}} + offset + {-3,26} + rotated + + sourceColorRect + {{2,1},{54,74}} + sourceSize + {64,128} + + 234.png.pvr.png + + frame + {{626,294},{62,72}} + offset + {-31,26} + rotated + + sourceColorRect + {{2,2},{62,72}} + sourceSize + {128,128} + + 235.png.pvr.png + + frame + {{224,150},{60,72}} + offset + {0,27} + rotated + + sourceColorRect + {{2,1},{60,72}} + sourceSize + {64,128} + + 236.png.pvr.png + + frame + {{902,288},{52,72}} + offset + {-4,27} + rotated + + sourceColorRect + {{2,1},{52,72}} + sourceSize + {64,128} + + 237.png.pvr.png + + frame + {{490,366},{62,72}} + offset + {-32,26} + rotated + + sourceColorRect + {{1,2},{62,72}} + sourceSize + {128,128} + + 240.png.pvr.png + + frame + {{956,282},{66,66}} + offset + {-29,29} + rotated + + sourceColorRect + {{2,2},{66,66}} + sourceSize + {128,128} + + 241.png.pvr.png + + frame + {{612,442},{66,66}} + offset + {-29,30} + rotated + + sourceColorRect + {{2,1},{66,66}} + sourceSize + {128,128} + + 242.png.pvr.png + + frame + {{212,372},{70,66}} + offset + {-27,29} + rotated + + sourceColorRect + {{2,2},{70,66}} + sourceSize + {128,128} + + 243.png.pvr.png + + frame + {{202,300},{70,70}} + offset + {-28,27} + rotated + + sourceColorRect + {{1,2},{70,70}} + sourceSize + {128,128} + + 244.png.pvr.png + + frame + {{690,360},{66,66}} + offset + {-30,29} + rotated + + sourceColorRect + {{1,2},{66,66}} + sourceSize + {128,128} + + 245.png.pvr.png + + frame + {{690,428},{66,64}} + offset + {-29,31} + rotated + + sourceColorRect + {{2,1},{66,64}} + sourceSize + {128,128} + + 246.png.pvr.png + + frame + {{690,294},{70,64}} + offset + {-28,30} + rotated + + sourceColorRect + {{1,2},{70,64}} + sourceSize + {128,128} + + 247.png.pvr.png + + frame + {{274,300},{70,68}} + offset + {-28,28} + rotated + + sourceColorRect + {{1,2},{70,68}} + sourceSize + {128,128} + + 300.png.pvr.png + + frame + {{66,226},{66,76}} + offset + {-29,25} + rotated + + sourceColorRect + {{2,1},{66,76}} + sourceSize + {128,128} + + 301.png.pvr.png + + frame + {{328,222},{70,72}} + offset + {-27,27} + rotated + + sourceColorRect + {{2,1},{70,72}} + sourceSize + {128,128} + + 302.png.pvr.png + + frame + {{354,366},{62,72}} + offset + {-31,26} + rotated + + sourceColorRect + {{2,2},{62,72}} + sourceSize + {128,128} + + 303.png.pvr.png + + frame + {{660,70},{66,74}} + offset + {-29,26} + rotated + + sourceColorRect + {{2,1},{66,74}} + sourceSize + {128,128} + + 304.png.pvr.png + + frame + {{890,2},{52,86}} + offset + {-5,19} + rotated + + sourceColorRect + {{1,2},{52,86}} + sourceSize + {64,128} + + 305.png.pvr.png + + frame + {{2,314},{60,82}} + offset + {0,21} + rotated + + sourceColorRect + {{2,2},{60,82}} + sourceSize + {64,128} + + 310.png.pvr.png + + frame + {{202,224},{62,74}} + offset + {-31,25} + rotated + + sourceColorRect + {{2,2},{62,74}} + sourceSize + {128,128} + + 311.png.pvr.png + + frame + {{630,368},{58,72}} + offset + {-2,27} + rotated + + sourceColorRect + {{1,1},{58,72}} + sourceSize + {64,128} + + 312.png.pvr.png + + frame + {{2,398},{58,82}} + offset + {-2,22} + rotated + + sourceColorRect + {{1,1},{58,82}} + sourceSize + {64,128} + + 313.png.pvr.png + + frame + {{802,2},{56,86}} + offset + {-2,20} + rotated + + sourceColorRect + {{2,1},{56,86}} + sourceSize + {64,128} + + 314.png.pvr.png + + frame + {{644,2},{66,76}} + offset + {-30,24} + rotated + + sourceColorRect + {{1,2},{66,76}} + sourceSize + {128,128} + + 315.png.pvr.png + + frame + {{358,148},{70,72}} + offset + {-27,26} + rotated + + sourceColorRect + {{2,2},{70,72}} + sourceSize + {128,128} + + 320.png.pvr.png + + frame + {{400,222},{50,72}} + offset + {-5,26} + rotated + + sourceColorRect + {{2,2},{50,72}} + sourceSize + {64,128} + + 321.png.pvr.png + + frame + {{836,362},{56,70}} + offset + {-2,27} + rotated + + sourceColorRect + {{2,2},{56,70}} + sourceSize + {64,128} + + 322.png.pvr.png + + frame + {{2,150},{76,74}} + offset + {-25,26} + rotated + + sourceColorRect + {{1,1},{76,74}} + sourceSize + {128,128} + + 323.png.pvr.png + + frame + {{2,226},{62,86}} + offset + {-31,20} + rotated + + sourceColorRect + {{2,1},{62,86}} + sourceSize + {128,128} + + 324.png.pvr.png + + frame + {{2,76},{80,72}} + offset + {-23,27} + rotated + + sourceColorRect + {{1,1},{80,72}} + sourceSize + {128,128} + + 325.png.pvr.png + + frame + {{286,148},{70,72}} + offset + {-27,26} + rotated + + sourceColorRect + {{2,2},{70,72}} + sourceSize + {128,128} + + 330.png.pvr.png + + frame + {{488,146},{56,74}} + offset + {-2,26} + rotated + + sourceColorRect + {{2,1},{56,74}} + sourceSize + {64,128} + + 331.png.pvr.png + + frame + {{86,2},{76,72}} + offset + {-24,27} + rotated + + sourceColorRect + {{2,1},{76,72}} + sourceSize + {128,128} + + 332.png.pvr.png + + frame + {{164,2},{78,68}} + offset + {-24,29} + rotated + + sourceColorRect + {{1,1},{78,68}} + sourceSize + {128,128} + + 333.png.pvr.png + + frame + {{2,2},{82,72}} + offset + {-21,27} + rotated + + sourceColorRect + {{2,1},{82,72}} + sourceSize + {128,128} + + 334.png.pvr.png + + frame + {{512,70},{72,72}} + offset + {-27,26} + rotated + + sourceColorRect + {{1,2},{72,72}} + sourceSize + {128,128} + + 335.png.pvr.png + + frame + {{452,222},{58,72}} + offset + {-2,27} + rotated + + sourceColorRect + {{1,1},{58,72}} + sourceSize + {64,128} + + 340.png.pvr.png + + frame + {{66,304},{66,66}} + offset + {-29,29} + rotated + + sourceColorRect + {{2,2},{66,66}} + sourceSize + {128,128} + + 341.png.pvr.png + + frame + {{486,440},{70,62}} + offset + {-27,32} + rotated + + sourceColorRect + {{2,1},{70,62}} + sourceSize + {128,128} + + 342.png.pvr.png + + frame + {{886,420},{60,62}} + offset + {-1,31} + rotated + + sourceColorRect + {{1,2},{60,62}} + sourceSize + {64,128} + + 343.png.pvr.png + + frame + {{818,420},{60,66}} + offset + {0,29} + rotated + + sourceColorRect + {{2,2},{60,66}} + sourceSize + {64,128} + + 344.png.pvr.png + + frame + {{948,418},{52,70}} + offset + {-5,27} + rotated + + sourceColorRect + {{1,2},{52,70}} + sourceSize + {64,128} + + 345.png.pvr.png + + frame + {{550,440},{60,70}} + offset + {0,27} + rotated + + sourceColorRect + {{2,2},{60,70}} + sourceSize + {64,128} + + + metadata + + format + 2 + realTextureFileName + xueren.png + size + {1024,512} + smartupdate + $TexturePacker:SmartUpdate:9defeb3d7b8a355d6576a747fad9f07c$ + textureFileName + xueren.png + + + diff --git a/cc_moba/assets/img/xueren.plist.meta b/cc_moba/assets/img/xueren.plist.meta new file mode 100644 index 0000000..0201ecf --- /dev/null +++ b/cc_moba/assets/img/xueren.plist.meta @@ -0,0 +1,2212 @@ +{ + "ver": "1.2.4", + "uuid": "e3e54bca-295a-47bd-87d5-85453a9e1248", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "size": { + "width": 1024, + "height": 512 + }, + "type": "Texture Packer", + "subMetas": { + "100.png.pvr.png": { + "ver": "1.0.3", + "uuid": "04bf7886-4c61-4399-a765-2ef441468261", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 25, + "trimX": 134, + "trimY": 224, + "width": 66, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "101.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ad9a5d93-bba9-47e7-993f-0f1192e512a5", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -28, + "offsetY": 23, + "trimX": 324, + "trimY": 2, + "width": 68, + "height": 78, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "102.png.pvr.png": { + "ver": "1.0.3", + "uuid": "69d89d98-6805-4c1f-8013-eb70906ae3b4", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -29, + "offsetY": 24, + "trimX": 564, + "trimY": 2, + "width": 66, + "height": 78, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "103.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b1d75945-1768-429b-8920-e660005eb035", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -30, + "offsetY": 25, + "trimX": 374, + "trimY": 72, + "width": 64, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "104.png.pvr.png": { + "ver": "1.0.3", + "uuid": "6b5f56bf-909e-46d4-b70a-a9e9afe1a19d", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -30, + "offsetY": 26, + "trimX": 158, + "trimY": 150, + "width": 64, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "105.png.pvr.png": { + "ver": "1.0.3", + "uuid": "277e3c79-6449-40cb-b868-6832df0207f1", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -30, + "offsetY": 26, + "trimX": 854, + "trimY": 60, + "width": 66, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "110.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ce3c8a97-b42e-42ac-94a7-6fe6010b88f8", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -31, + "offsetY": 25, + "trimX": 880, + "trimY": 212, + "width": 62, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "111.png.pvr.png": { + "ver": "1.0.3", + "uuid": "5d20afae-893e-4bc4-a334-95137fc2f2c9", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 25, + "trimX": 728, + "trimY": 68, + "width": 68, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "112.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3d30b6d5-3b54-4df0-b457-d88f331ca615", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -28, + "offsetY": 26, + "trimX": 440, + "trimY": 70, + "width": 70, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "113.png.pvr.png": { + "ver": "1.0.3", + "uuid": "9710545d-4576-48c7-b5f7-e43c8b8e6c11", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -30, + "offsetY": 26, + "trimX": 138, + "trimY": 372, + "width": 66, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "114.png.pvr.png": { + "ver": "1.0.3", + "uuid": "6f83eaea-ab4c-4768-b82c-0985d05955ec", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 26, + "trimX": 564, + "trimY": 296, + "width": 60, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "115.png.pvr.png": { + "ver": "1.0.3", + "uuid": "cda39e87-0a2c-4c51-bbb5-9e1042830383", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 26, + "trimX": 266, + "trimY": 224, + "width": 60, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "120.png.pvr.png": { + "ver": "1.0.3", + "uuid": "2ce63c48-70d7-4de7-8587-da28c8381e6b", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 26, + "trimX": 762, + "trimY": 358, + "width": 50, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "121.png.pvr.png": { + "ver": "1.0.3", + "uuid": "076d6f3c-9304-4647-bffc-1ea875abf999", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -3, + "offsetY": 26, + "trimX": 512, + "trimY": 222, + "width": 56, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "122.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f287212b-1161-4a9b-8203-636312124993", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 26, + "trimX": 758, + "trimY": 410, + "width": 58, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "123.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b5536d25-485c-4466-a824-bb230330d753", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -2, + "offsetY": 27, + "trimX": 430, + "trimY": 148, + "width": 56, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "124.png.pvr.png": { + "ver": "1.0.3", + "uuid": "90f41df7-4d21-4506-9846-2742135f8f4c", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -5, + "offsetY": 26, + "trimX": 760, + "trimY": 144, + "width": 50, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "125.png.pvr.png": { + "ver": "1.0.3", + "uuid": "292bc091-3836-413c-8e08-c029664236ee", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -6, + "offsetY": 26, + "trimX": 812, + "trimY": 144, + "width": 48, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "130.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c7cf1572-5ce2-4d4a-adfc-950852840a0f", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -2, + "offsetY": 26, + "trimX": 930, + "trimY": 132, + "width": 56, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "131.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3d75e095-a72b-4bca-b82d-1d4a861d0dbe", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 25, + "trimX": 570, + "trimY": 218, + "width": 58, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "132.png.pvr.png": { + "ver": "1.0.3", + "uuid": "86f134ec-ef54-4684-8236-583a9fb85b01", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -2, + "offsetY": 25, + "trimX": 766, + "trimY": 218, + "width": 56, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "133.png.pvr.png": { + "ver": "1.0.3", + "uuid": "bfbad7b9-b41f-45b1-9051-0d93a4e89779", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -3, + "offsetY": 25, + "trimX": 922, + "trimY": 56, + "width": 54, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "134.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c7a323fa-d4b1-4678-80df-f8b6cd474892", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -3, + "offsetY": 26, + "trimX": 824, + "trimY": 218, + "width": 54, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "135.png.pvr.png": { + "ver": "1.0.3", + "uuid": "58de749a-cde0-4665-a1bb-3000bb76d159", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -3, + "offsetY": 26, + "trimX": 944, + "trimY": 208, + "width": 54, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "140.png.pvr.png": { + "ver": "1.0.3", + "uuid": "70ae8bb1-e92a-4670-b568-f3b29839345a", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 29, + "trimX": 956, + "trimY": 350, + "width": 66, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "141.png.pvr.png": { + "ver": "1.0.3", + "uuid": "8f7e9149-8a7b-4997-9220-607e752faa97", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -28, + "offsetY": 29, + "trimX": 284, + "trimY": 372, + "width": 68, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "142.png.pvr.png": { + "ver": "1.0.3", + "uuid": "9f38ce62-f345-41d2-9b78-f9f345948a49", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 28, + "trimX": 418, + "trimY": 434, + "width": 66, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "143.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c188e722-e488-4119-a2fd-f83671f90eea", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -30, + "offsetY": 29, + "trimX": 134, + "trimY": 302, + "width": 66, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "144.png.pvr.png": { + "ver": "1.0.3", + "uuid": "6ee59658-f5f0-4448-8ce8-86551f933a86", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -30, + "offsetY": 29, + "trimX": 564, + "trimY": 370, + "width": 64, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "145.png.pvr.png": { + "ver": "1.0.3", + "uuid": "6d056837-033f-401c-a7ef-b6475c3feaaf", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -30, + "offsetY": 30, + "trimX": 836, + "trimY": 294, + "width": 64, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "200.png.pvr.png": { + "ver": "1.0.3", + "uuid": "30ec3a01-84bf-4fac-b274-4db69b8d2322", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -29, + "offsetY": 27, + "trimX": 418, + "trimY": 366, + "width": 66, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "201.png.pvr.png": { + "ver": "1.0.3", + "uuid": "94606203-df60-4630-acd5-8095991f089e", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 25, + "trimX": 698, + "trimY": 218, + "width": 66, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "202.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4729beaa-c727-4f31-8501-0b4c6ec9255e", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -27, + "offsetY": 25, + "trimX": 302, + "trimY": 72, + "width": 70, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "203.png.pvr.png": { + "ver": "1.0.3", + "uuid": "5a765a7f-804c-4ec1-bce8-84ee74c1e4fa", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -28, + "offsetY": 28, + "trimX": 348, + "trimY": 440, + "width": 70, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "204.png.pvr.png": { + "ver": "1.0.3", + "uuid": "fc14fab0-0ca0-420c-92d8-e0bb94d095dd", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -30, + "offsetY": 27, + "trimX": 692, + "trimY": 146, + "width": 66, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "205.png.pvr.png": { + "ver": "1.0.3", + "uuid": "9f944a1b-cd5b-48d4-bd49-a6c60b1749b9", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 26, + "trimX": 630, + "trimY": 218, + "width": 66, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "206.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4d00ad9d-64fc-4bee-99df-18c8b57cabce", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -27, + "offsetY": 26, + "trimX": 230, + "trimY": 72, + "width": 70, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "207.png.pvr.png": { + "ver": "1.0.3", + "uuid": "92d8f7b1-496f-46a3-bd1c-5bd8ced48cf6", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -28, + "offsetY": 28, + "trimX": 278, + "trimY": 440, + "width": 70, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "210.png.pvr.png": { + "ver": "1.0.3", + "uuid": "af4c0a3c-abc0-4e42-b020-97be010d2308", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -27, + "offsetY": 28, + "trimX": 492, + "trimY": 296, + "width": 70, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "211.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f8afc7a7-ab19-4856-940c-647b341506e5", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -27, + "offsetY": 27, + "trimX": 206, + "trimY": 440, + "width": 70, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "212.png.pvr.png": { + "ver": "1.0.3", + "uuid": "226e10b0-9f9b-4138-bcf4-cb33b3de1b48", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -25, + "offsetY": 29, + "trimX": 862, + "trimY": 136, + "width": 74, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "213.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b9a87281-5497-4dc4-bcd5-3c565a454922", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -24, + "offsetY": 30, + "trimX": 722, + "trimY": 2, + "width": 78, + "height": 64, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "214.png.pvr.png": { + "ver": "1.0.3", + "uuid": "037459b1-0e0a-4e69-9014-53f241246227", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -24, + "offsetY": 30, + "trimX": 484, + "trimY": 2, + "width": 78, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "215.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d877a427-ab1b-468e-b70d-70edecca5e6f", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -24, + "offsetY": 28, + "trimX": 244, + "trimY": 2, + "width": 78, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "216.png.pvr.png": { + "ver": "1.0.3", + "uuid": "92515051-4f9f-41f4-820e-2a19c277581e", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -24, + "offsetY": 29, + "trimX": 404, + "trimY": 2, + "width": 78, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "217.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3307d729-a654-426a-9dd8-3b379cbaa158", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -26, + "offsetY": 28, + "trimX": 344, + "trimY": 296, + "width": 72, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "220.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0ed79f31-f387-419e-a11d-1ae5f207ae6b", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -30, + "offsetY": 26, + "trimX": 64, + "trimY": 372, + "width": 66, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "221.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d1689bf0-27d7-4b29-9b13-f7755388530e", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -28, + "offsetY": 26, + "trimX": 418, + "trimY": 296, + "width": 68, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "222.png.pvr.png": { + "ver": "1.0.3", + "uuid": "8529c98e-3f51-4f5e-939c-3c1551eab303", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -27, + "offsetY": 26, + "trimX": 618, + "trimY": 146, + "width": 70, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "223.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e01f2c9e-3e5c-405f-8683-35b878101b78", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -26, + "offsetY": 27, + "trimX": 586, + "trimY": 70, + "width": 72, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "224.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c62120e3-4a00-4eeb-9b4a-bfb1882b355b", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -24, + "offsetY": 27, + "trimX": 80, + "trimY": 150, + "width": 76, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "225.png.pvr.png": { + "ver": "1.0.3", + "uuid": "fe34b2b2-0ca8-4705-a875-5e173dc0085d", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -25, + "offsetY": 27, + "trimX": 84, + "trimY": 76, + "width": 76, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "226.png.pvr.png": { + "ver": "1.0.3", + "uuid": "5103f50d-2b60-4825-b33b-a8f832a85d1f", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -27, + "offsetY": 26, + "trimX": 546, + "trimY": 144, + "width": 70, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "227.png.pvr.png": { + "ver": "1.0.3", + "uuid": "5d99dec8-2ac7-4093-849b-0b0d11eb378f", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -30, + "offsetY": 26, + "trimX": 162, + "trimY": 76, + "width": 66, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "230.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f7e78074-13db-4b87-a73e-219a35aafff3", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -28, + "offsetY": 27, + "trimX": 134, + "trimY": 440, + "width": 70, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "231.png.pvr.png": { + "ver": "1.0.3", + "uuid": "2c9346aa-c02e-4c93-8e32-56a5f1966295", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -27, + "offsetY": 27, + "trimX": 62, + "trimY": 440, + "width": 70, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "232.png.pvr.png": { + "ver": "1.0.3", + "uuid": "536aa346-cd31-4ee2-8f22-c6a41dfddafc", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -31, + "offsetY": 26, + "trimX": 762, + "trimY": 294, + "width": 62, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "233.png.pvr.png": { + "ver": "1.0.3", + "uuid": "428192c4-416b-47d3-b1f6-0d652b452b56", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -3, + "offsetY": 26, + "trimX": 798, + "trimY": 68, + "width": 54, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "234.png.pvr.png": { + "ver": "1.0.3", + "uuid": "94a51949-55ea-479a-8583-07f2d5a49deb", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -31, + "offsetY": 26, + "trimX": 626, + "trimY": 294, + "width": 62, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "235.png.pvr.png": { + "ver": "1.0.3", + "uuid": "981c7847-747e-4e82-b7a0-8eb661c9bd28", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 27, + "trimX": 224, + "trimY": 150, + "width": 60, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "236.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f267a47d-4b9d-4fae-9fb6-124d6a27f090", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -4, + "offsetY": 27, + "trimX": 902, + "trimY": 288, + "width": 52, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "237.png.pvr.png": { + "ver": "1.0.3", + "uuid": "fc4da06a-de6f-44a4-a05a-817bf503d35d", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -32, + "offsetY": 26, + "trimX": 490, + "trimY": 366, + "width": 62, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "240.png.pvr.png": { + "ver": "1.0.3", + "uuid": "52b2c52d-0995-4fd4-9707-6ba5e5366510", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 29, + "trimX": 956, + "trimY": 282, + "width": 66, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "241.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ff2d18dd-9eeb-4346-ac6b-aef944924499", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 30, + "trimX": 612, + "trimY": 442, + "width": 66, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "242.png.pvr.png": { + "ver": "1.0.3", + "uuid": "bd16e72b-62a3-4d71-90d7-65503dea2c98", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -27, + "offsetY": 29, + "trimX": 212, + "trimY": 372, + "width": 70, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "243.png.pvr.png": { + "ver": "1.0.3", + "uuid": "7be40174-a3e7-4859-8ccc-49182781b5c2", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -28, + "offsetY": 27, + "trimX": 202, + "trimY": 300, + "width": 70, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "244.png.pvr.png": { + "ver": "1.0.3", + "uuid": "038978b1-5060-4679-8319-b7b9c76ef723", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -30, + "offsetY": 29, + "trimX": 690, + "trimY": 360, + "width": 66, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "245.png.pvr.png": { + "ver": "1.0.3", + "uuid": "47b9252c-6f41-488c-bc7c-4e1513c77817", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 31, + "trimX": 690, + "trimY": 428, + "width": 66, + "height": 64, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "246.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e40a7f70-e4dc-4df3-bbbd-de2336295afb", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -28, + "offsetY": 30, + "trimX": 690, + "trimY": 294, + "width": 70, + "height": 64, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "247.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a3fa1c40-7cf2-48cf-a577-5a443d07ca16", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -28, + "offsetY": 28, + "trimX": 274, + "trimY": 300, + "width": 70, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "300.png.pvr.png": { + "ver": "1.0.3", + "uuid": "45af801b-d52a-4663-bd4b-af720b439f93", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 25, + "trimX": 66, + "trimY": 226, + "width": 66, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "301.png.pvr.png": { + "ver": "1.0.3", + "uuid": "de4a1306-a564-49db-84cb-40d83ac7ef7a", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -27, + "offsetY": 27, + "trimX": 328, + "trimY": 222, + "width": 70, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "302.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ab16e986-822f-456e-9cd9-39d23361cb43", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -31, + "offsetY": 26, + "trimX": 354, + "trimY": 366, + "width": 62, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "303.png.pvr.png": { + "ver": "1.0.3", + "uuid": "eb4b426e-c38e-4c53-b100-81e7458c7367", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 26, + "trimX": 660, + "trimY": 70, + "width": 66, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "304.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3e26bf67-7e5d-400e-a166-b1ca4dd4c681", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 19, + "trimX": 890, + "trimY": 2, + "width": 52, + "height": 86, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "305.png.pvr.png": { + "ver": "1.0.3", + "uuid": "41ecb515-828b-4fbb-bf8e-732d98696ad6", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 21, + "trimX": 2, + "trimY": 314, + "width": 60, + "height": 82, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "310.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c0f3f27a-7c35-4b8f-94b1-1f4360276931", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -31, + "offsetY": 25, + "trimX": 202, + "trimY": 224, + "width": 62, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "311.png.pvr.png": { + "ver": "1.0.3", + "uuid": "85a476b4-3625-4d8a-98de-1c6a126f12b1", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -2, + "offsetY": 27, + "trimX": 630, + "trimY": 368, + "width": 58, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "312.png.pvr.png": { + "ver": "1.0.3", + "uuid": "45f944ce-ea9c-4d79-a72e-b6e35aa7b7f3", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -2, + "offsetY": 22, + "trimX": 2, + "trimY": 398, + "width": 58, + "height": 82, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "313.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ab1f4776-90bb-4bd3-baa3-6ecead727267", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 20, + "trimX": 802, + "trimY": 2, + "width": 56, + "height": 86, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "314.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3ef0d43e-28dc-434f-ae05-92b2d256d8ec", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -30, + "offsetY": 24, + "trimX": 644, + "trimY": 2, + "width": 66, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "315.png.pvr.png": { + "ver": "1.0.3", + "uuid": "012069be-b406-488a-8a17-76f8f46fefa1", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -27, + "offsetY": 26, + "trimX": 358, + "trimY": 148, + "width": 70, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "320.png.pvr.png": { + "ver": "1.0.3", + "uuid": "2e0a0404-43e6-444d-b7bd-5092e824059a", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -5, + "offsetY": 26, + "trimX": 400, + "trimY": 222, + "width": 50, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "321.png.pvr.png": { + "ver": "1.0.3", + "uuid": "9a4486c5-6a7d-418b-95a3-b3eb16bfa0ad", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 27, + "trimX": 836, + "trimY": 362, + "width": 56, + "height": 70, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "322.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3a110e0a-db71-4614-87e3-79a36a7eb7c2", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -25, + "offsetY": 26, + "trimX": 2, + "trimY": 150, + "width": 76, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "323.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0fcaa7ab-f472-45cd-af3c-df0d487b33de", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -31, + "offsetY": 20, + "trimX": 2, + "trimY": 226, + "width": 62, + "height": 86, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "324.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b0c8c7a2-2e2e-49b9-912d-a9be3055b239", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -23, + "offsetY": 27, + "trimX": 2, + "trimY": 76, + "width": 80, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "325.png.pvr.png": { + "ver": "1.0.3", + "uuid": "9079295f-310b-47cd-8200-2e7d453c1ee6", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -27, + "offsetY": 26, + "trimX": 286, + "trimY": 148, + "width": 70, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "330.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0f334952-dfd0-49a6-9cff-7b7c5399a47d", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -2, + "offsetY": 26, + "trimX": 488, + "trimY": 146, + "width": 56, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "331.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0525c31f-b813-41f5-bfc5-65cde2094e24", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -24, + "offsetY": 27, + "trimX": 86, + "trimY": 2, + "width": 76, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "332.png.pvr.png": { + "ver": "1.0.3", + "uuid": "35e7235a-531e-48e3-8283-f3deee9e867f", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -24, + "offsetY": 29, + "trimX": 164, + "trimY": 2, + "width": 78, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "333.png.pvr.png": { + "ver": "1.0.3", + "uuid": "932bdf12-315b-41e5-a552-38fe5755d283", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -21, + "offsetY": 27, + "trimX": 2, + "trimY": 2, + "width": 82, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "334.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a2d407b2-73f3-4f5e-a864-7851887d1648", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -27, + "offsetY": 26, + "trimX": 512, + "trimY": 70, + "width": 72, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "335.png.pvr.png": { + "ver": "1.0.3", + "uuid": "bc82f48f-f4bb-4d23-b692-04cf28a2398d", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -2, + "offsetY": 27, + "trimX": 452, + "trimY": 222, + "width": 58, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "340.png.pvr.png": { + "ver": "1.0.3", + "uuid": "98744a42-8202-4c18-9537-d5ffec41ac24", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 29, + "trimX": 66, + "trimY": 304, + "width": 66, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "341.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0b7f1df5-c7ae-49c2-8af9-0271235c319d", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -27, + "offsetY": 32, + "trimX": 486, + "trimY": 440, + "width": 70, + "height": 62, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "342.png.pvr.png": { + "ver": "1.0.3", + "uuid": "130af72f-a75b-4539-8c43-9d77a23efec9", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 31, + "trimX": 886, + "trimY": 420, + "width": 60, + "height": 62, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "343.png.pvr.png": { + "ver": "1.0.3", + "uuid": "9f9c356d-15cc-4188-ac97-6485a8564fa3", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 29, + "trimX": 818, + "trimY": 420, + "width": 60, + "height": 66, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "344.png.pvr.png": { + "ver": "1.0.3", + "uuid": "cdcb13ca-4a3d-42c0-982a-953470f3b4bc", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 27, + "trimX": 948, + "trimY": 418, + "width": 52, + "height": 70, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "345.png.pvr.png": { + "ver": "1.0.3", + "uuid": "bbb253d1-fdac-46d6-a566-ac0d5f9dfa6e", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 27, + "trimX": 550, + "trimY": 440, + "width": 60, + "height": 70, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/img/xueren.png b/cc_moba/assets/img/xueren.png new file mode 100644 index 0000000..95dd1a4 Binary files /dev/null and b/cc_moba/assets/img/xueren.png differ diff --git a/cc_moba/assets/img/xueren.png.meta b/cc_moba/assets/img/xueren.png.meta new file mode 100644 index 0000000..ae91b2c --- /dev/null +++ b/cc_moba/assets/img/xueren.png.meta @@ -0,0 +1,30 @@ +{ + "ver": "1.0.0", + "uuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "subMetas": { + "xueren": { + "ver": "1.0.3", + "uuid": "8564b817-c47e-4aad-8e5e-a8b5688eabe3", + "rawTextureUuid": "47829c7b-c3eb-4658-8df6-bed44458e642", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 1020, + "height": 508, + "rawWidth": 1024, + "rawHeight": 512, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/map.meta b/cc_moba/assets/map.meta new file mode 100644 index 0000000..718bf88 --- /dev/null +++ b/cc_moba/assets/map.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "6f2ef249-31c6-4fd2-9d7e-3652cbe752cc", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/map/map4.tmx b/cc_moba/assets/map/map4.tmx new file mode 100644 index 0000000..ec5f907 --- /dev/null +++ b/cc_moba/assets/map/map4.tmx @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + eJzt2/f/VnMYx/FvChUZRVahaNibpJBSoqIyMyJCVgOhIitUWlS0o0kRSmWWVSE7o8ySUSiUyH7d/8B9nR+O4319r/PD88fXz+dzve/HXaakpGQTlEU5bIrNsDnKowIqYgtsiUrYCltjG5TJ+1T7bVEZVbAdtkdV7IAdsRN2xi6ohurYFbth97xPva+BmtgDe6IWaqMO6mIv7I19sC/2w/44AAfmfer9QTgYh+BQHIbDcQTq4UjUx1FogIY4Gsfg2LxPvW+E49AYTXA8mqIZTkBznIiT0AIt0Qon45S8T71vjTZoi1NxGk7HGTgTZ6EdzsY5OBfnoT3Oz/vU+wvQARfiInTExbgEl6ITLsPluAJX4ip0Rpe8T73vim64GtfgWnTHdbgeN6AHeqIXbsRN6I2b8z71/hbcittwO/rgDtyJu9AX/dAfd2MABmIQBud96v0Q3IN7MRTDMBz34X6MwEiMwmiMwViMw/i8T71/AA9iAiZiEiZjCqbiITyMaZiOR/AoZuCxvE+9fxxPYCZm4UnMxhzMxVN4Gs/gWTyH5zEP8/M+9f4FvIiX8DJewQIsxCK8itfwOhbjDbyJt/B23qfev4N38R6W4H18gA/xEZZiGT7GJ/gUn+FzfJH3qffLsQJfYiW+wtf4Bt9iFVbjO3yPH7AGa/Fj3qfeq+3N0Xu1vTl6r7Y3R+/V9ubovdreHL1X25uj92p7c/RebW+O3qvtzdF7tb05eq+2N0fv1fbm6L3a3hy9V9ubo/dqe3P0Xm1vjt6r7c3Re7W9OXqvtjdH79X25ui92t4cvVfbm6P3antz9F5tby70ajdBlr3a3lzo1W6CLHu1vbnQq90EWfZqe3OhV7sJsuzV9uZCr3YTZNmr7c2FXu0myLJX25sLvdpNkGWv+DZUuwmy7BXfhoo3UVa94ttQ8SbKqld8GyreRFn1im9DxZsoq17xbah4E2XVK74NFW+irHrFt6HiTZRVr/g2/Ak/Yx3W4xdswK/4DRvxO/7An/gLf+MfFA4az73nt2GxXvHOTdJ7fhsW6xXv3CS957dhsV7xzk3Se34bFusV79wkvee3YbFe8c5N0nt+GxbrFe/cJL3Xd4jVK965SXqv7xCrV7xzk/Re3yFWr3jnJum9vkOsXvVOtXqv7xCrV71Trd7rO8TqVe9Uq/f6DrF61TvV6r2+Q6xe9U61eq/vEKtXvVOt3us75L/e2/+v30C8vkOsXnU3sHqv7xCrV90NrN7rO8TqVXcDq/f6DrF61d3A6r2+Q6xedTeweq/fPatX3Q2s3ut3z+pVdwOr9/rds3rV3cDqvX73rF51N7B6r989q1fdDaze63fP6lV3A6v3+t2zetXdwOq9fvesXnU3sHqv3z2rV90NrN7rd8/qVXcDq/f63bN6r/8B8frdK6291+9eae29fvdKa+/1u1dae9W9PGqvupdH7VX38qi96l4etVfdy6P2qnt51F51L4/aq+7lUXvVvTxqr7qXR+3/BQPA4W4= + + + + + eJzt1+cX0GMcxuEWGjSUQlEqSikZIauBNKhUMhpShEgI2Q2VHdpWW5QtI6Mho6xCqShk7723y5/wO144jvtzzvUHPPf31VOiREoppZRSSimllFJKKaWUUkoppZRSSimllFJKKaWUUkoppZRSSimllFJKKaWUUkoppf9rJUuWKFGK0pRhEzZlM8pSjvJUYHO2oCKVqEwVtqQq1diK6tRg65L/9uv+e21js22pSS22Y3tqU4cdqEs96rMjO9GAhuxMIxqzC01oyq40yz0Kt5vNdmcP9qQ5e7E3+9CCfdmP/TmAA2lJK1rThoM4mENoy6G0yz0K195mHejIYRxOJzrThSPoSje6cyQ9OIqjOYZj6UkvetOH4+ibexTueJv1oz8ncCIDOImTOYWBnMppDOJ0BnMGZ3IWQzibcziXoZyXexTufJtdwIVcxMVcwjCGM4KRXMooRjOGy7icK7iSq7iaaxjLtVyXexTuepuNYzwTmMgkJjOFG7iRm7iZW5jKNKYzg5nMYja3MofbuD33KNxcm83jDu7kLu7mHu7lPu5nPg/wIA/xMAt4hEd5jMdZyCIWsyT3KNwTNlvKkzzF0zzDMpbzLM/xPC/wIitYyUu8zCusYjWvsoa1rMs9CveazV5nPRt4gzd5i428zTu8y3u8zwd8yEd8zCd8ymd8zhd8yVe5R+G+ttk3fMt3fM8P/MhP/Mwv/Mpv/M4f/Pn31qX87ylFacqwCZuyGWVL/duv++9VzmblqcDmbEFFKlGZKmxJVaqxFdWpwdZsw7bUpBbbsT21qZN7FG4Hm9WlHvXZkZ1oQEN2phGN2YUmNGVXmrEbu7MHe9KcvdibfXKPwrWw2b7sx/4cwIG0pBWtacNBHMwhtOVQ2tGeDnTkMA6nE53pknsU7gibdaUb3TmSHhzF0RzDsfSkF73pw3H05Xj60Z8TOJEBnMTJuUfhTrHZQE7lNAZxOoM5gzM5iyGczTmcy1DO43wu4EIu4mIuYRjDc4/CjbDZSC5lFKMZw2VczhVcyVVczTWM5Vqu43rGMZ4JTGQSk5mSexTuBpvdyE3czC1MZRrTmcFMZjGbW5nDbdzOXOZxB3dyF3dzD/fmHoW7z2b3M58HeJCHeJgFPMKjPMbjLGQRi1nCEyzlSZ7iaZ5hGctzj8I9a7PneJ4XeJEVrOQlXuYVVrGaV1nDWtbxGq+zng28wZu8xcbcI6WUUkoppZRSSimllFJKKaWUUkoppZRSSimllFL6x/0Fr/fksg== + + + + + eJzt3VdsVQUcx/FzRylTcEAnMnxwCxQV1Ae3gAZBTdzrSZaLqa8qguxpIt0tdDB8oHvQoYIDuicqqHExirLVqFC/Te5bm8bbcO45557fN/nkJg3g5f/LNYVar2EopZSyYxv8hrERm7DZb/Wz6b3zPL8/8Cf+svlz7Wsp/L5SkYZ0m/8ePRGG4YUP/girn405bWeDHdiJXTbfYwgbXIahGBamexSyQRGKUWLzPWLYIBZxiA/TPZRSKtjc8Lmck3LD53JOyg2fyzkpfS6nlPOb7zOMBViIRViMJT6rn1X4to7brscGbMQmbMaHgZuv4HElVmE11mCt9jCtHG6bi+3YgZ3YhY8DN8/gMRNbsQ1ZyNYeplXFbavxCT7FZ9iLfYGbl/JYhnLsQQUqtYdptXPbg/ga3+BbHMLhwM0beWxCM1rQijbtYVonue0pnMYZnMU5nA+Dm2/xG0YikpBsw78DSeTGSUhGClKRhvQwuH1PZbFBNnKQa8M98rh7PgpQiCIUoyRM99jNBnnIR4EN99jP3Q+gBrWoQz0awvQ1U8EGlahCtQ33+JEb/4Sf8Qt+xREcddFrxk79zY3/wb+4gIvo7Lq7v+fXjAp9vb1meiqS7fpjAAZikA3/PeDkenvN9NQoPj4aYzAW12gPS5vE/SfjDtyJu7SHpc3g/jPxGB7HE9rD0mZx/9mYg7mYpz2UUkoppZRSSinX5aTvR3VDTvp+VDfkpO9HdUNO+n5UpZRSSimllFLOyOMxDC988CMC/RDp6f5jB/OxIYGPD+VxGC7HFbgSV2E4RiAK0T38Gqr3YrhZLOIQj5H/84bX8uOuw/W4ATfiJtyMWzAO47VH0E3gZgl9uNvd/Jx7cC/uw/14AA/iIUzBVO0RdNP6cLMn+TlP4Wk8g2fxHJ7HC3gRL+Fl7WF6r3Hj1/EG3sR8LMBCLMJiLMFbeFt7mNpS7vs+lmE5PsAKrMQqrMYarMU6rNceppbMfVOQijSkIwOZ2IptyEI2cpCrPUytgPsWogjFKEEpylCOPahAJapQrT1MrYb71qIO9WhAI5rQjBa0og3tOKg9LKuD25/Ab/gdJ3FKe1iWz8uf7xGBfohEf6/Vz8q9xXH7eIzE1RiF0doj6MZcgpsl8GtMxK24DbdjEiZrD8ubzgaPYgZmag9b9Ao7zMJs7RF0c7jZXMzDq7qf5b3DBu/iPSwN7LGMx+WXYJuPtG/QbeFmiUhCMlKQijSkIwOZumvI2s2t85CPAhSiCMUoQSnKUK5NQtJX3Hk/DqAGtahDPRrQiCY0owWtaEO79unWab9hnMFZnNN/Z215F9jgIjq7tjD5/4e/l3/GPnyOL/Cl9u/WADYYiEEYbPIeDdy/EU1oRov26NZwNhiBKESbvMch7n8Y3+F7/KA9LO0o9z+G4+jACe2hlFJKKaWUUsomHfHy51Ycw3F06O+gLa2z6/4+w/DAC5/eH8HSorh/NGIQizjtYWnjuP94TEACJmoPS5vC/adiGh7GI9pDKdfm9q/X2+29HUP59Xo7Zrf3dgzl1+vtmN3e2zGUX6+3Y3Z/b0ellPv6D7fLIwQ= + + + diff --git a/cc_moba/assets/map/map4.tmx.meta b/cc_moba/assets/map/map4.tmx.meta new file mode 100644 index 0000000..295f81b --- /dev/null +++ b/cc_moba/assets/map/map4.tmx.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.3", + "uuid": "751fe82c-dc0d-44f3-b4e0-4a5cf212dd0b", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/map/terrain.meta b/cc_moba/assets/map/terrain.meta new file mode 100644 index 0000000..588124b --- /dev/null +++ b/cc_moba/assets/map/terrain.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "63a4f866-9952-4e73-af7b-c68fe96c5222", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/resources.meta b/cc_moba/assets/resources.meta new file mode 100644 index 0000000..6a0ffb0 --- /dev/null +++ b/cc_moba/assets/resources.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "4ff34e49-a5d0-468a-abee-06f03cdb6f0f", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/assets/resources/gd.plist b/cc_moba/assets/resources/gd.plist new file mode 100644 index 0000000..ad7c500 --- /dev/null +++ b/cc_moba/assets/resources/gd.plist @@ -0,0 +1,880 @@ + + + + + frames + + 100.png.pvr.png + + frame + {{2,194},{60,72}} + offset + {-1,26} + rotated + + sourceColorRect + {{1,2},{60,72}} + sourceSize + {64,128} + + 110.png.pvr.png + + frame + {{216,338},{44,68}} + offset + {-8,28} + rotated + + sourceColorRect + {{2,2},{44,68}} + sourceSize + {64,128} + + 120.png.pvr.png + + frame + {{2,544},{50,64}} + offset + {-6,31} + rotated + + sourceColorRect + {{1,1},{50,64}} + sourceSize + {64,128} + + 130.png.pvr.png + + frame + {{214,384},{66,62}} + offset + {-29,32} + rotated + + sourceColorRect + {{2,1},{66,62}} + sourceSize + {128,128} + + 140.png.pvr.png + + frame + {{410,566},{60,64}} + offset + {-1,30} + rotated + + sourceColorRect + {{1,2},{60,64}} + sourceSize + {64,128} + + 200.png.pvr.png + + frame + {{226,216},{64,70}} + offset + {-31,28} + rotated + + sourceColorRect + {{1,1},{64,70}} + sourceSize + {128,128} + + 201.png.pvr.png + + frame + {{76,200},{70,68}} + offset + {-27,29} + rotated + + sourceColorRect + {{2,1},{70,68}} + sourceSize + {128,128} + + 202.png.pvr.png + + frame + {{444,210},{66,68}} + offset + {-29,28} + rotated + + sourceColorRect + {{2,2},{66,68}} + sourceSize + {128,128} + + 203.png.pvr.png + + frame + {{74,270},{56,70}} + offset + {-2,28} + rotated + + sourceColorRect + {{2,1},{56,70}} + sourceSize + {64,128} + + 204.png.pvr.png + + frame + {{442,350},{56,68}} + offset + {-2,28} + rotated + + sourceColorRect + {{2,2},{56,68}} + sourceSize + {64,128} + + 205.png.pvr.png + + frame + {{300,208},{68,70}} + offset + {-29,27} + rotated + + sourceColorRect + {{1,2},{68,70}} + sourceSize + {128,128} + + 210.png.pvr.png + + frame + {{254,72},{74,72}} + offset + {-25,26} + rotated + + sourceColorRect + {{2,2},{74,72}} + sourceSize + {128,128} + + 211.png.pvr.png + + frame + {{2,256},{68,70}} + offset + {-29,27} + rotated + + sourceColorRect + {{1,2},{68,70}} + sourceSize + {128,128} + + 212.png.pvr.png + + frame + {{370,312},{44,70}} + offset + {-9,27} + rotated + + sourceColorRect + {{1,2},{44,70}} + sourceSize + {64,128} + + 213.png.pvr.png + + frame + {{72,382},{42,68}} + offset + {-9,28} + rotated + + sourceColorRect + {{2,2},{42,68}} + sourceSize + {64,128} + + 214.png.pvr.png + + frame + {{2,380},{46,68}} + offset + {-7,29} + rotated + + sourceColorRect + {{2,1},{46,68}} + sourceSize + {64,128} + + 215.png.pvr.png + + frame + {{220,282},{54,68}} + offset + {-3,28} + rotated + + sourceColorRect + {{2,2},{54,68}} + sourceSize + {64,128} + + 220.png.pvr.png + + frame + {{134,488},{56,64}} + offset + {-2,30} + rotated + + sourceColorRect + {{2,2},{56,64}} + sourceSize + {64,128} + + 221.png.pvr.png + + frame + {{282,434},{50,66}} + offset + {-5,29} + rotated + + sourceColorRect + {{2,2},{50,66}} + sourceSize + {64,128} + + 222.png.pvr.png + + frame + {{210,448},{46,66}} + offset + {-8,29} + rotated + + sourceColorRect + {{1,2},{46,66}} + sourceSize + {64,128} + + 223.png.pvr.png + + frame + {{142,424},{62,66}} + offset + {-32,29} + rotated + + sourceColorRect + {{1,2},{62,66}} + sourceSize + {128,128} + + 224.png.pvr.png + + frame + {{344,544},{60,64}} + offset + {-1,31} + rotated + + sourceColorRect + {{1,1},{60,64}} + sourceSize + {64,128} + + 225.png.pvr.png + + frame + {{422,460},{42,66}} + offset + {-9,30} + rotated + + sourceColorRect + {{2,1},{42,66}} + sourceSize + {64,128} + + 230.png.pvr.png + + frame + {{144,380},{42,68}} + offset + {-9,29} + rotated + + sourceColorRect + {{2,1},{42,68}} + sourceSize + {64,128} + + 231.png.pvr.png + + frame + {{354,426},{50,66}} + offset + {-5,29} + rotated + + sourceColorRect + {{2,2},{50,66}} + sourceSize + {64,128} + + 232.png.pvr.png + + frame + {{416,504},{60,64}} + offset + {-1,30} + rotated + + sourceColorRect + {{1,2},{60,64}} + sourceSize + {64,128} + + 233.png.pvr.png + + frame + {{330,76},{72,64}} + offset + {-26,30} + rotated + + sourceColorRect + {{2,2},{72,64}} + sourceSize + {128,128} + + 234.png.pvr.png + + frame + {{416,74},{72,70}} + offset + {-27,27} + rotated + + sourceColorRect + {{1,2},{72,70}} + sourceSize + {128,128} + + 235.png.pvr.png + + frame + {{72,426},{58,66}} + offset + {-2,29} + rotated + + sourceColorRect + {{1,2},{58,66}} + sourceSize + {64,128} + + 240.png.pvr.png + + frame + {{350,478},{64,64}} + offset + {-30,31} + rotated + + sourceColorRect + {{2,1},{64,64}} + sourceSize + {128,128} + + 241.png.pvr.png + + frame + {{154,198},{70,68}} + offset + {-27,28} + rotated + + sourceColorRect + {{2,2},{70,68}} + sourceSize + {128,128} + + 242.png.pvr.png + + frame + {{360,358},{66,66}} + offset + {-29,30} + rotated + + sourceColorRect + {{2,1},{66,66}} + sourceSize + {128,128} + + 243.png.pvr.png + + frame + {{68,486},{56,64}} + offset + {-2,30} + rotated + + sourceColorRect + {{2,2},{56,64}} + sourceSize + {64,128} + + 244.png.pvr.png + + frame + {{148,268},{56,70}} + offset + {-2,27} + rotated + + sourceColorRect + {{2,2},{56,70}} + sourceSize + {64,128} + + 245.png.pvr.png + + frame + {{444,280},{68,66}} + offset + {-28,29} + rotated + + sourceColorRect + {{2,2},{68,66}} + sourceSize + {128,128} + + 300.png.pvr.png + + frame + {{80,138},{60,72}} + offset + {-1,26} + rotated + + sourceColorRect + {{1,2},{60,72}} + sourceSize + {64,128} + + 301.png.pvr.png + + frame + {{2,326},{52,70}} + offset + {-5,27} + rotated + + sourceColorRect + {{1,2},{52,70}} + sourceSize + {64,128} + + 302.png.pvr.png + + frame + {{372,210},{50,70}} + offset + {-5,28} + rotated + + sourceColorRect + {{2,1},{50,70}} + sourceSize + {64,128} + + 303.png.pvr.png + + frame + {{2,428},{56,66}} + offset + {-2,29} + rotated + + sourceColorRect + {{2,2},{56,66}} + sourceSize + {64,128} + + 304.png.pvr.png + + frame + {{372,262},{48,70}} + offset + {-7,27} + rotated + + sourceColorRect + {{1,2},{48,70}} + sourceSize + {64,128} + + 305.png.pvr.png + + frame + {{90,2},{82,66}} + offset + {-21,30} + rotated + + sourceColorRect + {{2,1},{82,66}} + sourceSize + {128,128} + + 310.png.pvr.png + + frame + {{290,324},{44,68}} + offset + {-8,28} + rotated + + sourceColorRect + {{2,2},{44,68}} + sourceSize + {64,128} + + 311.png.pvr.png + + frame + {{74,328},{52,68}} + offset + {-4,28} + rotated + + sourceColorRect + {{2,2},{52,68}} + sourceSize + {64,128} + + 312.png.pvr.png + + frame + {{258,2},{80,68}} + offset + {-23,28} + rotated + + sourceColorRect + {{1,2},{80,68}} + sourceSize + {128,128} + + 313.png.pvr.png + + frame + {{428,408},{50,66}} + offset + {-5,29} + rotated + + sourceColorRect + {{2,2},{50,66}} + sourceSize + {64,128} + + 314.png.pvr.png + + frame + {{404,146},{72,62}} + offset + {-26,32} + rotated + + sourceColorRect + {{2,1},{72,62}} + sourceSize + {128,128} + + 315.png.pvr.png + + frame + {{416,2},{72,70}} + offset + {-27,28} + rotated + + sourceColorRect + {{1,1},{72,70}} + sourceSize + {128,128} + + 320.png.pvr.png + + frame + {{200,496},{50,64}} + offset + {-6,31} + rotated + + sourceColorRect + {{1,1},{50,64}} + sourceSize + {64,128} + + 321.png.pvr.png + + frame + {{2,128},{76,64}} + offset + {-25,31} + rotated + + sourceColorRect + {{1,1},{76,64}} + sourceSize + {128,128} + + 322.png.pvr.png + + frame + {{2,2},{86,72}} + offset + {-19,27} + rotated + + sourceColorRect + {{2,1},{86,72}} + sourceSize + {128,128} + + 323.png.pvr.png + + frame + {{228,146},{70,68}} + offset + {-28,28} + rotated + + sourceColorRect + {{1,2},{70,68}} + sourceSize + {128,128} + + 324.png.pvr.png + + frame + {{90,70},{78,66}} + offset + {-23,29} + rotated + + sourceColorRect + {{2,2},{78,66}} + sourceSize + {128,128} + + 325.png.pvr.png + + frame + {{298,278},{44,70}} + offset + {-9,28} + rotated + + sourceColorRect + {{1,1},{44,70}} + sourceSize + {64,128} + + 330.png.pvr.png + + frame + {{286,370},{66,62}} + offset + {-29,32} + rotated + + sourceColorRect + {{2,1},{66,62}} + sourceSize + {128,128} + + 331.png.pvr.png + + frame + {{154,138},{58,72}} + offset + {-2,26} + rotated + + sourceColorRect + {{1,2},{58,72}} + sourceSize + {64,128} + + 332.png.pvr.png + + frame + {{330,142},{64,72}} + offset + {-30,26} + rotated + + sourceColorRect + {{2,2},{64,72}} + sourceSize + {128,128} + + 333.png.pvr.png + + frame + {{174,66},{78,70}} + offset + {-24,27} + rotated + + sourceColorRect + {{1,2},{78,70}} + sourceSize + {128,128} + + 334.png.pvr.png + + frame + {{146,326},{52,68}} + offset + {-5,28} + rotated + + sourceColorRect + {{1,2},{52,68}} + sourceSize + {64,128} + + 335.png.pvr.png + + frame + {{134,546},{58,62}} + offset + {-2,31} + rotated + + sourceColorRect + {{1,2},{58,62}} + sourceSize + {64,128} + + 340.png.pvr.png + + frame + {{278,486},{60,64}} + offset + {-1,30} + rotated + + sourceColorRect + {{1,2},{60,64}} + sourceSize + {64,128} + + 341.png.pvr.png + + frame + {{68,594},{52,60}} + offset + {-5,0} + rotated + + sourceColorRect + {{1,2},{52,60}} + sourceSize + {64,64} + + 342.png.pvr.png + + frame + {{2,76},{50,78}} + offset + {-5,23} + rotated + + sourceColorRect + {{2,2},{50,78}} + sourceSize + {64,128} + + 343.png.pvr.png + + frame + {{2,486},{56,64}} + offset + {-2,30} + rotated + + sourceColorRect + {{2,2},{56,64}} + sourceSize + {64,128} + + 344.png.pvr.png + + frame + {{68,544},{48,64}} + offset + {-7,30} + rotated + + sourceColorRect + {{1,2},{48,64}} + sourceSize + {64,128} + + 345.png.pvr.png + + frame + {{174,2},{82,62}} + offset + {-21,31} + rotated + + sourceColorRect + {{2,2},{82,62}} + sourceSize + {128,128} + + 500.png.pvr.png + + frame + {{340,2},{74,72}} + offset + {-25,27} + rotated + + sourceColorRect + {{2,1},{74,72}} + sourceSize + {128,128} + + + metadata + + format + 2 + realTextureFileName + gd.png + size + {512,1024} + smartupdate + $TexturePacker:SmartUpdate:54c408cc1e4370c621d702099d3affad$ + textureFileName + gd.png + + + diff --git a/cc_moba/assets/resources/gd.plist.meta b/cc_moba/assets/resources/gd.plist.meta new file mode 100644 index 0000000..1858b10 --- /dev/null +++ b/cc_moba/assets/resources/gd.plist.meta @@ -0,0 +1,1464 @@ +{ + "ver": "1.2.4", + "uuid": "2779c29e-c164-48a2-bddb-f96519f507de", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "size": { + "width": 512, + "height": 1024 + }, + "type": "Texture Packer", + "subMetas": { + "100.png.pvr.png": { + "ver": "1.0.3", + "uuid": "bf6bd0eb-ff6f-4e1d-8ef8-4f66c5323b5d", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": 26, + "trimX": 2, + "trimY": 194, + "width": 60, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "110.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e8b898b5-1979-417f-9510-639f1939e08e", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -8, + "offsetY": 28, + "trimX": 216, + "trimY": 338, + "width": 44, + "height": 68, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "120.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f8c677e3-e05a-4011-a2d8-ef1227e32069", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -6, + "offsetY": 31, + "trimX": 2, + "trimY": 544, + "width": 50, + "height": 64, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "130.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3ce9a284-74fe-4b3a-ae93-a7029cd62e8e", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 32, + "trimX": 214, + "trimY": 384, + "width": 66, + "height": 62, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "140.png.pvr.png": { + "ver": "1.0.3", + "uuid": "9ae55cd6-f14b-473d-abfd-406556b2c503", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": 30, + "trimX": 410, + "trimY": 566, + "width": 60, + "height": 64, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "200.png.pvr.png": { + "ver": "1.0.3", + "uuid": "47081d15-cb37-4f59-a857-a20cb08a9f0f", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -31, + "offsetY": 28, + "trimX": 226, + "trimY": 216, + "width": 64, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "201.png.pvr.png": { + "ver": "1.0.3", + "uuid": "43caa826-a546-452e-a639-3339f3a6be06", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -27, + "offsetY": 29, + "trimX": 76, + "trimY": 200, + "width": 70, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "202.png.pvr.png": { + "ver": "1.0.3", + "uuid": "6dba4c5d-48b2-4492-bc37-f91b7fccb264", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 28, + "trimX": 444, + "trimY": 210, + "width": 66, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "203.png.pvr.png": { + "ver": "1.0.3", + "uuid": "1a40e548-c1f9-4b41-b3a7-884c93d16a33", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 28, + "trimX": 74, + "trimY": 270, + "width": 56, + "height": 70, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "204.png.pvr.png": { + "ver": "1.0.3", + "uuid": "dcd638c1-8654-49e5-ac95-d56a773a8512", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 28, + "trimX": 442, + "trimY": 350, + "width": 56, + "height": 68, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "205.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d991bf2b-92bd-49ed-bc55-e1dfd417974f", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -29, + "offsetY": 27, + "trimX": 300, + "trimY": 208, + "width": 68, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "210.png.pvr.png": { + "ver": "1.0.3", + "uuid": "bea01534-da55-4b07-927b-b484f57c2ce3", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -25, + "offsetY": 26, + "trimX": 254, + "trimY": 72, + "width": 74, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "211.png.pvr.png": { + "ver": "1.0.3", + "uuid": "1a8d9304-6ac0-4a4d-8254-defc123ff53f", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -29, + "offsetY": 27, + "trimX": 2, + "trimY": 256, + "width": 68, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "212.png.pvr.png": { + "ver": "1.0.3", + "uuid": "bffc3eba-d15a-4fee-bac7-48729e98bd72", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -9, + "offsetY": 27, + "trimX": 370, + "trimY": 312, + "width": 44, + "height": 70, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "213.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d79e740a-350f-40e6-9bb1-d20e04e63903", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -9, + "offsetY": 28, + "trimX": 72, + "trimY": 382, + "width": 42, + "height": 68, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "214.png.pvr.png": { + "ver": "1.0.3", + "uuid": "aba78889-40cf-4d5c-a81d-a660f4a2e8be", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 29, + "trimX": 2, + "trimY": 380, + "width": 46, + "height": 68, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "215.png.pvr.png": { + "ver": "1.0.3", + "uuid": "14daeff1-91e9-446f-b1f5-8947536ccf2a", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -3, + "offsetY": 28, + "trimX": 220, + "trimY": 282, + "width": 54, + "height": 68, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "220.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f881a724-b763-4294-a149-bbbac50ea5d3", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 30, + "trimX": 134, + "trimY": 488, + "width": 56, + "height": 64, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "221.png.pvr.png": { + "ver": "1.0.3", + "uuid": "79d338ac-d766-4575-90d9-85c4591bd169", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 29, + "trimX": 282, + "trimY": 434, + "width": 50, + "height": 66, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "222.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a51b1866-8370-4e63-b438-d2a55eaf3c11", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -8, + "offsetY": 29, + "trimX": 210, + "trimY": 448, + "width": 46, + "height": 66, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "223.png.pvr.png": { + "ver": "1.0.3", + "uuid": "927e9bc6-827b-47e6-a753-1cc70ec44006", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -32, + "offsetY": 29, + "trimX": 142, + "trimY": 424, + "width": 62, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "224.png.pvr.png": { + "ver": "1.0.3", + "uuid": "6c140104-9be6-4904-8b12-ba06b4f71bbf", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": 31, + "trimX": 344, + "trimY": 544, + "width": 60, + "height": 64, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "225.png.pvr.png": { + "ver": "1.0.3", + "uuid": "1f7dea63-01d6-42c9-904b-9581662dc169", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -9, + "offsetY": 30, + "trimX": 422, + "trimY": 460, + "width": 42, + "height": 66, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "230.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3e68e837-220e-4f0e-8c03-32bf4841779c", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -9, + "offsetY": 29, + "trimX": 144, + "trimY": 380, + "width": 42, + "height": 68, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "231.png.pvr.png": { + "ver": "1.0.3", + "uuid": "fcc9623d-f142-4b5b-864d-66112e40bd17", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 29, + "trimX": 354, + "trimY": 426, + "width": 50, + "height": 66, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "232.png.pvr.png": { + "ver": "1.0.3", + "uuid": "5d00d3d7-9ec1-4acf-9943-31ec0b393e53", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": 30, + "trimX": 416, + "trimY": 504, + "width": 60, + "height": 64, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "233.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f6e1f702-17fa-4a8b-87a0-ace54ba2c08c", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -26, + "offsetY": 30, + "trimX": 330, + "trimY": 76, + "width": 72, + "height": 64, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "234.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3a212b5f-b6a7-4bc3-b132-5685c5292bec", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -27, + "offsetY": 27, + "trimX": 416, + "trimY": 74, + "width": 72, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "235.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e82b881d-dba6-42b1-bec7-b6b3352253d8", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 29, + "trimX": 72, + "trimY": 426, + "width": 58, + "height": 66, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "240.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d5ccf13c-5dcb-42cf-8eb5-cc17c319abd3", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -30, + "offsetY": 31, + "trimX": 350, + "trimY": 478, + "width": 64, + "height": 64, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "241.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3eba3bde-dad6-4c4e-a6e7-43cb47c3aa42", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -27, + "offsetY": 28, + "trimX": 154, + "trimY": 198, + "width": 70, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "242.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ef0f65d4-5eed-4c12-a3b7-f8a8a1a9ba7f", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 30, + "trimX": 360, + "trimY": 358, + "width": 66, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "243.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d0b4736e-934b-429a-99e2-7b59ee36e8aa", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 30, + "trimX": 68, + "trimY": 486, + "width": 56, + "height": 64, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "244.png.pvr.png": { + "ver": "1.0.3", + "uuid": "cb493cef-0892-4380-8b52-0dee6153e435", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 27, + "trimX": 148, + "trimY": 268, + "width": 56, + "height": 70, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "245.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ac20854b-73d7-4fc3-82b5-61570127c7a8", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -28, + "offsetY": 29, + "trimX": 444, + "trimY": 280, + "width": 68, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "300.png.pvr.png": { + "ver": "1.0.3", + "uuid": "45d369b6-ede4-4dd7-baf3-d4e3f34d3c46", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": 26, + "trimX": 80, + "trimY": 138, + "width": 60, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "301.png.pvr.png": { + "ver": "1.0.3", + "uuid": "93f858f7-c234-4674-b8e7-d93dea360185", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 27, + "trimX": 2, + "trimY": 326, + "width": 52, + "height": 70, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "302.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b8359df1-aa68-40f6-a5f0-71427b92a8cd", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 28, + "trimX": 372, + "trimY": 210, + "width": 50, + "height": 70, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "303.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f94f36c0-262f-48c9-909a-a4ff122d9f4d", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 29, + "trimX": 2, + "trimY": 428, + "width": 56, + "height": 66, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "304.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ab94ebc1-5a3d-4b23-84c3-a7aa2d615c13", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 27, + "trimX": 372, + "trimY": 262, + "width": 48, + "height": 70, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "305.png.pvr.png": { + "ver": "1.0.3", + "uuid": "02369bba-66d5-4b7b-b6ea-17645fef77fa", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -21, + "offsetY": 30, + "trimX": 90, + "trimY": 2, + "width": 82, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "310.png.pvr.png": { + "ver": "1.0.3", + "uuid": "73f824da-74bd-4742-92c1-ae2963b4831a", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -8, + "offsetY": 28, + "trimX": 290, + "trimY": 324, + "width": 44, + "height": 68, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "311.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d91f1788-9c01-4d6d-8516-ed1718a28e0b", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -4, + "offsetY": 28, + "trimX": 74, + "trimY": 328, + "width": 52, + "height": 68, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "312.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e917359b-4d2c-496c-a5d0-54ba429223b6", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -23, + "offsetY": 28, + "trimX": 258, + "trimY": 2, + "width": 80, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "313.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3ab330ab-85fe-4699-953a-1b0d0d6af745", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 29, + "trimX": 428, + "trimY": 408, + "width": 50, + "height": 66, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "314.png.pvr.png": { + "ver": "1.0.3", + "uuid": "aece282c-5ad6-4392-b1b6-903a81051d78", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -26, + "offsetY": 32, + "trimX": 404, + "trimY": 146, + "width": 72, + "height": 62, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "315.png.pvr.png": { + "ver": "1.0.3", + "uuid": "55689caa-01cd-46fe-a87b-5803d5e700a2", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -27, + "offsetY": 28, + "trimX": 416, + "trimY": 2, + "width": 72, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "320.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f217dde8-4ffe-4e5a-a58e-dbeb519e7b70", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -6, + "offsetY": 31, + "trimX": 200, + "trimY": 496, + "width": 50, + "height": 64, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "321.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d1fb175d-44c4-49b5-a911-a1e9184237dc", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -25, + "offsetY": 31, + "trimX": 2, + "trimY": 128, + "width": 76, + "height": 64, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "322.png.pvr.png": { + "ver": "1.0.3", + "uuid": "726d0bdb-bad0-4fe8-849d-686db8446b76", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -19, + "offsetY": 27, + "trimX": 2, + "trimY": 2, + "width": 86, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "323.png.pvr.png": { + "ver": "1.0.3", + "uuid": "bb9b34d2-9fb1-4c21-b695-28ae92b2c394", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -28, + "offsetY": 28, + "trimX": 228, + "trimY": 146, + "width": 70, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "324.png.pvr.png": { + "ver": "1.0.3", + "uuid": "77d5d3f1-858e-4595-9ffe-e17d19d8fbab", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -23, + "offsetY": 29, + "trimX": 90, + "trimY": 70, + "width": 78, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "325.png.pvr.png": { + "ver": "1.0.3", + "uuid": "801f22e4-e826-4463-aade-f53f6459aca7", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -9, + "offsetY": 28, + "trimX": 298, + "trimY": 278, + "width": 44, + "height": 70, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "330.png.pvr.png": { + "ver": "1.0.3", + "uuid": "cbce4d46-4595-44b1-b581-cf556f0b7d2c", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 32, + "trimX": 286, + "trimY": 370, + "width": 66, + "height": 62, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "331.png.pvr.png": { + "ver": "1.0.3", + "uuid": "583d04a4-6cf4-4201-8302-be3c8ec2012e", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 26, + "trimX": 154, + "trimY": 138, + "width": 58, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "332.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b5f3b358-97f1-414a-bd47-237aa3007157", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -30, + "offsetY": 26, + "trimX": 330, + "trimY": 142, + "width": 64, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "333.png.pvr.png": { + "ver": "1.0.3", + "uuid": "cb826037-1615-45bc-b32d-a894cf777238", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -24, + "offsetY": 27, + "trimX": 174, + "trimY": 66, + "width": 78, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "334.png.pvr.png": { + "ver": "1.0.3", + "uuid": "1c20c280-bfa3-41bf-8b94-f07412ba9ff8", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 28, + "trimX": 146, + "trimY": 326, + "width": 52, + "height": 68, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "335.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ed016164-cc7a-4f37-a970-93fdb86aa3c9", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 31, + "trimX": 134, + "trimY": 546, + "width": 58, + "height": 62, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "340.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f3be6390-dc0a-4027-ad6b-9f8578e43a7e", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": 30, + "trimX": 278, + "trimY": 486, + "width": 60, + "height": 64, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "341.png.pvr.png": { + "ver": "1.0.3", + "uuid": "9c4dc662-b4bb-40be-b813-076f2241046f", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 0, + "trimX": 68, + "trimY": 594, + "width": 52, + "height": 60, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "342.png.pvr.png": { + "ver": "1.0.3", + "uuid": "81aad998-d930-4529-a1a8-bba64f9e40d0", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 23, + "trimX": 2, + "trimY": 76, + "width": 50, + "height": 78, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "343.png.pvr.png": { + "ver": "1.0.3", + "uuid": "06dcfa13-ed2e-4154-899f-859d2bf87307", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 30, + "trimX": 2, + "trimY": 486, + "width": 56, + "height": 64, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "344.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e967b5ab-0ba5-47f8-8fcc-6b480553bd6f", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 30, + "trimX": 68, + "trimY": 544, + "width": 48, + "height": 64, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "345.png.pvr.png": { + "ver": "1.0.3", + "uuid": "951b2d13-29da-4ff5-8158-212786d9e7d7", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -21, + "offsetY": 31, + "trimX": 174, + "trimY": 2, + "width": 82, + "height": 62, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "500.png.pvr.png": { + "ver": "1.0.3", + "uuid": "1ef8a5f6-562c-4b1f-8c7e-072d213ea4f6", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -25, + "offsetY": 27, + "trimX": 340, + "trimY": 2, + "width": 74, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/resources/gd.png b/cc_moba/assets/resources/gd.png new file mode 100644 index 0000000..cfd9719 Binary files /dev/null and b/cc_moba/assets/resources/gd.png differ diff --git a/cc_moba/assets/resources/gd.png.meta b/cc_moba/assets/resources/gd.png.meta new file mode 100644 index 0000000..b26ceb7 --- /dev/null +++ b/cc_moba/assets/resources/gd.png.meta @@ -0,0 +1,30 @@ +{ + "ver": "1.0.0", + "uuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "subMetas": { + "gd": { + "ver": "1.0.3", + "uuid": "0b4adbbd-403c-4acc-ad80-371c21fc853c", + "rawTextureUuid": "d90037d0-0cec-4fea-bbc9-32d591c2662b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 188, + "trimX": 2, + "trimY": 2, + "width": 508, + "height": 644, + "rawWidth": 512, + "rawHeight": 1024, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/resources/nt.plist b/cc_moba/assets/resources/nt.plist new file mode 100644 index 0000000..9948d51 --- /dev/null +++ b/cc_moba/assets/resources/nt.plist @@ -0,0 +1,1452 @@ + + + + + frames + + 100.png.pvr.png + + frame + {{2,484},{92,88}} + offset + {-17,18} + rotated + + sourceColorRect + {{1,2},{92,88}} + sourceSize + {128,128} + + 101.png.pvr.png + + frame + {{96,408},{92,88}} + offset + {-17,18} + rotated + + sourceColorRect + {{1,2},{92,88}} + sourceSize + {128,128} + + 102.png.pvr.png + + frame + {{754,586},{90,86}} + offset + {-17,19} + rotated + + sourceColorRect + {{2,2},{90,86}} + sourceSize + {128,128} + + 103.png.pvr.png + + frame + {{282,746},{90,86}} + offset + {-17,19} + rotated + + sourceColorRect + {{2,2},{90,86}} + sourceSize + {128,128} + + 104.png.pvr.png + + frame + {{376,710},{90,86}} + offset + {-17,19} + rotated + + sourceColorRect + {{2,2},{90,86}} + sourceSize + {128,128} + + 105.png.pvr.png + + frame + {{594,458},{92,88}} + offset + {-17,19} + rotated + + sourceColorRect + {{1,1},{92,88}} + sourceSize + {128,128} + + 110.png.pvr.png + + frame + {{688,226},{92,96}} + offset + {-17,14} + rotated + + sourceColorRect + {{1,2},{92,96}} + sourceSize + {128,128} + + 111.png.pvr.png + + frame + {{586,272},{90,96}} + offset + {-17,15} + rotated + + sourceColorRect + {{2,1},{90,96}} + sourceSize + {128,128} + + 112.png.pvr.png + + frame + {{514,364},{90,94}} + offset + {-17,15} + rotated + + sourceColorRect + {{2,2},{90,94}} + sourceSize + {128,128} + + 113.png.pvr.png + + frame + {{876,378},{90,94}} + offset + {-17,16} + rotated + + sourceColorRect + {{2,1},{90,94}} + sourceSize + {128,128} + + 114.png.pvr.png + + frame + {{780,334},{92,94}} + offset + {-17,16} + rotated + + sourceColorRect + {{1,1},{92,94}} + sourceSize + {128,128} + + 115.png.pvr.png + + frame + {{884,284},{92,94}} + offset + {-17,15} + rotated + + sourceColorRect + {{1,2},{92,94}} + sourceSize + {128,128} + + 120.png.pvr.png + + frame + {{284,576},{76,92}} + offset + {-24,16} + rotated + + sourceColorRect + {{2,2},{76,92}} + sourceSize + {128,128} + + 121.png.pvr.png + + frame + {{378,558},{76,92}} + offset + {-24,17} + rotated + + sourceColorRect + {{2,1},{76,92}} + sourceSize + {128,128} + + 122.png.pvr.png + + frame + {{474,534},{76,92}} + offset + {-24,17} + rotated + + sourceColorRect + {{2,1},{76,92}} + sourceSize + {128,128} + + 123.png.pvr.png + + frame + {{2,656},{76,92}} + offset + {-24,17} + rotated + + sourceColorRect + {{2,1},{76,92}} + sourceSize + {128,128} + + 124.png.pvr.png + + frame + {{96,580},{76,92}} + offset + {-24,17} + rotated + + sourceColorRect + {{2,1},{76,92}} + sourceSize + {128,128} + + 125.png.pvr.png + + frame + {{190,528},{76,92}} + offset + {-24,16} + rotated + + sourceColorRect + {{2,2},{76,92}} + sourceSize + {128,128} + + 130.png.pvr.png + + frame + {{568,552},{74,92}} + offset + {-25,16} + rotated + + sourceColorRect + {{2,2},{74,92}} + sourceSize + {128,128} + + 131.png.pvr.png + + frame + {{96,658},{74,92}} + offset + {-26,17} + rotated + + sourceColorRect + {{1,1},{74,92}} + sourceSize + {128,128} + + 132.png.pvr.png + + frame + {{378,636},{72,92}} + offset + {-26,17} + rotated + + sourceColorRect + {{2,1},{72,92}} + sourceSize + {128,128} + + 133.png.pvr.png + + frame + {{472,612},{72,92}} + offset + {-26,16} + rotated + + sourceColorRect + {{2,2},{72,92}} + sourceSize + {128,128} + + 134.png.pvr.png + + frame + {{610,364},{72,92}} + offset + {-26,16} + rotated + + sourceColorRect + {{2,2},{72,92}} + sourceSize + {128,128} + + 135.png.pvr.png + + frame + {{190,606},{74,92}} + offset + {-26,16} + rotated + + sourceColorRect + {{1,2},{74,92}} + sourceSize + {128,128} + + 140.png.pvr.png + + frame + {{2,574},{92,80}} + offset + {-17,23} + rotated + + sourceColorRect + {{1,1},{92,80}} + sourceSize + {128,128} + + 141.png.pvr.png + + frame + {{380,478},{92,78}} + offset + {-17,23} + rotated + + sourceColorRect + {{1,2},{92,78}} + sourceSize + {128,128} + + 142.png.pvr.png + + frame + {{166,856},{90,80}} + offset + {-17,23} + rotated + + sourceColorRect + {{2,1},{90,80}} + sourceSize + {128,128} + + 143.png.pvr.png + + frame + {{84,856},{90,80}} + offset + {-17,22} + rotated + + sourceColorRect + {{2,2},{90,80}} + sourceSize + {128,128} + + 144.png.pvr.png + + frame + {{186,774},{90,80}} + offset + {-17,22} + rotated + + sourceColorRect + {{2,2},{90,80}} + sourceSize + {128,128} + + 145.png.pvr.png + + frame + {{96,498},{92,80}} + offset + {-17,23} + rotated + + sourceColorRect + {{1,1},{92,80}} + sourceSize + {128,128} + + 200.png.pvr.png + + frame + {{662,582},{90,90}} + offset + {-17,18} + rotated + + sourceColorRect + {{2,1},{90,90}} + sourceSize + {128,128} + + 201.png.pvr.png + + frame + {{472,686},{90,86}} + offset + {-17,19} + rotated + + sourceColorRect + {{2,2},{90,86}} + sourceSize + {128,128} + + 202.png.pvr.png + + frame + {{94,734},{90,82}} + offset + {-18,22} + rotated + + sourceColorRect + {{1,1},{90,82}} + sourceSize + {128,128} + + 203.png.pvr.png + + frame + {{408,798},{86,88}} + offset + {-19,19} + rotated + + sourceColorRect + {{2,1},{86,88}} + sourceSize + {128,128} + + 204.png.pvr.png + + frame + {{584,718},{84,82}} + offset + {-21,22} + rotated + + sourceColorRect + {{1,1},{84,82}} + sourceSize + {128,128} + + 205.png.pvr.png + + frame + {{518,862},{86,82}} + offset + {-20,21} + rotated + + sourceColorRect + {{1,2},{86,82}} + sourceSize + {128,128} + + 206.png.pvr.png + + frame + {{434,888},{88,82}} + offset + {-18,21} + rotated + + sourceColorRect + {{2,2},{88,82}} + sourceSize + {128,128} + + 207.png.pvr.png + + frame + {{192,348},{90,92}} + offset + {-17,17} + rotated + + sourceColorRect + {{2,1},{90,92}} + sourceSize + {128,128} + + 210.png.pvr.png + + frame + {{684,414},{88,94}} + offset + {-18,16} + rotated + + sourceColorRect + {{2,1},{88,94}} + sourceSize + {128,128} + + 211.png.pvr.png + + frame + {{2,392},{92,90}} + offset + {-17,18} + rotated + + sourceColorRect + {{1,1},{92,90}} + sourceSize + {128,128} + + 212.png.pvr.png + + frame + {{684,320},{94,92}} + offset + {-15,17} + rotated + + sourceColorRect + {{2,1},{94,92}} + sourceSize + {128,128} + + 213.png.pvr.png + + frame + {{924,2},{98,98}} + offset + {-13,14} + rotated + + sourceColorRect + {{2,1},{98,98}} + sourceSize + {128,128} + + 214.png.pvr.png + + frame + {{588,82},{102,94}} + offset + {-11,16} + rotated + + sourceColorRect + {{2,1},{102,94}} + sourceSize + {128,128} + + 215.png.pvr.png + + frame + {{104,220},{100,92}} + offset + {-12,16} + rotated + + sourceColorRect + {{2,2},{100,92}} + sourceSize + {128,128} + + 216.png.pvr.png + + frame + {{206,254},{96,92}} + offset + {-14,16} + rotated + + sourceColorRect + {{2,2},{96,92}} + sourceSize + {128,128} + + 217.png.pvr.png + + frame + {{98,314},{92,92}} + offset + {-16,16} + rotated + + sourceColorRect + {{2,2},{92,92}} + sourceSize + {128,128} + + 220.png.pvr.png + + frame + {{356,926},{76,90}} + offset + {-24,17} + rotated + + sourceColorRect + {{2,2},{76,90}} + sourceSize + {128,128} + + 221.png.pvr.png + + frame + {{284,498},{76,92}} + offset + {-25,16} + rotated + + sourceColorRect + {{1,2},{76,92}} + sourceSize + {128,128} + + 222.png.pvr.png + + frame + {{2,314},{76,94}} + offset + {-24,16} + rotated + + sourceColorRect + {{2,1},{76,94}} + sourceSize + {128,128} + + 223.png.pvr.png + + frame + {{876,548},{76,94}} + offset + {-24,16} + rotated + + sourceColorRect + {{2,1},{76,94}} + sourceSize + {128,128} + + 224.png.pvr.png + + frame + {{780,428},{78,94}} + offset + {-23,16} + rotated + + sourceColorRect + {{2,1},{78,94}} + sourceSize + {128,128} + + 225.png.pvr.png + + frame + {{780,508},{76,94}} + offset + {-24,16} + rotated + + sourceColorRect + {{2,1},{76,94}} + sourceSize + {128,128} + + 226.png.pvr.png + + frame + {{876,470},{76,94}} + offset + {-25,15} + rotated + + sourceColorRect + {{1,2},{76,94}} + sourceSize + {128,128} + + 227.png.pvr.png + + frame + {{684,504},{76,94}} + offset + {-25,16} + rotated + + sourceColorRect + {{1,1},{76,94}} + sourceSize + {128,128} + + 230.png.pvr.png + + frame + {{312,250},{74,100}} + offset + {-25,12} + rotated + + sourceColorRect + {{2,2},{74,100}} + sourceSize + {128,128} + + 231.png.pvr.png + + frame + {{358,88},{74,102}} + offset + {-25,11} + rotated + + sourceColorRect + {{2,2},{74,102}} + sourceSize + {128,128} + + 232.png.pvr.png + + frame + {{498,456},{76,94}} + offset + {-24,16} + rotated + + sourceColorRect + {{2,1},{76,94}} + sourceSize + {128,128} + + 233.png.pvr.png + + frame + {{328,834},{78,90}} + offset + {-24,18} + rotated + + sourceColorRect + {{1,1},{78,90}} + sourceSize + {128,128} + + 234.png.pvr.png + + frame + {{248,856},{78,90}} + offset + {-24,18} + rotated + + sourceColorRect + {{1,1},{78,90}} + sourceSize + {128,128} + + 235.png.pvr.png + + frame + {{402,400},{76,94}} + offset + {-24,16} + rotated + + sourceColorRect + {{2,1},{76,94}} + sourceSize + {128,128} + + 236.png.pvr.png + + frame + {{786,256},{76,96}} + offset + {-24,14} + rotated + + sourceColorRect + {{2,2},{76,96}} + sourceSize + {128,128} + + 237.png.pvr.png + + frame + {{414,242},{74,100}} + offset + {-25,13} + rotated + + sourceColorRect + {{2,1},{74,100}} + sourceSize + {128,128} + + 240.png.pvr.png + + frame + {{190,682},{90,90}} + offset + {-17,18} + rotated + + sourceColorRect + {{2,1},{90,90}} + sourceSize + {128,128} + + 241.png.pvr.png + + frame + {{284,654},{90,90}} + offset + {-17,17} + rotated + + sourceColorRect + {{2,2},{90,90}} + sourceSize + {128,128} + + 242.png.pvr.png + + frame + {{2,734},{90,82}} + offset + {-18,21} + rotated + + sourceColorRect + {{1,2},{90,82}} + sourceSize + {128,128} + + 243.png.pvr.png + + frame + {{496,774},{86,86}} + offset + {-19,19} + rotated + + sourceColorRect + {{2,2},{86,86}} + sourceSize + {128,128} + + 244.png.pvr.png + + frame + {{846,626},{84,90}} + offset + {-21,18} + rotated + + sourceColorRect + {{1,1},{84,90}} + sourceSize + {128,128} + + 245.png.pvr.png + + frame + {{190,440},{86,92}} + offset + {-20,16} + rotated + + sourceColorRect + {{1,2},{86,92}} + sourceSize + {128,128} + + 246.png.pvr.png + + frame + {{938,626},{88,84}} + offset + {-18,20} + rotated + + sourceColorRect + {{2,2},{88,84}} + sourceSize + {128,128} + + 247.png.pvr.png + + frame + {{566,628},{90,88}} + offset + {-17,19} + rotated + + sourceColorRect + {{2,1},{90,88}} + sourceSize + {128,128} + + 300.png.pvr.png + + frame + {{2,484},{92,88}} + offset + {-17,18} + rotated + + sourceColorRect + {{1,2},{92,88}} + sourceSize + {128,128} + + 301.png.pvr.png + + frame + {{414,318},{80,98}} + offset + {-23,14} + rotated + + sourceColorRect + {{1,1},{80,98}} + sourceSize + {128,128} + + 302.png.pvr.png + + frame + {{124,2},{68,120}} + offset + {-29,3} + rotated + + sourceColorRect + {{1,1},{68,120}} + sourceSize + {128,128} + + 303.png.pvr.png + + frame + {{242,80},{70,114}} + offset + {-28,5} + rotated + + sourceColorRect + {{1,2},{70,114}} + sourceSize + {128,128} + + 304.png.pvr.png + + frame + {{106,152},{66,102}} + offset + {-30,11} + rotated + + sourceColorRect + {{1,2},{66,102}} + sourceSize + {128,128} + + 305.png.pvr.png + + frame + {{2,152},{66,102}} + offset + {-30,12} + rotated + + sourceColorRect + {{1,1},{66,102}} + sourceSize + {128,128} + + 306.png.pvr.png + + frame + {{706,70},{66,106}} + offset + {-29,10} + rotated + + sourceColorRect + {{2,1},{66,106}} + sourceSize + {128,128} + + 307.png.pvr.png + + frame + {{2,948},{84,68}} + offset + {-21,28} + rotated + + sourceColorRect + {{1,2},{84,68}} + sourceSize + {128,128} + + 310.png.pvr.png + + frame + {{688,226},{92,96}} + offset + {-17,14} + rotated + + sourceColorRect + {{1,2},{92,96}} + sourceSize + {128,128} + + 311.png.pvr.png + + frame + {{414,164},{76,100}} + offset + {-25,12} + rotated + + sourceColorRect + {{1,2},{76,100}} + sourceSize + {128,128} + + 312.png.pvr.png + + frame + {{246,2},{76,118}} + offset + {-24,3} + rotated + + sourceColorRect + {{2,2},{76,118}} + sourceSize + {128,128} + + 313.png.pvr.png + + frame + {{482,2},{78,112}} + offset + {-23,6} + rotated + + sourceColorRect + {{2,2},{78,112}} + sourceSize + {128,128} + + 314.png.pvr.png + + frame + {{920,102},{102,94}} + offset + {-11,15} + rotated + + sourceColorRect + {{2,2},{102,94}} + sourceSize + {128,128} + + 315.png.pvr.png + + frame + {{588,178},{98,92}} + offset + {-13,17} + rotated + + sourceColorRect + {{2,1},{98,92}} + sourceSize + {128,128} + + 316.png.pvr.png + + frame + {{2,220},{100,92}} + offset + {-12,17} + rotated + + sourceColorRect + {{2,1},{100,92}} + sourceSize + {128,128} + + 317.png.pvr.png + + frame + {{2,856},{80,90}} + offset + {-23,17} + rotated + + sourceColorRect + {{1,2},{80,90}} + sourceSize + {128,128} + + 320.png.pvr.png + + frame + {{284,576},{76,92}} + offset + {-24,16} + rotated + + sourceColorRect + {{2,2},{76,92}} + sourceSize + {128,128} + + 321.png.pvr.png + + frame + {{900,198},{84,102}} + offset + {-21,12} + rotated + + sourceColorRect + {{1,1},{84,102}} + sourceSize + {128,128} + + 322.png.pvr.png + + frame + {{796,170},{84,102}} + offset + {-20,11} + rotated + + sourceColorRect + {{2,2},{84,102}} + sourceSize + {128,128} + + 323.png.pvr.png + + frame + {{692,138},{86,102}} + offset + {-19,11} + rotated + + sourceColorRect + {{2,2},{86,102}} + sourceSize + {128,128} + + 324.png.pvr.png + + frame + {{2,2},{120,74}} + offset + {-3,25} + rotated + + sourceColorRect + {{1,2},{120,74}} + sourceSize + {128,128} + + 325.png.pvr.png + + frame + {{2,78},{116,72}} + offset + {-4,26} + rotated + + sourceColorRect + {{2,2},{116,72}} + sourceSize + {128,128} + + 326.png.pvr.png + + frame + {{124,72},{116,78}} + offset + {-4,24} + rotated + + sourceColorRect + {{2,1},{116,78}} + sourceSize + {128,128} + + 327.png.pvr.png + + frame + {{596,2},{78,108}} + offset + {-23,8} + rotated + + sourceColorRect + {{2,2},{78,108}} + sourceSize + {128,128} + + 330.png.pvr.png + + frame + {{568,552},{74,92}} + offset + {-25,16} + rotated + + sourceColorRect + {{2,2},{74,92}} + sourceSize + {128,128} + + 331.png.pvr.png + + frame + {{210,152},{100,100}} + offset + {-12,12} + rotated + + sourceColorRect + {{2,2},{100,100}} + sourceSize + {128,128} + + 332.png.pvr.png + + frame + {{304,326},{82,96}} + offset + {-21,15} + rotated + + sourceColorRect + {{2,1},{82,96}} + sourceSize + {128,128} + + 333.png.pvr.png + + frame + {{286,410},{86,92}} + offset + {-19,16} + rotated + + sourceColorRect + {{2,2},{86,92}} + sourceSize + {128,128} + + 334.png.pvr.png + + frame + {{816,2},{106,82}} + offset + {-10,22} + rotated + + sourceColorRect + {{1,1},{106,82}} + sourceSize + {128,128} + + 335.png.pvr.png + + frame + {{814,86},{104,82}} + offset + {-10,21} + rotated + + sourceColorRect + {{2,2},{104,82}} + sourceSize + {128,128} + + 336.png.pvr.png + + frame + {{312,164},{100,84}} + offset + {-13,20} + rotated + + sourceColorRect + {{1,2},{100,84}} + sourceSize + {128,128} + + 337.png.pvr.png + + frame + {{706,2},{66,108}} + offset + {-29,9} + rotated + + sourceColorRect + {{2,1},{66,108}} + sourceSize + {128,128} + + 340.png.pvr.png + + frame + {{2,574},{92,80}} + offset + {-17,23} + rotated + + sourceColorRect + {{1,1},{92,80}} + sourceSize + {128,128} + + 341.png.pvr.png + + frame + {{482,82},{80,104}} + offset + {-23,11} + rotated + + sourceColorRect + {{1,1},{80,104}} + sourceSize + {128,128} + + 342.png.pvr.png + + frame + {{516,264},{68,98}} + offset + {-29,13} + rotated + + sourceColorRect + {{1,2},{68,98}} + sourceSize + {128,128} + + 343.png.pvr.png + + frame + {{516,164},{70,98}} + offset + {-28,14} + rotated + + sourceColorRect + {{1,1},{70,98}} + sourceSize + {128,128} + + 344.png.pvr.png + + frame + {{88,948},{66,90}} + offset + {-30,18} + rotated + + sourceColorRect + {{1,1},{66,90}} + sourceSize + {128,128} + + 345.png.pvr.png + + frame + {{268,948},{66,86}} + offset + {-30,20} + rotated + + sourceColorRect + {{1,1},{66,86}} + sourceSize + {128,128} + + 346.png.pvr.png + + frame + {{180,948},{66,86}} + offset + {-29,19} + rotated + + sourceColorRect + {{2,2},{66,86}} + sourceSize + {128,128} + + 347.png.pvr.png + + frame + {{366,2},{84,114}} + offset + {-21,6} + rotated + + sourceColorRect + {{1,1},{84,114}} + sourceSize + {128,128} + + + metadata + + format + 2 + realTextureFileName + nt.png + size + {1024,1024} + smartupdate + $TexturePacker:SmartUpdate:bae52728fdfe6e6c09d20afa21e91e30$ + textureFileName + nt.png + + + diff --git a/cc_moba/assets/resources/nt.plist.meta b/cc_moba/assets/resources/nt.plist.meta new file mode 100644 index 0000000..92d93c7 --- /dev/null +++ b/cc_moba/assets/resources/nt.plist.meta @@ -0,0 +1,2432 @@ +{ + "ver": "1.2.4", + "uuid": "b6cf2ec3-92cb-47e8-8e61-21bdb48dcea7", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "size": { + "width": 1024, + "height": 1024 + }, + "type": "Texture Packer", + "subMetas": { + "100.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d5b025c1-ca35-48cf-8753-07effc6b278b", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -17, + "offsetY": 18, + "trimX": 2, + "trimY": 484, + "width": 92, + "height": 88, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "101.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a9631111-abc7-45ed-a96f-6ea4ef830798", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -17, + "offsetY": 18, + "trimX": 96, + "trimY": 408, + "width": 92, + "height": 88, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "102.png.pvr.png": { + "ver": "1.0.3", + "uuid": "43ddf85b-7113-4bf7-8052-942561164de3", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -17, + "offsetY": 19, + "trimX": 754, + "trimY": 586, + "width": 90, + "height": 86, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "103.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4e9c628f-9847-437e-89a4-67707f31a5bb", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -17, + "offsetY": 19, + "trimX": 282, + "trimY": 746, + "width": 90, + "height": 86, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "104.png.pvr.png": { + "ver": "1.0.3", + "uuid": "fa70895e-a815-44bb-ae25-a7431100a79a", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -17, + "offsetY": 19, + "trimX": 376, + "trimY": 710, + "width": 90, + "height": 86, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "105.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f56dea69-97ac-4a7b-b286-1cbcc7c92f09", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -17, + "offsetY": 19, + "trimX": 594, + "trimY": 458, + "width": 92, + "height": 88, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "110.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4c2be749-bd22-4df0-b718-9c6b6f3ff6ad", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -17, + "offsetY": 14, + "trimX": 688, + "trimY": 226, + "width": 92, + "height": 96, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "111.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ec56e6e0-29a5-4a09-bbf0-4ac9952fe63c", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -17, + "offsetY": 15, + "trimX": 586, + "trimY": 272, + "width": 90, + "height": 96, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "112.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f992e44c-df27-4d94-92f8-bb0b659fc9ff", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -17, + "offsetY": 15, + "trimX": 514, + "trimY": 364, + "width": 90, + "height": 94, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "113.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0e2e34cd-bf9b-4bd8-aad6-6acc14f9ef6c", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -17, + "offsetY": 16, + "trimX": 876, + "trimY": 378, + "width": 90, + "height": 94, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "114.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d87174d4-05d0-4d04-8e23-f3c231e62a13", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -17, + "offsetY": 16, + "trimX": 780, + "trimY": 334, + "width": 92, + "height": 94, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "115.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c2b11df7-c05b-482f-91e1-4ce0f41a9c10", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -17, + "offsetY": 15, + "trimX": 884, + "trimY": 284, + "width": 92, + "height": 94, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "120.png.pvr.png": { + "ver": "1.0.3", + "uuid": "fba37aaf-2dce-41dc-b75a-cab838522856", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -24, + "offsetY": 16, + "trimX": 284, + "trimY": 576, + "width": 76, + "height": 92, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "121.png.pvr.png": { + "ver": "1.0.3", + "uuid": "32b87e8f-404a-43a0-b949-8bd2fc4e1348", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -24, + "offsetY": 17, + "trimX": 378, + "trimY": 558, + "width": 76, + "height": 92, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "122.png.pvr.png": { + "ver": "1.0.3", + "uuid": "864fe69e-643f-480c-99dd-a9ffbc025ee1", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -24, + "offsetY": 17, + "trimX": 474, + "trimY": 534, + "width": 76, + "height": 92, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "123.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b8631103-a0f6-4fea-b8bf-a67adce1912d", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -24, + "offsetY": 17, + "trimX": 2, + "trimY": 656, + "width": 76, + "height": 92, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "124.png.pvr.png": { + "ver": "1.0.3", + "uuid": "be7b60d2-ed73-43e0-9047-dead0431c1fd", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -24, + "offsetY": 17, + "trimX": 96, + "trimY": 580, + "width": 76, + "height": 92, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "125.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c5f60733-453d-4142-adbb-870751b93b55", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -24, + "offsetY": 16, + "trimX": 190, + "trimY": 528, + "width": 76, + "height": 92, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "130.png.pvr.png": { + "ver": "1.0.3", + "uuid": "fc1f7d55-7abb-4a0a-be12-17d2cd485e30", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -25, + "offsetY": 16, + "trimX": 568, + "trimY": 552, + "width": 74, + "height": 92, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "131.png.pvr.png": { + "ver": "1.0.3", + "uuid": "19eac7ad-9abe-4bd8-9f3c-3fef206c8138", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -26, + "offsetY": 17, + "trimX": 96, + "trimY": 658, + "width": 74, + "height": 92, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "132.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4df3d369-3236-4c3e-a0c6-4dd188c21b35", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -26, + "offsetY": 17, + "trimX": 378, + "trimY": 636, + "width": 72, + "height": 92, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "133.png.pvr.png": { + "ver": "1.0.3", + "uuid": "900db7e9-d6b3-4e00-94f8-335b26bae3a2", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -26, + "offsetY": 16, + "trimX": 472, + "trimY": 612, + "width": 72, + "height": 92, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "134.png.pvr.png": { + "ver": "1.0.3", + "uuid": "9aa021cb-5d7b-4728-9382-44c6c658059b", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -26, + "offsetY": 16, + "trimX": 610, + "trimY": 364, + "width": 72, + "height": 92, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "135.png.pvr.png": { + "ver": "1.0.3", + "uuid": "73fd6a85-8785-4f7e-9aef-aa030eb40deb", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -26, + "offsetY": 16, + "trimX": 190, + "trimY": 606, + "width": 74, + "height": 92, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "140.png.pvr.png": { + "ver": "1.0.3", + "uuid": "1d5cb35b-881b-486f-9efc-080e1908d640", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -17, + "offsetY": 23, + "trimX": 2, + "trimY": 574, + "width": 92, + "height": 80, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "141.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b3269d74-b08e-4de3-b1e6-5dcaafe9c108", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -17, + "offsetY": 23, + "trimX": 380, + "trimY": 478, + "width": 92, + "height": 78, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "142.png.pvr.png": { + "ver": "1.0.3", + "uuid": "5d900bb1-fe95-47d9-ac9b-53c6ad936dbc", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -17, + "offsetY": 23, + "trimX": 166, + "trimY": 856, + "width": 90, + "height": 80, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "143.png.pvr.png": { + "ver": "1.0.3", + "uuid": "297f3568-30ad-46f0-bbde-d5eef0ff71b9", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -17, + "offsetY": 22, + "trimX": 84, + "trimY": 856, + "width": 90, + "height": 80, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "144.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d26f913d-7f1a-488b-b2df-7367ee9cd67a", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -17, + "offsetY": 22, + "trimX": 186, + "trimY": 774, + "width": 90, + "height": 80, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "145.png.pvr.png": { + "ver": "1.0.3", + "uuid": "41141b0e-9ec3-4433-9ce5-58c998f2239a", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -17, + "offsetY": 23, + "trimX": 96, + "trimY": 498, + "width": 92, + "height": 80, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "200.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e980bf79-4ade-4c75-a367-66e12d0f4f8c", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -17, + "offsetY": 18, + "trimX": 662, + "trimY": 582, + "width": 90, + "height": 90, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "201.png.pvr.png": { + "ver": "1.0.3", + "uuid": "557874f6-a983-42b4-93f2-9824bc15fa62", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -17, + "offsetY": 19, + "trimX": 472, + "trimY": 686, + "width": 90, + "height": 86, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "202.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d727dc03-5949-4e36-a830-b35e7d2cd622", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -18, + "offsetY": 22, + "trimX": 94, + "trimY": 734, + "width": 90, + "height": 82, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "203.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b73b177c-1349-4071-bf4b-607b8ad7e010", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -19, + "offsetY": 19, + "trimX": 408, + "trimY": 798, + "width": 86, + "height": 88, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "204.png.pvr.png": { + "ver": "1.0.3", + "uuid": "66dc094a-d8fb-4a3b-9e25-c5a1bd73addf", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -21, + "offsetY": 22, + "trimX": 584, + "trimY": 718, + "width": 84, + "height": 82, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "205.png.pvr.png": { + "ver": "1.0.3", + "uuid": "fc3e78f9-7e6a-4195-86f4-d93cd95661b1", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -20, + "offsetY": 21, + "trimX": 518, + "trimY": 862, + "width": 86, + "height": 82, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "206.png.pvr.png": { + "ver": "1.0.3", + "uuid": "7f478b2c-8c0b-4c45-88b2-3435a0e403a6", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -18, + "offsetY": 21, + "trimX": 434, + "trimY": 888, + "width": 88, + "height": 82, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "207.png.pvr.png": { + "ver": "1.0.3", + "uuid": "49d1e9fa-a59f-4e16-95cd-664398fd81ef", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -17, + "offsetY": 17, + "trimX": 192, + "trimY": 348, + "width": 90, + "height": 92, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "210.png.pvr.png": { + "ver": "1.0.3", + "uuid": "2c69fa8a-c924-4c61-be80-92a7de3a5a81", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -18, + "offsetY": 16, + "trimX": 684, + "trimY": 414, + "width": 88, + "height": 94, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "211.png.pvr.png": { + "ver": "1.0.3", + "uuid": "04bf7b10-282b-4511-a4bd-3c434920c218", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -17, + "offsetY": 18, + "trimX": 2, + "trimY": 392, + "width": 92, + "height": 90, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "212.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d9b306d3-37a5-46f6-ab1f-823874b691a9", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -15, + "offsetY": 17, + "trimX": 684, + "trimY": 320, + "width": 94, + "height": 92, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "213.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ab3a3d3e-d4b6-41af-a958-3901dc6a27c3", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -13, + "offsetY": 14, + "trimX": 924, + "trimY": 2, + "width": 98, + "height": 98, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "214.png.pvr.png": { + "ver": "1.0.3", + "uuid": "2d3e6363-e30b-493d-a9ea-807209d4d483", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -11, + "offsetY": 16, + "trimX": 588, + "trimY": 82, + "width": 102, + "height": 94, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "215.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4831c8e4-0153-4a73-8212-657d3822c783", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -12, + "offsetY": 16, + "trimX": 104, + "trimY": 220, + "width": 100, + "height": 92, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "216.png.pvr.png": { + "ver": "1.0.3", + "uuid": "cc02e2b0-d130-4478-9137-7a91533084db", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -14, + "offsetY": 16, + "trimX": 206, + "trimY": 254, + "width": 96, + "height": 92, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "217.png.pvr.png": { + "ver": "1.0.3", + "uuid": "737cd149-e3ef-421a-8d04-8745cb8c4c6f", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -16, + "offsetY": 16, + "trimX": 98, + "trimY": 314, + "width": 92, + "height": 92, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "220.png.pvr.png": { + "ver": "1.0.3", + "uuid": "44752899-258b-4c8f-a0b0-2d2c0baf3d3a", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -24, + "offsetY": 17, + "trimX": 356, + "trimY": 926, + "width": 76, + "height": 90, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "221.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3bd6928b-140e-4849-a4f3-8b64cdbb67ed", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -25, + "offsetY": 16, + "trimX": 284, + "trimY": 498, + "width": 76, + "height": 92, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "222.png.pvr.png": { + "ver": "1.0.3", + "uuid": "97f6a44f-fba6-402b-ae5c-4ba260188e19", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -24, + "offsetY": 16, + "trimX": 2, + "trimY": 314, + "width": 76, + "height": 94, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "223.png.pvr.png": { + "ver": "1.0.3", + "uuid": "fc11896d-dd4c-411d-a11a-40c2cbbeea0c", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -24, + "offsetY": 16, + "trimX": 876, + "trimY": 548, + "width": 76, + "height": 94, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "224.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b268f101-3598-47e9-894c-3dc32d659969", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -23, + "offsetY": 16, + "trimX": 780, + "trimY": 428, + "width": 78, + "height": 94, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "225.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d004619f-1914-4ac1-b67f-5d02330719b4", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -24, + "offsetY": 16, + "trimX": 780, + "trimY": 508, + "width": 76, + "height": 94, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "226.png.pvr.png": { + "ver": "1.0.3", + "uuid": "2d93fa76-0bdf-4f67-ac65-9f2eb2bd46b9", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -25, + "offsetY": 15, + "trimX": 876, + "trimY": 470, + "width": 76, + "height": 94, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "227.png.pvr.png": { + "ver": "1.0.3", + "uuid": "6ef3bcd1-64d6-4d2d-834f-b1e6d5b12c88", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -25, + "offsetY": 16, + "trimX": 684, + "trimY": 504, + "width": 76, + "height": 94, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "230.png.pvr.png": { + "ver": "1.0.3", + "uuid": "74ee4a6b-5154-4d0a-92f3-81c16b9e3303", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -25, + "offsetY": 12, + "trimX": 312, + "trimY": 250, + "width": 74, + "height": 100, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "231.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d73183ed-d1c0-4e6c-94fd-1ca9cb226832", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -25, + "offsetY": 11, + "trimX": 358, + "trimY": 88, + "width": 74, + "height": 102, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "232.png.pvr.png": { + "ver": "1.0.3", + "uuid": "5ed50a6b-9c0a-4deb-b687-72f6eecdff17", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -24, + "offsetY": 16, + "trimX": 498, + "trimY": 456, + "width": 76, + "height": 94, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "233.png.pvr.png": { + "ver": "1.0.3", + "uuid": "5c160d6f-c35b-4782-8093-c744e32a1d88", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -24, + "offsetY": 18, + "trimX": 328, + "trimY": 834, + "width": 78, + "height": 90, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "234.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d1344e3c-7aeb-4b17-a026-743686e118ff", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -24, + "offsetY": 18, + "trimX": 248, + "trimY": 856, + "width": 78, + "height": 90, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "235.png.pvr.png": { + "ver": "1.0.3", + "uuid": "7d96f3b9-6a7a-4bd2-920a-d5f32f3e73a3", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -24, + "offsetY": 16, + "trimX": 402, + "trimY": 400, + "width": 76, + "height": 94, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "236.png.pvr.png": { + "ver": "1.0.3", + "uuid": "daa9afa0-6778-45d2-bfd4-1e72f281b4d4", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -24, + "offsetY": 14, + "trimX": 786, + "trimY": 256, + "width": 76, + "height": 96, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "237.png.pvr.png": { + "ver": "1.0.3", + "uuid": "62227614-0c76-4321-970d-07ab5ef3cf6b", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -25, + "offsetY": 13, + "trimX": 414, + "trimY": 242, + "width": 74, + "height": 100, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "240.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f36a3d2d-934a-4574-9f40-af6d1ee4448d", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -17, + "offsetY": 18, + "trimX": 190, + "trimY": 682, + "width": 90, + "height": 90, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "241.png.pvr.png": { + "ver": "1.0.3", + "uuid": "1135a76d-efb7-4a24-ae3d-0d97f02b9e71", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -17, + "offsetY": 17, + "trimX": 284, + "trimY": 654, + "width": 90, + "height": 90, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "242.png.pvr.png": { + "ver": "1.0.3", + "uuid": "9d1ff30c-f289-46d5-95de-d322d4125c64", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -18, + "offsetY": 21, + "trimX": 2, + "trimY": 734, + "width": 90, + "height": 82, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "243.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0ba1ed9e-4a8c-46d7-91e3-50509563dc80", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -19, + "offsetY": 19, + "trimX": 496, + "trimY": 774, + "width": 86, + "height": 86, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "244.png.pvr.png": { + "ver": "1.0.3", + "uuid": "48a2c0eb-d428-4876-8643-73aaee00aecf", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -21, + "offsetY": 18, + "trimX": 846, + "trimY": 626, + "width": 84, + "height": 90, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "245.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4ab86f55-a5ca-4b7d-83d9-d2a2f622eed7", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -20, + "offsetY": 16, + "trimX": 190, + "trimY": 440, + "width": 86, + "height": 92, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "246.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d106a8b2-62b1-47d1-88cf-03871c9f5ca5", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -18, + "offsetY": 20, + "trimX": 938, + "trimY": 626, + "width": 88, + "height": 84, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "247.png.pvr.png": { + "ver": "1.0.3", + "uuid": "92720824-7c36-403b-8e1c-996f6f2431b6", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -17, + "offsetY": 19, + "trimX": 566, + "trimY": 628, + "width": 90, + "height": 88, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "300.png.pvr.png": { + "ver": "1.0.3", + "uuid": "04b1bb85-a5c6-48b3-b81d-d8940f0e59c2", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -17, + "offsetY": 18, + "trimX": 2, + "trimY": 484, + "width": 92, + "height": 88, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "301.png.pvr.png": { + "ver": "1.0.3", + "uuid": "71a579ac-b8d3-41be-a94f-a2f1bd34ecf2", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -23, + "offsetY": 14, + "trimX": 414, + "trimY": 318, + "width": 80, + "height": 98, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "302.png.pvr.png": { + "ver": "1.0.3", + "uuid": "540c9fc8-36e2-47c7-ad9e-958910922bbb", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -29, + "offsetY": 3, + "trimX": 124, + "trimY": 2, + "width": 68, + "height": 120, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "303.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e3e6a87b-ef52-4b0c-b903-64eff845fe16", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -28, + "offsetY": 5, + "trimX": 242, + "trimY": 80, + "width": 70, + "height": 114, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "304.png.pvr.png": { + "ver": "1.0.3", + "uuid": "2456349d-17e1-4d60-a485-e87053bf5955", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -30, + "offsetY": 11, + "trimX": 106, + "trimY": 152, + "width": 66, + "height": 102, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "305.png.pvr.png": { + "ver": "1.0.3", + "uuid": "83ff97a2-7d78-4f86-9ea8-6a5eda83874b", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -30, + "offsetY": 12, + "trimX": 2, + "trimY": 152, + "width": 66, + "height": 102, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "306.png.pvr.png": { + "ver": "1.0.3", + "uuid": "5df3c958-47e8-4169-aa41-681e3c25a51d", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -29, + "offsetY": 10, + "trimX": 706, + "trimY": 70, + "width": 66, + "height": 106, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "307.png.pvr.png": { + "ver": "1.0.3", + "uuid": "624ac3a0-bcb7-4e9f-aa30-101bdab4367c", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -21, + "offsetY": 28, + "trimX": 2, + "trimY": 948, + "width": 84, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "310.png.pvr.png": { + "ver": "1.0.3", + "uuid": "9778fd0f-8469-4286-92a6-b88c21315185", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -17, + "offsetY": 14, + "trimX": 688, + "trimY": 226, + "width": 92, + "height": 96, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "311.png.pvr.png": { + "ver": "1.0.3", + "uuid": "7d3dae6e-bece-48ca-a4fa-f2550f40ae37", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -25, + "offsetY": 12, + "trimX": 414, + "trimY": 164, + "width": 76, + "height": 100, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "312.png.pvr.png": { + "ver": "1.0.3", + "uuid": "2e356749-cab9-48f9-bd72-464110ce0f4e", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -24, + "offsetY": 3, + "trimX": 246, + "trimY": 2, + "width": 76, + "height": 118, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "313.png.pvr.png": { + "ver": "1.0.3", + "uuid": "840bc398-b9c8-4636-b9e9-de794b6395f1", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -23, + "offsetY": 6, + "trimX": 482, + "trimY": 2, + "width": 78, + "height": 112, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "314.png.pvr.png": { + "ver": "1.0.3", + "uuid": "20427dfd-5b4b-4a18-89a5-9e546cd905d7", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -11, + "offsetY": 15, + "trimX": 920, + "trimY": 102, + "width": 102, + "height": 94, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "315.png.pvr.png": { + "ver": "1.0.3", + "uuid": "cd5356bb-cb64-4a14-b418-fc684239e1fb", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -13, + "offsetY": 17, + "trimX": 588, + "trimY": 178, + "width": 98, + "height": 92, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "316.png.pvr.png": { + "ver": "1.0.3", + "uuid": "95cb96c2-9ce1-4741-90cd-80c8157cecd7", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -12, + "offsetY": 17, + "trimX": 2, + "trimY": 220, + "width": 100, + "height": 92, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "317.png.pvr.png": { + "ver": "1.0.3", + "uuid": "8ea9ff75-c276-45c4-97f9-5e0a96635384", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -23, + "offsetY": 17, + "trimX": 2, + "trimY": 856, + "width": 80, + "height": 90, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "320.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a3b38453-b9a3-429c-a336-e434449ad0cf", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -24, + "offsetY": 16, + "trimX": 284, + "trimY": 576, + "width": 76, + "height": 92, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "321.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4428f696-5376-47d8-9bc0-b3549f6e0a15", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -21, + "offsetY": 12, + "trimX": 900, + "trimY": 198, + "width": 84, + "height": 102, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "322.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b8c3d472-3404-4a34-8b3e-43db08c75368", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -20, + "offsetY": 11, + "trimX": 796, + "trimY": 170, + "width": 84, + "height": 102, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "323.png.pvr.png": { + "ver": "1.0.3", + "uuid": "30fd322b-9398-4cd7-b002-3d6758a83bf9", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -19, + "offsetY": 11, + "trimX": 692, + "trimY": 138, + "width": 86, + "height": 102, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "324.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3d7bdcb5-a409-43de-bd52-52c72cdd1804", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -3, + "offsetY": 25, + "trimX": 2, + "trimY": 2, + "width": 120, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "325.png.pvr.png": { + "ver": "1.0.3", + "uuid": "88853abd-c9cf-4a87-a2ba-4a5d54cc1366", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -4, + "offsetY": 26, + "trimX": 2, + "trimY": 78, + "width": 116, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "326.png.pvr.png": { + "ver": "1.0.3", + "uuid": "72464ffa-47ec-478c-9e0b-a6c52626cad2", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -4, + "offsetY": 24, + "trimX": 124, + "trimY": 72, + "width": 116, + "height": 78, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "327.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d916f01a-3931-41b4-8391-2b6454b8b027", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -23, + "offsetY": 8, + "trimX": 596, + "trimY": 2, + "width": 78, + "height": 108, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "330.png.pvr.png": { + "ver": "1.0.3", + "uuid": "641ad358-f3d5-44a3-ba36-ca9bb515e4d6", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -25, + "offsetY": 16, + "trimX": 568, + "trimY": 552, + "width": 74, + "height": 92, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "331.png.pvr.png": { + "ver": "1.0.3", + "uuid": "2b776511-94be-497d-b1d1-4e23fc01bb92", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -12, + "offsetY": 12, + "trimX": 210, + "trimY": 152, + "width": 100, + "height": 100, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "332.png.pvr.png": { + "ver": "1.0.3", + "uuid": "95e23d27-c50e-428d-8675-9ea9cf693af0", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -21, + "offsetY": 15, + "trimX": 304, + "trimY": 326, + "width": 82, + "height": 96, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "333.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0c17e4e0-e12c-4503-b90c-d2607fbe83f4", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -19, + "offsetY": 16, + "trimX": 286, + "trimY": 410, + "width": 86, + "height": 92, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "334.png.pvr.png": { + "ver": "1.0.3", + "uuid": "39f5b58d-1bd0-4a05-a3d5-2a98f16589ec", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -10, + "offsetY": 22, + "trimX": 816, + "trimY": 2, + "width": 106, + "height": 82, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "335.png.pvr.png": { + "ver": "1.0.3", + "uuid": "df47fde1-1be8-419b-8e02-edf2828e4605", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -10, + "offsetY": 21, + "trimX": 814, + "trimY": 86, + "width": 104, + "height": 82, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "336.png.pvr.png": { + "ver": "1.0.3", + "uuid": "54686f82-a13f-428f-9a40-904678b15060", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -13, + "offsetY": 20, + "trimX": 312, + "trimY": 164, + "width": 100, + "height": 84, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "337.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c156d36d-3b3b-46da-8ce4-db3828efac96", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -29, + "offsetY": 9, + "trimX": 706, + "trimY": 2, + "width": 66, + "height": 108, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "340.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e9752b7b-1593-4b14-93e9-9035a7318166", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -17, + "offsetY": 23, + "trimX": 2, + "trimY": 574, + "width": 92, + "height": 80, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "341.png.pvr.png": { + "ver": "1.0.3", + "uuid": "28a98aa1-7c2d-4293-9eff-a21b3b4a32b8", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -23, + "offsetY": 11, + "trimX": 482, + "trimY": 82, + "width": 80, + "height": 104, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "342.png.pvr.png": { + "ver": "1.0.3", + "uuid": "cdc3090e-02d1-4aba-97b1-a170373846e7", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 13, + "trimX": 516, + "trimY": 264, + "width": 68, + "height": 98, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "343.png.pvr.png": { + "ver": "1.0.3", + "uuid": "9d7f7d9f-5768-49d9-82a3-5765e8419001", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -28, + "offsetY": 14, + "trimX": 516, + "trimY": 164, + "width": 70, + "height": 98, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "344.png.pvr.png": { + "ver": "1.0.3", + "uuid": "03daa449-e214-4217-aab5-e8bfd4c2af48", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -30, + "offsetY": 18, + "trimX": 88, + "trimY": 948, + "width": 66, + "height": 90, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "345.png.pvr.png": { + "ver": "1.0.3", + "uuid": "6f85852d-2ce1-4162-8a46-3b7cdb94af1c", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -30, + "offsetY": 20, + "trimX": 268, + "trimY": 948, + "width": 66, + "height": 86, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "346.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b5d0d026-0a9d-4008-8768-aa7cf8d192cd", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -29, + "offsetY": 19, + "trimX": 180, + "trimY": 948, + "width": 66, + "height": 86, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "347.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f8774fa6-de03-40d4-8546-6123f4287ac7", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -21, + "offsetY": 6, + "trimX": 366, + "trimY": 2, + "width": 84, + "height": 114, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/resources/nt.png b/cc_moba/assets/resources/nt.png new file mode 100644 index 0000000..a580cbf Binary files /dev/null and b/cc_moba/assets/resources/nt.png differ diff --git a/cc_moba/assets/resources/nt.png.meta b/cc_moba/assets/resources/nt.png.meta new file mode 100644 index 0000000..f050bed --- /dev/null +++ b/cc_moba/assets/resources/nt.png.meta @@ -0,0 +1,30 @@ +{ + "ver": "1.0.0", + "uuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "subMetas": { + "nt": { + "ver": "1.0.3", + "uuid": "a896edca-df21-44d0-b23c-9e39d953bb1f", + "rawTextureUuid": "1de67ae0-fc90-43b2-97c9-0d8e7fc3b426", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 3, + "trimX": 2, + "trimY": 2, + "width": 1020, + "height": 1014, + "rawWidth": 1024, + "rawHeight": 1024, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/resources/rm.plist b/cc_moba/assets/resources/rm.plist new file mode 100644 index 0000000..f908cf6 --- /dev/null +++ b/cc_moba/assets/resources/rm.plist @@ -0,0 +1,1257 @@ + + + + + frames + + 100.png.pvr.png + + frame + {{314,1118},{118,154}} + offset + {-3,49} + rotated + + sourceColorRect + {{2,2},{118,154}} + sourceSize + {128,256} + + 101.png.pvr.png + + frame + {{790,1160},{116,154}} + offset + {-4,49} + rotated + + sourceColorRect + {{2,2},{116,154}} + sourceSize + {128,256} + + 102.png.pvr.png + + frame + {{790,1042},{116,154}} + offset + {-4,49} + rotated + + sourceColorRect + {{2,2},{116,154}} + sourceSize + {128,256} + + 103.png.pvr.png + + frame + {{2,1172},{116,154}} + offset + {-5,49} + rotated + + sourceColorRect + {{1,2},{116,154}} + sourceSize + {128,256} + + 104.png.pvr.png + + frame + {{158,1162},{116,154}} + offset + {-4,50} + rotated + + sourceColorRect + {{2,1},{116,154}} + sourceSize + {128,256} + + 105.png.pvr.png + + frame + {{472,1088},{118,154}} + offset + {-4,49} + rotated + + sourceColorRect + {{1,2},{118,154}} + sourceSize + {128,256} + + 110.png.pvr.png + + frame + {{484,684},{158,144}} + offset + {-48,55} + rotated + + sourceColorRect + {{1,1},{158,144}} + sourceSize + {256,256} + + 111.png.pvr.png + + frame + {{2,880},{156,144}} + offset + {-48,54} + rotated + + sourceColorRect + {{2,2},{156,144}} + sourceSize + {256,256} + + 112.png.pvr.png + + frame + {{802,896},{154,144}} + offset + {-49,54} + rotated + + sourceColorRect + {{2,2},{154,144}} + sourceSize + {256,256} + + 113.png.pvr.png + + frame + {{2,1026},{154,144}} + offset + {-49,54} + rotated + + sourceColorRect + {{2,2},{154,144}} + sourceSize + {256,256} + + 114.png.pvr.png + + frame + {{160,896},{154,144}} + offset + {-49,54} + rotated + + sourceColorRect + {{2,2},{154,144}} + sourceSize + {256,256} + + 115.png.pvr.png + + frame + {{162,750},{156,144}} + offset + {-48,54} + rotated + + sourceColorRect + {{2,2},{156,144}} + sourceSize + {256,256} + + 120.png.pvr.png + + frame + {{158,1280},{124,152}} + offset + {0,50} + rotated + + sourceColorRect + {{2,2},{124,152}} + sourceSize + {128,256} + + 121.png.pvr.png + + frame + {{642,914},{154,126}} + offset + {-50,64} + rotated + + sourceColorRect + {{1,1},{154,126}} + sourceSize + {256,256} + + 122.png.pvr.png + + frame + {{628,1162},{152,128}} + offset + {-50,63} + rotated + + sourceColorRect + {{2,1},{152,128}} + sourceSize + {256,256} + + 123.png.pvr.png + + frame + {{782,1278},{150,128}} + offset + {-51,62} + rotated + + sourceColorRect + {{2,2},{150,128}} + sourceSize + {256,256} + + 124.png.pvr.png + + frame + {{2,1290},{150,128}} + offset + {-51,62} + rotated + + sourceColorRect + {{2,2},{150,128}} + sourceSize + {256,256} + + 125.png.pvr.png + + frame + {{470,1208},{152,126}} + offset + {-51,63} + rotated + + sourceColorRect + {{1,2},{152,126}} + sourceSize + {256,256} + + 130.png.pvr.png + + frame + {{300,1482},{108,140}} + offset + {-9,57} + rotated + + sourceColorRect + {{1,1},{108,140}} + sourceSize + {128,256} + + 131.png.pvr.png + + frame + {{148,1532},{110,138}} + offset + {-8,58} + rotated + + sourceColorRect + {{1,1},{110,138}} + sourceSize + {128,256} + + 132.png.pvr.png + + frame + {{2,1770},{108,136}} + offset + {-9,58} + rotated + + sourceColorRect + {{1,2},{108,136}} + sourceSize + {128,256} + + 133.png.pvr.png + + frame + {{582,1678},{104,136}} + offset + {-11,58} + rotated + + sourceColorRect + {{1,2},{104,136}} + sourceSize + {128,256} + + 134.png.pvr.png + + frame + {{442,1582},{100,138}} + offset + {-12,58} + rotated + + sourceColorRect + {{2,1},{100,138}} + sourceSize + {128,256} + + 135.png.pvr.png + + frame + {{2,1544},{104,138}} + offset + {-11,57} + rotated + + sourceColorRect + {{1,2},{104,138}} + sourceSize + {128,256} + + 140.png.pvr.png + + frame + {{280,1722},{118,134}} + offset + {-3,59} + rotated + + sourceColorRect + {{2,2},{118,134}} + sourceSize + {128,256} + + 141.png.pvr.png + + frame + {{720,1768},{116,134}} + offset + {-4,60} + rotated + + sourceColorRect + {{2,1},{116,134}} + sourceSize + {128,256} + + 142.png.pvr.png + + frame + {{256,1890},{116,134}} + offset + {-4,60} + rotated + + sourceColorRect + {{2,1},{116,134}} + sourceSize + {128,256} + + 143.png.pvr.png + + frame + {{138,1890},{116,134}} + offset + {-5,60} + rotated + + sourceColorRect + {{1,1},{116,134}} + sourceSize + {128,256} + + 144.png.pvr.png + + frame + {{2,1880},{116,134}} + offset + {-4,59} + rotated + + sourceColorRect + {{2,2},{116,134}} + sourceSize + {128,256} + + 145.png.pvr.png + + frame + {{2,1650},{118,136}} + offset + {-4,59} + rotated + + sourceColorRect + {{1,1},{118,136}} + sourceSize + {128,256} + + 200.png.pvr.png + + frame + {{320,864},{128,156}} + offset + {-62,49} + rotated + + sourceColorRect + {{2,1},{128,156}} + sourceSize + {256,256} + + 201.png.pvr.png + + frame + {{478,960},{126,154}} + offset + {-63,49} + rotated + + sourceColorRect + {{2,2},{126,154}} + sourceSize + {256,256} + + 202.png.pvr.png + + frame + {{316,994},{122,154}} + offset + {-2,49} + rotated + + sourceColorRect + {{1,2},{122,154}} + sourceSize + {128,256} + + 203.png.pvr.png + + frame + {{312,1364},{116,148}} + offset + {-4,52} + rotated + + sourceColorRect + {{2,2},{116,148}} + sourceSize + {128,256} + + 204.png.pvr.png + + frame + {{462,1462},{118,142}} + offset + {-3,55} + rotated + + sourceColorRect + {{2,2},{118,142}} + sourceSize + {128,256} + + 205.png.pvr.png + + frame + {{624,1292},{126,150}} + offset + {-64,51} + rotated + + sourceColorRect + {{1,2},{126,150}} + sourceSize + {256,256} + + 210.png.pvr.png + + frame + {{824,630},{166,134}} + offset + {-43,59} + rotated + + sourceColorRect + {{2,2},{166,134}} + sourceSize + {256,256} + + 211.png.pvr.png + + frame + {{2,362},{166,136}} + offset + {-43,58} + rotated + + sourceColorRect + {{2,2},{166,136}} + sourceSize + {256,256} + + 212.png.pvr.png + + frame + {{644,772},{156,140}} + offset + {-48,56} + rotated + + sourceColorRect + {{2,2},{156,140}} + sourceSize + {256,256} + + 213.png.pvr.png + + frame + {{330,720},{152,142}} + offset + {-50,56} + rotated + + sourceColorRect + {{2,1},{152,142}} + sourceSize + {256,256} + + 214.png.pvr.png + + frame + {{170,492},{162,138}} + offset + {-46,57} + rotated + + sourceColorRect + {{1,2},{162,138}} + sourceSize + {256,256} + + 215.png.pvr.png + + frame + {{862,164},{160,134}} + offset + {-46,59} + rotated + + sourceColorRect + {{2,2},{160,134}} + sourceSize + {256,256} + + 220.png.pvr.png + + frame + {{334,598},{120,148}} + offset + {-3,53} + rotated + + sourceColorRect + {{1,1},{120,148}} + sourceSize + {128,256} + + 221.png.pvr.png + + frame + {{634,1042},{118,154}} + offset + {-3,49} + rotated + + sourceColorRect + {{2,2},{118,154}} + sourceSize + {128,256} + + 222.png.pvr.png + + frame + {{896,2},{160,126}} + offset + {-46,64} + rotated + + sourceColorRect + {{2,1},{160,126}} + sourceSize + {256,256} + + 223.png.pvr.png + + frame + {{2,500},{162,134}} + offset + {-45,60} + rotated + + sourceColorRect + {{2,1},{162,134}} + sourceSize + {256,256} + + 224.png.pvr.png + + frame + {{824,766},{164,128}} + offset + {-45,63} + rotated + + sourceColorRect + {{1,1},{164,128}} + sourceSize + {256,256} + + 225.png.pvr.png + + frame + {{468,1336},{124,150}} + offset + {0,51} + rotated + + sourceColorRect + {{2,2},{124,150}} + sourceSize + {128,256} + + 230.png.pvr.png + + frame + {{908,1548},{112,136}} + offset + {-6,58} + rotated + + sourceColorRect + {{2,2},{112,136}} + sourceSize + {128,256} + + 231.png.pvr.png + + frame + {{154,1406},{124,144}} + offset + {-1,54} + rotated + + sourceColorRect + {{1,2},{124,144}} + sourceSize + {128,256} + + 232.png.pvr.png + + frame + {{606,1548},{128,140}} + offset + {-62,56} + rotated + + sourceColorRect + {{2,2},{128,140}} + sourceSize + {256,256} + + 233.png.pvr.png + + frame + {{562,1784},{124,128}} + offset + {-1,62} + rotated + + sourceColorRect + {{1,2},{124,128}} + sourceSize + {128,256} + + 234.png.pvr.png + + frame + {{890,1686},{116,132}} + offset + {-5,60} + rotated + + sourceColorRect + {{1,2},{116,132}} + sourceSize + {128,256} + + 235.png.pvr.png + + frame + {{372,458},{110,138}} + offset + {-8,57} + rotated + + sourceColorRect + {{1,2},{110,138}} + sourceSize + {128,256} + + 240.png.pvr.png + + frame + {{288,1592},{128,136}} + offset + {-62,59} + rotated + + sourceColorRect + {{2,1},{128,136}} + sourceSize + {256,256} + + 241.png.pvr.png + + frame + {{142,1644},{126,136}} + offset + {-63,58} + rotated + + sourceColorRect + {{2,2},{126,136}} + sourceSize + {256,256} + + 242.png.pvr.png + + frame + {{2,1420},{122,144}} + offset + {-2,55} + rotated + + sourceColorRect + {{1,1},{122,144}} + sourceSize + {128,256} + + 243.png.pvr.png + + frame + {{140,1772},{116,134}} + offset + {-4,60} + rotated + + sourceColorRect + {{2,1},{116,134}} + sourceSize + {128,256} + + 244.png.pvr.png + + frame + {{764,1538},{118,142}} + offset + {-3,56} + rotated + + sourceColorRect + {{2,1},{118,142}} + sourceSize + {128,256} + + 245.png.pvr.png + + frame + {{620,1420},{126,142}} + offset + {-64,55} + rotated + + sourceColorRect + {{1,2},{126,142}} + sourceSize + {256,256} + + 300.png.pvr.png + + frame + {{158,1042},{118,154}} + offset + {-3,49} + rotated + + sourceColorRect + {{2,2},{118,154}} + sourceSize + {128,256} + + 301.png.pvr.png + + frame + {{484,356},{124,178}} + offset + {0,38} + rotated + + sourceColorRect + {{2,1},{124,178}} + sourceSize + {128,256} + + 302.png.pvr.png + + frame + {{484,482},{100,172}} + offset + {-12,41} + rotated + + sourceColorRect + {{2,1},{100,172}} + sourceSize + {128,256} + + 303.png.pvr.png + + frame + {{406,102},{78,192}} + offset + {-24,30} + rotated + + sourceColorRect + {{1,2},{78,192}} + sourceSize + {128,256} + + 304.png.pvr.png + + frame + {{206,102},{96,198}} + offset + {-14,27} + rotated + + sourceColorRect + {{2,2},{96,198}} + sourceSize + {128,256} + + 305.png.pvr.png + + frame + {{486,256},{98,184}} + offset + {-13,35} + rotated + + sourceColorRect + {{2,1},{98,184}} + sourceSize + {128,256} + + 306.png.pvr.png + + frame + {{416,1804},{122,100}} + offset + {-1,12} + rotated + + sourceColorRect + {{2,2},{122,100}} + sourceSize + {128,128} + + 310.png.pvr.png + + frame + {{2,734},{158,144}} + offset + {-48,55} + rotated + + sourceColorRect + {{1,1},{158,144}} + sourceSize + {256,256} + + 311.png.pvr.png + + frame + {{852,300},{170,164}} + offset + {-41,45} + rotated + + sourceColorRect + {{2,1},{170,164}} + sourceSize + {256,256} + + 312.png.pvr.png + + frame + {{196,344},{174,146}} + offset + {-40,53} + rotated + + sourceColorRect + {{1,2},{174,146}} + sourceSize + {256,256} + + 313.png.pvr.png + + frame + {{676,146},{134,184}} + offset + {-60,34} + rotated + + sourceColorRect + {{1,2},{134,184}} + sourceSize + {256,256} + + 314.png.pvr.png + + frame + {{672,282},{178,164}} + offset + {-37,45} + rotated + + sourceColorRect + {{2,1},{178,164}} + sourceSize + {256,256} + + 315.png.pvr.png + + frame + {{664,448},{176,156}} + offset + {-38,49} + rotated + + sourceColorRect + {{2,1},{176,156}} + sourceSize + {256,256} + + 316.png.pvr.png + + frame + {{500,1910},{124,96}} + offset + {0,15} + rotated + + sourceColorRect + {{2,1},{124,96}} + sourceSize + {128,128} + + 320.png.pvr.png + + frame + {{314,1238},{124,152}} + offset + {0,50} + rotated + + sourceColorRect + {{2,2},{124,152}} + sourceSize + {128,256} + + 321.png.pvr.png + + frame + {{484,830},{156,128}} + offset + {-49,63} + rotated + + sourceColorRect + {{1,1},{156,128}} + sourceSize + {256,256} + + 322.png.pvr.png + + frame + {{206,200},{196,142}} + offset + {-28,55} + rotated + + sourceColorRect + {{2,2},{196,142}} + sourceSize + {256,256} + + 323.png.pvr.png + + frame + {{2,222},{192,138}} + offset + {-30,57} + rotated + + sourceColorRect + {{2,2},{192,138}} + sourceSize + {256,256} + + 324.png.pvr.png + + frame + {{2,2},{94,250}} + offset + {-16,1} + rotated + + sourceColorRect + {{1,2},{94,250}} + sourceSize + {128,256} + + 325.png.pvr.png + + frame + {{254,2},{98,246}} + offset + {-14,4} + rotated + + sourceColorRect + {{1,1},{98,246}} + sourceSize + {128,256} + + 326.png.pvr.png + + frame + {{502,2},{118,200}} + offset + {-3,26} + rotated + + sourceColorRect + {{2,2},{118,200}} + sourceSize + {128,256} + + 330.png.pvr.png + + frame + {{748,1658},{108,140}} + offset + {-9,57} + rotated + + sourceColorRect + {{1,1},{108,140}} + sourceSize + {128,256} + + 331.png.pvr.png + + frame + {{776,1408},{128,142}} + offset + {-63,55} + rotated + + sourceColorRect + {{1,2},{128,142}} + sourceSize + {256,256} + + 332.png.pvr.png + + frame + {{166,632},{116,162}} + offset + {-4,45} + rotated + + sourceColorRect + {{2,2},{116,162}} + sourceSize + {128,256} + + 333.png.pvr.png + + frame + {{656,606},{166,164}} + offset + {-43,44} + rotated + + sourceColorRect + {{2,2},{166,164}} + sourceSize + {256,256} + + 334.png.pvr.png + + frame + {{486,122},{188,132}} + offset + {-32,61} + rotated + + sourceColorRect + {{2,1},{188,132}} + sourceSize + {256,256} + + 335.png.pvr.png + + frame + {{704,2},{190,142}} + offset + {-31,55} + rotated + + sourceColorRect + {{2,2},{190,142}} + sourceSize + {256,256} + + 336.png.pvr.png + + frame + {{842,466},{162,174}} + offset + {-46,40} + rotated + + sourceColorRect + {{1,1},{162,174}} + sourceSize + {256,256} + + 340.png.pvr.png + + frame + {{426,1684},{118,134}} + offset + {-3,59} + rotated + + sourceColorRect + {{2,2},{118,134}} + sourceSize + {128,256} + + 341.png.pvr.png + + frame + {{374,1910},{124,124}} + offset + {0,0} + rotated + + sourceColorRect + {{2,2},{124,124}} + sourceSize + {128,128} + + 342.png.pvr.png + + frame + {{920,1408},{100,138}} + offset + {-12,57} + rotated + + sourceColorRect + {{2,2},{100,138}} + sourceSize + {128,256} + + 343.png.pvr.png + + frame + {{404,296},{78,160}} + offset + {-24,46} + rotated + + sourceColorRect + {{1,2},{78,160}} + sourceSize + {128,256} + + 344.png.pvr.png + + frame + {{2,636},{96,160}} + offset + {-14,46} + rotated + + sourceColorRect + {{2,2},{96,160}} + sourceSize + {128,256} + + 345.png.pvr.png + + frame + {{484,584},{98,170}} + offset + {-13,41} + rotated + + sourceColorRect + {{2,2},{98,170}} + sourceSize + {128,256} + + 346.png.pvr.png + + frame + {{2,98},{122,202}} + offset + {-1,26} + rotated + + sourceColorRect + {{2,1},{122,202}} + sourceSize + {128,256} + + + metadata + + format + 2 + realTextureFileName + rm.png + size + {1024,2048} + smartupdate + $TexturePacker:SmartUpdate:0f2f2b23b9be4b56174736b3841879e1$ + textureFileName + rm.png + + + diff --git a/cc_moba/assets/resources/rm.plist.meta b/cc_moba/assets/resources/rm.plist.meta new file mode 100644 index 0000000..f9aa998 --- /dev/null +++ b/cc_moba/assets/resources/rm.plist.meta @@ -0,0 +1,2102 @@ +{ + "ver": "1.2.4", + "uuid": "592b5463-d2cd-44cf-9641-cc0af6ae9c28", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "size": { + "width": 1024, + "height": 2048 + }, + "type": "Texture Packer", + "subMetas": { + "100.png.pvr.png": { + "ver": "1.0.3", + "uuid": "58b27a8b-3bf3-4c04-9007-843866206b33", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -3, + "offsetY": 49, + "trimX": 314, + "trimY": 1118, + "width": 118, + "height": 154, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "101.png.pvr.png": { + "ver": "1.0.3", + "uuid": "352edb3c-e9b7-4c29-a456-1bba057aab76", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -4, + "offsetY": 49, + "trimX": 790, + "trimY": 1160, + "width": 116, + "height": 154, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "102.png.pvr.png": { + "ver": "1.0.3", + "uuid": "2ed3d80d-0584-4b2d-8f1a-e801753e68fa", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -4, + "offsetY": 49, + "trimX": 790, + "trimY": 1042, + "width": 116, + "height": 154, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "103.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a4ad698e-5051-40bd-8b6c-1faa02333550", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 49, + "trimX": 2, + "trimY": 1172, + "width": 116, + "height": 154, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "104.png.pvr.png": { + "ver": "1.0.3", + "uuid": "46b6a9a9-b607-4861-a004-93acc1c771bb", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -4, + "offsetY": 50, + "trimX": 158, + "trimY": 1162, + "width": 116, + "height": 154, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "105.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ee111d10-b65a-41c4-8068-9c230fcb09ad", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -4, + "offsetY": 49, + "trimX": 472, + "trimY": 1088, + "width": 118, + "height": 154, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "110.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c353a077-d21d-493e-8ce7-2dd2abad6ad1", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -48, + "offsetY": 55, + "trimX": 484, + "trimY": 684, + "width": 158, + "height": 144, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "111.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0968c616-c8d0-4b9c-9257-0428d45076d9", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -48, + "offsetY": 54, + "trimX": 2, + "trimY": 880, + "width": 156, + "height": 144, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "112.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c572a02c-b755-4011-8349-64ca1ad15708", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -49, + "offsetY": 54, + "trimX": 802, + "trimY": 896, + "width": 154, + "height": 144, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "113.png.pvr.png": { + "ver": "1.0.3", + "uuid": "14334c0e-98bb-4d0b-9afa-4a3d594f60c0", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -49, + "offsetY": 54, + "trimX": 2, + "trimY": 1026, + "width": 154, + "height": 144, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "114.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b33165c6-69b6-47bd-9779-21fe4d712995", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -49, + "offsetY": 54, + "trimX": 160, + "trimY": 896, + "width": 154, + "height": 144, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "115.png.pvr.png": { + "ver": "1.0.3", + "uuid": "65beffb1-48dd-4c73-b083-4a015e1078ac", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -48, + "offsetY": 54, + "trimX": 162, + "trimY": 750, + "width": 156, + "height": 144, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "120.png.pvr.png": { + "ver": "1.0.3", + "uuid": "bdfe9543-9bf7-4074-91bc-49c0ae29b341", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 50, + "trimX": 158, + "trimY": 1280, + "width": 124, + "height": 152, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "121.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ec013ee4-0bcd-4c0d-acc6-7af89b0a2d4c", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -50, + "offsetY": 64, + "trimX": 642, + "trimY": 914, + "width": 154, + "height": 126, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "122.png.pvr.png": { + "ver": "1.0.3", + "uuid": "16014e64-97b1-4ff2-80f7-bdb49ad3d71d", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -50, + "offsetY": 63, + "trimX": 628, + "trimY": 1162, + "width": 152, + "height": 128, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "123.png.pvr.png": { + "ver": "1.0.3", + "uuid": "60891319-b0d7-4a50-945d-1f60c7c542b3", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -51, + "offsetY": 62, + "trimX": 782, + "trimY": 1278, + "width": 150, + "height": 128, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "124.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e47920d7-b90a-4c86-a1f0-8fa297072039", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -51, + "offsetY": 62, + "trimX": 2, + "trimY": 1290, + "width": 150, + "height": 128, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "125.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0efcbfe3-b55b-4582-9921-a2cfce776a8e", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -51, + "offsetY": 63, + "trimX": 470, + "trimY": 1208, + "width": 152, + "height": 126, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "130.png.pvr.png": { + "ver": "1.0.3", + "uuid": "66b89677-3ef7-4a8e-ab2f-d9f971001cd1", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -9, + "offsetY": 57, + "trimX": 300, + "trimY": 1482, + "width": 108, + "height": 140, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "131.png.pvr.png": { + "ver": "1.0.3", + "uuid": "6bb5f562-ef09-4ffa-921b-5749fb5b2c34", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -8, + "offsetY": 58, + "trimX": 148, + "trimY": 1532, + "width": 110, + "height": 138, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "132.png.pvr.png": { + "ver": "1.0.3", + "uuid": "8842dd71-ff82-492f-8290-e30abb7ff7d3", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -9, + "offsetY": 58, + "trimX": 2, + "trimY": 1770, + "width": 108, + "height": 136, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "133.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b0018bd2-207d-48b6-92cb-0f8b06a01d06", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -11, + "offsetY": 58, + "trimX": 582, + "trimY": 1678, + "width": 104, + "height": 136, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "134.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a487ab1f-2419-4dcc-b8b0-751706bb7502", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -12, + "offsetY": 58, + "trimX": 442, + "trimY": 1582, + "width": 100, + "height": 138, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "135.png.pvr.png": { + "ver": "1.0.3", + "uuid": "6805a827-622b-4f06-a03d-aaca6b1d2d19", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -11, + "offsetY": 57, + "trimX": 2, + "trimY": 1544, + "width": 104, + "height": 138, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "140.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c002e729-a273-4ea7-a8d1-b1b670a975bd", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -3, + "offsetY": 59, + "trimX": 280, + "trimY": 1722, + "width": 118, + "height": 134, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "141.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c3c5bfa0-22f0-477c-9cc3-50d8ed1fa566", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -4, + "offsetY": 60, + "trimX": 720, + "trimY": 1768, + "width": 116, + "height": 134, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "142.png.pvr.png": { + "ver": "1.0.3", + "uuid": "94cd86a1-da0a-47da-bb51-dad1d08fe54a", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -4, + "offsetY": 60, + "trimX": 256, + "trimY": 1890, + "width": 116, + "height": 134, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "143.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a29b8348-9bba-4431-bb16-0206ff442852", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -5, + "offsetY": 60, + "trimX": 138, + "trimY": 1890, + "width": 116, + "height": 134, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "144.png.pvr.png": { + "ver": "1.0.3", + "uuid": "37d52d30-0c37-4454-b26d-9641aa5dba09", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -4, + "offsetY": 59, + "trimX": 2, + "trimY": 1880, + "width": 116, + "height": 134, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "145.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0bde57de-442d-40c6-ba67-aa79e866371f", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -4, + "offsetY": 59, + "trimX": 2, + "trimY": 1650, + "width": 118, + "height": 136, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "200.png.pvr.png": { + "ver": "1.0.3", + "uuid": "6d805d38-af39-48a8-9fc3-bc4dee1fd1e7", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -62, + "offsetY": 49, + "trimX": 320, + "trimY": 864, + "width": 128, + "height": 156, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "201.png.pvr.png": { + "ver": "1.0.3", + "uuid": "450828bb-9762-40ca-bf11-7b9b09971658", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -63, + "offsetY": 49, + "trimX": 478, + "trimY": 960, + "width": 126, + "height": 154, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "202.png.pvr.png": { + "ver": "1.0.3", + "uuid": "17710ec8-7f7f-4b2f-b94d-58bc8ae13665", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 49, + "trimX": 316, + "trimY": 994, + "width": 122, + "height": 154, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "203.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4fe79ea0-df56-4a76-8447-625313503127", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -4, + "offsetY": 52, + "trimX": 312, + "trimY": 1364, + "width": 116, + "height": 148, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "204.png.pvr.png": { + "ver": "1.0.3", + "uuid": "8956c0e3-53e4-490c-bb17-41dcf9134452", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -3, + "offsetY": 55, + "trimX": 462, + "trimY": 1462, + "width": 118, + "height": 142, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "205.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3da05207-d93d-4528-8b9b-544c7bb06656", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -64, + "offsetY": 51, + "trimX": 624, + "trimY": 1292, + "width": 126, + "height": 150, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "210.png.pvr.png": { + "ver": "1.0.3", + "uuid": "9d0a5db2-825f-4e60-b120-f4fdfcef590e", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -43, + "offsetY": 59, + "trimX": 824, + "trimY": 630, + "width": 166, + "height": 134, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "211.png.pvr.png": { + "ver": "1.0.3", + "uuid": "8cc8abed-c8bd-4716-86e3-a130bb711647", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -43, + "offsetY": 58, + "trimX": 2, + "trimY": 362, + "width": 166, + "height": 136, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "212.png.pvr.png": { + "ver": "1.0.3", + "uuid": "23b579d9-d0f9-4915-abcc-804a55205730", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -48, + "offsetY": 56, + "trimX": 644, + "trimY": 772, + "width": 156, + "height": 140, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "213.png.pvr.png": { + "ver": "1.0.3", + "uuid": "7561f186-16de-4eb5-b097-f389df5fb53a", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -50, + "offsetY": 56, + "trimX": 330, + "trimY": 720, + "width": 152, + "height": 142, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "214.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f17eae00-8592-4483-b466-9f03264349c7", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -46, + "offsetY": 57, + "trimX": 170, + "trimY": 492, + "width": 162, + "height": 138, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "215.png.pvr.png": { + "ver": "1.0.3", + "uuid": "13b55b25-0222-41a3-9c24-eab1feef2e0c", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -46, + "offsetY": 59, + "trimX": 862, + "trimY": 164, + "width": 160, + "height": 134, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "220.png.pvr.png": { + "ver": "1.0.3", + "uuid": "da7d12e8-9b27-4d3e-a19f-7e775f61a1f8", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -3, + "offsetY": 53, + "trimX": 334, + "trimY": 598, + "width": 120, + "height": 148, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "221.png.pvr.png": { + "ver": "1.0.3", + "uuid": "839e18dd-209d-41cd-905d-e5121de9d3fb", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -3, + "offsetY": 49, + "trimX": 634, + "trimY": 1042, + "width": 118, + "height": 154, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "222.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d336c148-8072-4349-982e-0ca689a0845c", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -46, + "offsetY": 64, + "trimX": 896, + "trimY": 2, + "width": 160, + "height": 126, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "223.png.pvr.png": { + "ver": "1.0.3", + "uuid": "5ae9472c-69d8-43e6-a4da-2acc6f7e9329", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -45, + "offsetY": 60, + "trimX": 2, + "trimY": 500, + "width": 162, + "height": 134, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "224.png.pvr.png": { + "ver": "1.0.3", + "uuid": "6dc1d686-e924-4e8a-81f4-972d27c4cb44", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -45, + "offsetY": 63, + "trimX": 824, + "trimY": 766, + "width": 164, + "height": 128, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "225.png.pvr.png": { + "ver": "1.0.3", + "uuid": "19415f51-1049-4c49-a9e8-714396a0e861", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 51, + "trimX": 468, + "trimY": 1336, + "width": 124, + "height": 150, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "230.png.pvr.png": { + "ver": "1.0.3", + "uuid": "450ce403-4023-4975-8415-c4a57ed9755d", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -6, + "offsetY": 58, + "trimX": 908, + "trimY": 1548, + "width": 112, + "height": 136, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "231.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0a4fef95-99c3-40e2-a8fd-54cc23089457", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": 54, + "trimX": 154, + "trimY": 1406, + "width": 124, + "height": 144, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "232.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b3b266b4-2ab2-4b9e-92f3-cf39d1243af3", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -62, + "offsetY": 56, + "trimX": 606, + "trimY": 1548, + "width": 128, + "height": 140, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "233.png.pvr.png": { + "ver": "1.0.3", + "uuid": "9097b718-254b-401b-8814-581edbc0b06b", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": 62, + "trimX": 562, + "trimY": 1784, + "width": 124, + "height": 128, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "234.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e3c73d25-2cbd-4ee4-8c50-5b23652caa2b", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 60, + "trimX": 890, + "trimY": 1686, + "width": 116, + "height": 132, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "235.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0d7d5610-7299-482b-8d06-696710c4b43f", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -8, + "offsetY": 57, + "trimX": 372, + "trimY": 458, + "width": 110, + "height": 138, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "240.png.pvr.png": { + "ver": "1.0.3", + "uuid": "2ffe976e-dc0e-4590-ba46-9b2ebe42f563", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -62, + "offsetY": 59, + "trimX": 288, + "trimY": 1592, + "width": 128, + "height": 136, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "241.png.pvr.png": { + "ver": "1.0.3", + "uuid": "210b3f62-6aa1-4799-9552-f6d607ea705a", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -63, + "offsetY": 58, + "trimX": 142, + "trimY": 1644, + "width": 126, + "height": 136, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "242.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4f4a1a22-8f64-4613-9701-08ffad3253a4", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 55, + "trimX": 2, + "trimY": 1420, + "width": 122, + "height": 144, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "243.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f9445cf6-90c6-46fd-93d8-1e4560229f73", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -4, + "offsetY": 60, + "trimX": 140, + "trimY": 1772, + "width": 116, + "height": 134, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "244.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e9cc73e5-ce90-4082-a27d-7bb9f6526988", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -3, + "offsetY": 56, + "trimX": 764, + "trimY": 1538, + "width": 118, + "height": 142, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "245.png.pvr.png": { + "ver": "1.0.3", + "uuid": "92602caa-1fa7-4440-9fbc-7037dd59c1e8", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -64, + "offsetY": 55, + "trimX": 620, + "trimY": 1420, + "width": 126, + "height": 142, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "300.png.pvr.png": { + "ver": "1.0.3", + "uuid": "45e4bece-3eba-440e-adf5-25cfbcccc58e", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -3, + "offsetY": 49, + "trimX": 158, + "trimY": 1042, + "width": 118, + "height": 154, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "301.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f4989528-20bd-4ab3-a99c-efe05bb31974", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 38, + "trimX": 484, + "trimY": 356, + "width": 124, + "height": 178, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "302.png.pvr.png": { + "ver": "1.0.3", + "uuid": "8aeb3a70-9cae-43ec-a409-abe5db4e5b11", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -12, + "offsetY": 41, + "trimX": 484, + "trimY": 482, + "width": 100, + "height": 172, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "303.png.pvr.png": { + "ver": "1.0.3", + "uuid": "52782879-d8c7-4f25-892c-6e03823057ae", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -24, + "offsetY": 30, + "trimX": 406, + "trimY": 102, + "width": 78, + "height": 192, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "304.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ba093540-80d7-4efc-838e-de6825ab5619", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -14, + "offsetY": 27, + "trimX": 206, + "trimY": 102, + "width": 96, + "height": 198, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "305.png.pvr.png": { + "ver": "1.0.3", + "uuid": "afc397ae-0659-447c-9dbb-93ffd5d7240e", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -13, + "offsetY": 35, + "trimX": 486, + "trimY": 256, + "width": 98, + "height": 184, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "306.png.pvr.png": { + "ver": "1.0.3", + "uuid": "60f8d241-9af7-4021-9a88-60e45e1eb42c", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 12, + "trimX": 416, + "trimY": 1804, + "width": 122, + "height": 100, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "310.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f008f1bb-b8f3-4c0f-b247-4abbcceee421", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -48, + "offsetY": 55, + "trimX": 2, + "trimY": 734, + "width": 158, + "height": 144, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "311.png.pvr.png": { + "ver": "1.0.3", + "uuid": "bceb7923-2831-4938-99e6-20e0ff5a6cda", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -41, + "offsetY": 45, + "trimX": 852, + "trimY": 300, + "width": 170, + "height": 164, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "312.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c65382cc-1846-426f-b01c-d2b6eec88327", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -40, + "offsetY": 53, + "trimX": 196, + "trimY": 344, + "width": 174, + "height": 146, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "313.png.pvr.png": { + "ver": "1.0.3", + "uuid": "1b79edc2-2d8d-49c0-9133-ff905ba8a5b6", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -60, + "offsetY": 34, + "trimX": 676, + "trimY": 146, + "width": 134, + "height": 184, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "314.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3ce3b303-8822-4387-93a4-395067f9a3fa", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -37, + "offsetY": 45, + "trimX": 672, + "trimY": 282, + "width": 178, + "height": 164, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "315.png.pvr.png": { + "ver": "1.0.3", + "uuid": "5a4bb504-99b1-408a-83d5-212f7d062456", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -38, + "offsetY": 49, + "trimX": 664, + "trimY": 448, + "width": 176, + "height": 156, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "316.png.pvr.png": { + "ver": "1.0.3", + "uuid": "03d6e400-b6d8-4c18-8852-58bcb70fdd0c", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 15, + "trimX": 500, + "trimY": 1910, + "width": 124, + "height": 96, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "320.png.pvr.png": { + "ver": "1.0.3", + "uuid": "6ae6dddc-6a6b-417c-966a-3d428f119c7f", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 50, + "trimX": 314, + "trimY": 1238, + "width": 124, + "height": 152, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "321.png.pvr.png": { + "ver": "1.0.3", + "uuid": "8c8373dc-d98e-4309-a2f6-407d279dfccd", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -49, + "offsetY": 63, + "trimX": 484, + "trimY": 830, + "width": 156, + "height": 128, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "322.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d9c9de7c-6948-4cc2-b305-17f1eafda625", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -28, + "offsetY": 55, + "trimX": 206, + "trimY": 200, + "width": 196, + "height": 142, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "323.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c35e02a7-5533-4d9d-976a-746667f23e18", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -30, + "offsetY": 57, + "trimX": 2, + "trimY": 222, + "width": 192, + "height": 138, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "324.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3da368d0-da3e-4b51-835f-23d799155c40", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -16, + "offsetY": 1, + "trimX": 2, + "trimY": 2, + "width": 94, + "height": 250, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "325.png.pvr.png": { + "ver": "1.0.3", + "uuid": "8e837b01-a1ca-4a85-b74f-ca7310cfae2f", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -14, + "offsetY": 4, + "trimX": 254, + "trimY": 2, + "width": 98, + "height": 246, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "326.png.pvr.png": { + "ver": "1.0.3", + "uuid": "2cd7bc9d-a22c-469c-9361-11dd0228a0c9", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -3, + "offsetY": 26, + "trimX": 502, + "trimY": 2, + "width": 118, + "height": 200, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "330.png.pvr.png": { + "ver": "1.0.3", + "uuid": "1a422308-28f6-4882-91f1-1a5226283d49", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -9, + "offsetY": 57, + "trimX": 748, + "trimY": 1658, + "width": 108, + "height": 140, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "331.png.pvr.png": { + "ver": "1.0.3", + "uuid": "5c2140d0-f079-4514-9745-5ae72a3f8f54", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -63, + "offsetY": 55, + "trimX": 776, + "trimY": 1408, + "width": 128, + "height": 142, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "332.png.pvr.png": { + "ver": "1.0.3", + "uuid": "1c035708-3e09-464d-95d4-2a9a49f8e1c5", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -4, + "offsetY": 45, + "trimX": 166, + "trimY": 632, + "width": 116, + "height": 162, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "333.png.pvr.png": { + "ver": "1.0.3", + "uuid": "dc4184c1-71e1-49a2-9bd1-a5ab78e493a5", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -43, + "offsetY": 44, + "trimX": 656, + "trimY": 606, + "width": 166, + "height": 164, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "334.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e071ea5a-2cb4-4e21-8039-6098a0e83d39", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -32, + "offsetY": 61, + "trimX": 486, + "trimY": 122, + "width": 188, + "height": 132, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "335.png.pvr.png": { + "ver": "1.0.3", + "uuid": "17352cf3-d645-4d7f-9e53-c3700d00dbe7", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -31, + "offsetY": 55, + "trimX": 704, + "trimY": 2, + "width": 190, + "height": 142, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "336.png.pvr.png": { + "ver": "1.0.3", + "uuid": "41458a92-1514-4dd0-ae57-2f4d33232f89", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -46, + "offsetY": 40, + "trimX": 842, + "trimY": 466, + "width": 162, + "height": 174, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "340.png.pvr.png": { + "ver": "1.0.3", + "uuid": "45693650-c021-4be7-b319-94b4ae2851a3", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -3, + "offsetY": 59, + "trimX": 426, + "trimY": 1684, + "width": 118, + "height": 134, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "341.png.pvr.png": { + "ver": "1.0.3", + "uuid": "bf477cf7-9999-4d79-8480-4a2d4ad07278", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 374, + "trimY": 1910, + "width": 124, + "height": 124, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "342.png.pvr.png": { + "ver": "1.0.3", + "uuid": "28804cfb-4040-4a25-aa27-d6c0dcfd9dc4", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -12, + "offsetY": 57, + "trimX": 920, + "trimY": 1408, + "width": 100, + "height": 138, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "343.png.pvr.png": { + "ver": "1.0.3", + "uuid": "970c09b6-7062-44a5-95f3-1a3d0c7155eb", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -24, + "offsetY": 46, + "trimX": 404, + "trimY": 296, + "width": 78, + "height": 160, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "344.png.pvr.png": { + "ver": "1.0.3", + "uuid": "643c4247-8b21-472d-8724-83406164cff6", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -14, + "offsetY": 46, + "trimX": 2, + "trimY": 636, + "width": 96, + "height": 160, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "345.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e8b43063-2fb0-40e2-8f2d-595ab367c10b", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -13, + "offsetY": 41, + "trimX": 484, + "trimY": 584, + "width": 98, + "height": 170, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "346.png.pvr.png": { + "ver": "1.0.3", + "uuid": "765cfe38-5519-46c2-b9b3-9c7f42bef2e6", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": 26, + "trimX": 2, + "trimY": 98, + "width": 122, + "height": 202, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/resources/rm.png b/cc_moba/assets/resources/rm.png new file mode 100644 index 0000000..e3d0bfe Binary files /dev/null and b/cc_moba/assets/resources/rm.png differ diff --git a/cc_moba/assets/resources/rm.png.meta b/cc_moba/assets/resources/rm.png.meta new file mode 100644 index 0000000..88c5557 --- /dev/null +++ b/cc_moba/assets/resources/rm.png.meta @@ -0,0 +1,30 @@ +{ + "ver": "1.0.0", + "uuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "subMetas": { + "rm": { + "ver": "1.0.3", + "uuid": "b092722b-cdaa-46c2-941f-44d105f3529e", + "rawTextureUuid": "22b5ef5f-4873-4da6-9824-f093901a65ab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 6, + "trimX": 2, + "trimY": 2, + "width": 1020, + "height": 2032, + "rawWidth": 1024, + "rawHeight": 2048, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/resources/sb.plist b/cc_moba/assets/resources/sb.plist new file mode 100644 index 0000000..8b3d822 --- /dev/null +++ b/cc_moba/assets/resources/sb.plist @@ -0,0 +1,880 @@ + + + + + frames + + 100.png.pvr.png + + frame + {{296,442},{36,48}} + offset + {-12,7} + rotated + + sourceColorRect + {{2,1},{36,48}} + sourceSize + {64,64} + + 110.png.pvr.png + + frame + {{208,222},{36,54}} + offset + {-12,4} + rotated + + sourceColorRect + {{2,1},{36,54}} + sourceSize + {64,64} + + 120.png.pvr.png + + frame + {{90,130},{30,58}} + offset + {-15,2} + rotated + + sourceColorRect + {{2,1},{30,58}} + sourceSize + {64,64} + + 130.png.pvr.png + + frame + {{2,432},{28,60}} + offset + {0,1} + rotated + + sourceColorRect + {{2,1},{28,60}} + sourceSize + {32,64} + + 140.png.pvr.png + + frame + {{2,370},{36,60}} + offset + {-12,0} + rotated + + sourceColorRect + {{2,2},{36,60}} + sourceSize + {64,64} + + 200.png.pvr.png + + frame + {{288,330},{48,50}} + offset + {-6,6} + rotated + + sourceColorRect + {{2,1},{48,50}} + sourceSize + {64,64} + + 201.png.pvr.png + + frame + {{88,430},{58,48}} + offset + {-2,7} + rotated + + sourceColorRect + {{1,1},{58,48}} + sourceSize + {64,64} + + 202.png.pvr.png + + frame + {{148,2},{60,48}} + offset + {0,6} + rotated + + sourceColorRect + {{2,2},{60,48}} + sourceSize + {64,64} + + 203.png.pvr.png + + frame + {{160,222},{56,46}} + offset + {-2,7} + rotated + + sourceColorRect + {{2,2},{56,46}} + sourceSize + {64,64} + + 204.png.pvr.png + + frame + {{340,58},{52,50}} + offset + {-4,6} + rotated + + sourceColorRect + {{2,1},{52,50}} + sourceSize + {64,64} + + 205.png.pvr.png + + frame + {{310,114},{52,50}} + offset + {-4,6} + rotated + + sourceColorRect + {{2,1},{52,50}} + sourceSize + {64,64} + + 210.png.pvr.png + + frame + {{298,276},{50,48}} + offset + {-5,7} + rotated + + sourceColorRect + {{2,1},{50,48}} + sourceSize + {64,64} + + 211.png.pvr.png + + frame + {{392,56},{44,50}} + offset + {-9,6} + rotated + + sourceColorRect + {{1,1},{44,50}} + sourceSize + {64,64} + + 212.png.pvr.png + + frame + {{298,2},{50,54}} + offset + {-6,4} + rotated + + sourceColorRect + {{1,1},{50,54}} + sourceSize + {64,64} + + 213.png.pvr.png + + frame + {{106,222},{56,52}} + offset + {-3,4} + rotated + + sourceColorRect + {{1,2},{56,52}} + sourceSize + {64,64} + + 214.png.pvr.png + + frame + {{288,58},{50,54}} + offset + {-5,4} + rotated + + sourceColorRect + {{2,1},{50,54}} + sourceSize + {64,64} + + 215.png.pvr.png + + frame + {{350,2},{46,52}} + offset + {-8,5} + rotated + + sourceColorRect + {{1,1},{46,52}} + sourceSize + {64,64} + + 220.png.pvr.png + + frame + {{198,2},{56,44}} + offset + {-2,9} + rotated + + sourceColorRect + {{2,1},{56,44}} + sourceSize + {64,64} + + 221.png.pvr.png + + frame + {{242,336},{52,44}} + offset + {-5,9} + rotated + + sourceColorRect + {{1,1},{52,44}} + sourceSize + {64,64} + + 222.png.pvr.png + + frame + {{316,168},{46,50}} + offset + {-7,5} + rotated + + sourceColorRect + {{2,2},{46,50}} + sourceSize + {64,64} + + 223.png.pvr.png + + frame + {{262,172},{48,52}} + offset + {-6,4} + rotated + + sourceColorRect + {{2,2},{48,52}} + sourceSize + {64,64} + + 224.png.pvr.png + + frame + {{240,394},{44,52}} + offset + {-9,5} + rotated + + sourceColorRect + {{1,1},{44,52}} + sourceSize + {64,64} + + 225.png.pvr.png + + frame + {{362,112},{50,46}} + offset + {-6,8} + rotated + + sourceColorRect + {{1,1},{50,46}} + sourceSize + {64,64} + + 230.png.pvr.png + + frame + {{244,2},{54,52}} + offset + {-3,4} + rotated + + sourceColorRect + {{2,2},{54,52}} + sourceSize + {64,64} + + 231.png.pvr.png + + frame + {{138,428},{56,50}} + offset + {-2,6} + rotated + + sourceColorRect + {{2,1},{56,50}} + sourceSize + {64,64} + + 232.png.pvr.png + + frame + {{398,2},{48,48}} + offset + {-7,7} + rotated + + sourceColorRect + {{1,1},{48,48}} + sourceSize + {64,64} + + 233.png.pvr.png + + frame + {{448,50},{44,48}} + offset + {-8,7} + rotated + + sourceColorRect + {{2,1},{44,48}} + sourceSize + {64,64} + + 234.png.pvr.png + + frame + {{448,2},{48,46}} + offset + {-7,8} + rotated + + sourceColorRect + {{1,1},{48,46}} + sourceSize + {64,64} + + 235.png.pvr.png + + frame + {{244,448},{50,50}} + offset + {-5,5} + rotated + + sourceColorRect + {{2,2},{50,50}} + sourceSize + {64,64} + + 240.png.pvr.png + + frame + {{192,338},{48,54}} + offset + {-6,4} + rotated + + sourceColorRect + {{2,1},{48,54}} + sourceSize + {64,64} + + 241.png.pvr.png + + frame + {{48,308},{58,52}} + offset + {-2,5} + rotated + + sourceColorRect + {{1,1},{58,52}} + sourceSize + {64,64} + + 242.png.pvr.png + + frame + {{134,66},{60,52}} + offset + {0,4} + rotated + + sourceColorRect + {{2,2},{60,52}} + sourceSize + {64,64} + + 243.png.pvr.png + + frame + {{102,288},{56,54}} + offset + {-2,3} + rotated + + sourceColorRect + {{2,2},{56,54}} + sourceSize + {64,64} + + 244.png.pvr.png + + frame + {{190,460},{52,50}} + offset + {-4,5} + rotated + + sourceColorRect + {{2,2},{52,50}} + sourceSize + {64,64} + + 245.png.pvr.png + + frame + {{246,222},{52,52}} + offset + {-4,4} + rotated + + sourceColorRect + {{2,2},{52,52}} + sourceSize + {64,64} + + 300.png.pvr.png + + frame + {{234,60},{54,52}} + offset + {-3,4} + rotated + + sourceColorRect + {{2,2},{54,52}} + sourceSize + {64,64} + + 301.png.pvr.png + + frame + {{206,178},{42,54}} + offset + {-10,3} + rotated + + sourceColorRect + {{1,2},{42,54}} + sourceSize + {64,64} + + 302.png.pvr.png + + frame + {{2,88},{34,78}} + offset + {-13,23} + rotated + + sourceColorRect + {{2,2},{34,78}} + sourceSize + {64,128} + + 303.png.pvr.png + + frame + {{44,2},{40,68}} + offset + {-10,28} + rotated + + sourceColorRect + {{2,2},{40,68}} + sourceSize + {64,128} + + 304.png.pvr.png + + frame + {{286,390},{48,50}} + offset + {-7,5} + rotated + + sourceColorRect + {{1,2},{48,50}} + sourceSize + {64,64} + + 305.png.pvr.png + + frame + {{154,128},{46,56}} + offset + {-7,3} + rotated + + sourceColorRect + {{2,1},{46,56}} + sourceSize + {64,64} + + 310.png.pvr.png + + frame + {{104,162},{48,58}} + offset + {-6,2} + rotated + + sourceColorRect + {{2,1},{48,58}} + sourceSize + {64,64} + + 311.png.pvr.png + + frame + {{2,308},{44,60}} + offset + {-8,0} + rotated + + sourceColorRect + {{2,2},{44,60}} + sourceSize + {64,64} + + 312.png.pvr.png + + frame + {{2,2},{40,84}} + offset + {-11,21} + rotated + + sourceColorRect + {{1,1},{40,84}} + sourceSize + {64,128} + + 313.png.pvr.png + + frame + {{86,2},{60,62}} + offset + {-1,31} + rotated + + sourceColorRect + {{1,2},{60,62}} + sourceSize + {64,128} + + 314.png.pvr.png + + frame + {{94,368},{46,58}} + offset + {-7,1} + rotated + + sourceColorRect + {{2,2},{46,58}} + sourceSize + {64,64} + + 315.png.pvr.png + + frame + {{142,346},{48,56}} + offset + {-7,3} + rotated + + sourceColorRect + {{1,1},{48,56}} + sourceSize + {64,64} + + 320.png.pvr.png + + frame + {{188,64},{44,56}} + offset + {-9,3} + rotated + + sourceColorRect + {{1,1},{44,56}} + sourceSize + {64,64} + + 321.png.pvr.png + + frame + {{2,244},{52,62}} + offset + {-5,31} + rotated + + sourceColorRect + {{1,2},{52,62}} + sourceSize + {64,128} + + 322.png.pvr.png + + frame + {{38,88},{50,74}} + offset + {-5,25} + rotated + + sourceColorRect + {{2,2},{50,74}} + sourceSize + {64,128} + + 323.png.pvr.png + + frame + {{2,168},{50,74}} + offset + {-6,25} + rotated + + sourceColorRect + {{1,2},{50,74}} + sourceSize + {64,128} + + 324.png.pvr.png + + frame + {{54,164},{48,62}} + offset + {-6,32} + rotated + + sourceColorRect + {{2,1},{48,62}} + sourceSize + {64,128} + + 325.png.pvr.png + + frame + {{32,432},{54,58}} + offset + {-3,2} + rotated + + sourceColorRect + {{2,1},{54,58}} + sourceSize + {64,64} + + 330.png.pvr.png + + frame + {{334,442},{46,44}} + offset + {-7,8} + rotated + + sourceColorRect + {{2,2},{46,44}} + sourceSize + {64,64} + + 331.png.pvr.png + + frame + {{258,116},{50,54}} + offset + {-5,4} + rotated + + sourceColorRect + {{2,1},{50,54}} + sourceSize + {64,64} + + 332.png.pvr.png + + frame + {{56,228},{48,58}} + offset + {-6,1} + rotated + + sourceColorRect + {{2,2},{48,58}} + sourceSize + {64,64} + + 333.png.pvr.png + + frame + {{40,370},{58,52}} + offset + {-1,5} + rotated + + sourceColorRect + {{2,1},{58,52}} + sourceSize + {64,64} + + 334.png.pvr.png + + frame + {{202,122},{54,54}} + offset + {-3,3} + rotated + + sourceColorRect + {{2,2},{54,54}} + sourceSize + {64,64} + + 335.png.pvr.png + + frame + {{158,280},{46,56}} + offset + {-8,2} + rotated + + sourceColorRect + {{1,2},{46,56}} + sourceSize + {64,64} + + 340.png.pvr.png + + frame + {{206,280},{54,48}} + offset + {-3,7} + rotated + + sourceColorRect + {{2,1},{54,48}} + sourceSize + {64,64} + + 341.png.pvr.png + + frame + {{336,382},{42,46}} + offset + {-10,8} + rotated + + sourceColorRect + {{1,1},{42,46}} + sourceSize + {64,64} + + 342.png.pvr.png + + frame + {{154,186},{34,50}} + offset + {-13,6} + rotated + + sourceColorRect + {{2,1},{34,50}} + sourceSize + {64,64} + + 343.png.pvr.png + + frame + {{256,276},{40,52}} + offset + {-10,5} + rotated + + sourceColorRect + {{2,1},{40,52}} + sourceSize + {64,64} + + 344.png.pvr.png + + frame + {{190,404},{48,54}} + offset + {-7,3} + rotated + + sourceColorRect + {{1,2},{48,54}} + sourceSize + {64,64} + + 345.png.pvr.png + + frame + {{300,222},{46,50}} + offset + {-7,5} + rotated + + sourceColorRect + {{2,2},{46,50}} + sourceSize + {64,64} + + 500.png.pvr.png + + frame + {{90,66},{42,62}} + offset + {-9,31} + rotated + + sourceColorRect + {{2,2},{42,62}} + sourceSize + {64,128} + + + metadata + + format + 2 + realTextureFileName + sb.png + size + {512,512} + smartupdate + $TexturePacker:SmartUpdate:17796b2723a6012fba9f7946c3c6133d$ + textureFileName + sb.png + + + diff --git a/cc_moba/assets/resources/sb.plist.meta b/cc_moba/assets/resources/sb.plist.meta new file mode 100644 index 0000000..810e197 --- /dev/null +++ b/cc_moba/assets/resources/sb.plist.meta @@ -0,0 +1,1464 @@ +{ + "ver": "1.2.4", + "uuid": "812b8914-9207-4f34-8d71-09a5196060b6", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "size": { + "width": 512, + "height": 512 + }, + "type": "Texture Packer", + "subMetas": { + "100.png.pvr.png": { + "ver": "1.0.3", + "uuid": "788b52e3-03cc-48c0-89fb-d4b6fcb7d2b9", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -12, + "offsetY": 7, + "trimX": 296, + "trimY": 442, + "width": 36, + "height": 48, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "110.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0d8234dd-0e12-43f5-8ba5-bf2a9dd925c9", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -12, + "offsetY": 4, + "trimX": 208, + "trimY": 222, + "width": 36, + "height": 54, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "120.png.pvr.png": { + "ver": "1.0.3", + "uuid": "5db1e736-0dd0-43bd-8bfb-413689548d1f", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -15, + "offsetY": 2, + "trimX": 90, + "trimY": 130, + "width": 30, + "height": 58, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "130.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d7b4b87d-ef3b-4217-be97-0ebb87d68988", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 1, + "trimX": 2, + "trimY": 432, + "width": 28, + "height": 60, + "rawWidth": 32, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "140.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3cb13073-f0fb-46e2-915e-bf829602a383", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -12, + "offsetY": 0, + "trimX": 2, + "trimY": 370, + "width": 36, + "height": 60, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "200.png.pvr.png": { + "ver": "1.0.3", + "uuid": "39c4ec59-1d55-42c3-b1e4-9dfaadb786c1", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -6, + "offsetY": 6, + "trimX": 288, + "trimY": 330, + "width": 48, + "height": 50, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "201.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e27ebae3-071d-46cf-8237-90497cd7197d", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 7, + "trimX": 88, + "trimY": 430, + "width": 58, + "height": 48, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "202.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a95a0e97-20dc-4a87-a6c6-387a312b4ef0", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 6, + "trimX": 148, + "trimY": 2, + "width": 60, + "height": 48, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "203.png.pvr.png": { + "ver": "1.0.3", + "uuid": "2da17a5b-752a-44cb-97f1-2cb01ffc775c", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 7, + "trimX": 160, + "trimY": 222, + "width": 56, + "height": 46, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "204.png.pvr.png": { + "ver": "1.0.3", + "uuid": "bff40a2d-7217-4a4e-9f37-a3eaa8cef59f", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -4, + "offsetY": 6, + "trimX": 340, + "trimY": 58, + "width": 52, + "height": 50, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "205.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f1e711c0-ef00-4e4a-9e04-833c511049d7", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -4, + "offsetY": 6, + "trimX": 310, + "trimY": 114, + "width": 52, + "height": 50, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "210.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ca498967-c7fb-4d44-8b01-6c03370a073f", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 7, + "trimX": 298, + "trimY": 276, + "width": 50, + "height": 48, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "211.png.pvr.png": { + "ver": "1.0.3", + "uuid": "55e4dc80-1fd8-4e47-969e-fcd78532e556", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -9, + "offsetY": 6, + "trimX": 392, + "trimY": 56, + "width": 44, + "height": 50, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "212.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4e1438a5-cc49-4edb-a527-0b1bb5e8286c", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -6, + "offsetY": 4, + "trimX": 298, + "trimY": 2, + "width": 50, + "height": 54, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "213.png.pvr.png": { + "ver": "1.0.3", + "uuid": "86edb432-c7f1-456d-b09e-f680f89b9d77", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -3, + "offsetY": 4, + "trimX": 106, + "trimY": 222, + "width": 56, + "height": 52, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "214.png.pvr.png": { + "ver": "1.0.3", + "uuid": "5cf1366c-0f4c-4f25-9ebe-892cf56390c8", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -5, + "offsetY": 4, + "trimX": 288, + "trimY": 58, + "width": 50, + "height": 54, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "215.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a5dcb7a1-b8b6-46b2-b9ba-12c1f12097a5", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -8, + "offsetY": 5, + "trimX": 350, + "trimY": 2, + "width": 46, + "height": 52, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "220.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a4dd208c-6ea0-4390-a791-2c9cc5b45089", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 9, + "trimX": 198, + "trimY": 2, + "width": 56, + "height": 44, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "221.png.pvr.png": { + "ver": "1.0.3", + "uuid": "cfdb5190-6c04-442b-a8f1-4fe40a943268", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 9, + "trimX": 242, + "trimY": 336, + "width": 52, + "height": 44, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "222.png.pvr.png": { + "ver": "1.0.3", + "uuid": "38b3d872-20d0-437a-ac0f-1b01ccbe8887", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -7, + "offsetY": 5, + "trimX": 316, + "trimY": 168, + "width": 46, + "height": 50, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "223.png.pvr.png": { + "ver": "1.0.3", + "uuid": "bcbafb53-8119-47fc-b09c-457fde511466", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -6, + "offsetY": 4, + "trimX": 262, + "trimY": 172, + "width": 48, + "height": 52, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "224.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3054e7a5-f235-4813-96dd-9722ee62e79b", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -9, + "offsetY": 5, + "trimX": 240, + "trimY": 394, + "width": 44, + "height": 52, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "225.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3d2c255c-7d1b-4fc3-9614-b46f3e54d6de", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -6, + "offsetY": 8, + "trimX": 362, + "trimY": 112, + "width": 50, + "height": 46, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "230.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e8efebb3-d2d6-45e4-a52b-808649da3d6f", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -3, + "offsetY": 4, + "trimX": 244, + "trimY": 2, + "width": 54, + "height": 52, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "231.png.pvr.png": { + "ver": "1.0.3", + "uuid": "757292a0-5e13-4332-886d-85b4de3041ed", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 6, + "trimX": 138, + "trimY": 428, + "width": 56, + "height": 50, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "232.png.pvr.png": { + "ver": "1.0.3", + "uuid": "7b280b2e-6dac-4394-9a6d-45227fee6261", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -7, + "offsetY": 7, + "trimX": 398, + "trimY": 2, + "width": 48, + "height": 48, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "233.png.pvr.png": { + "ver": "1.0.3", + "uuid": "183dc5e5-e757-417b-a206-21bb987a4473", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -8, + "offsetY": 7, + "trimX": 448, + "trimY": 50, + "width": 44, + "height": 48, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "234.png.pvr.png": { + "ver": "1.0.3", + "uuid": "fbe8f1a1-3e1f-4d67-a960-123119bea0a9", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -7, + "offsetY": 8, + "trimX": 448, + "trimY": 2, + "width": 48, + "height": 46, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "235.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0dccad7c-c867-4973-87da-9f177008b3ac", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -5, + "offsetY": 5, + "trimX": 244, + "trimY": 448, + "width": 50, + "height": 50, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "240.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ea7a747f-b15b-4021-ab14-d4f3ef90ba40", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -6, + "offsetY": 4, + "trimX": 192, + "trimY": 338, + "width": 48, + "height": 54, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "241.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0361461a-b8d9-4234-a849-b7a1f717ddac", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 5, + "trimX": 48, + "trimY": 308, + "width": 58, + "height": 52, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "242.png.pvr.png": { + "ver": "1.0.3", + "uuid": "8a352cc5-f713-43a9-8521-8839ad570ebd", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 4, + "trimX": 134, + "trimY": 66, + "width": 60, + "height": 52, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "243.png.pvr.png": { + "ver": "1.0.3", + "uuid": "12373de8-95cb-42c9-b45e-9d90105fc648", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 3, + "trimX": 102, + "trimY": 288, + "width": 56, + "height": 54, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "244.png.pvr.png": { + "ver": "1.0.3", + "uuid": "550c66cf-2bad-4a9e-a1b0-291314df879a", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -4, + "offsetY": 5, + "trimX": 190, + "trimY": 460, + "width": 52, + "height": 50, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "245.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4e4783a3-eb39-4f33-b271-982bf509a7ae", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -4, + "offsetY": 4, + "trimX": 246, + "trimY": 222, + "width": 52, + "height": 52, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "300.png.pvr.png": { + "ver": "1.0.3", + "uuid": "8f268321-f6b0-4900-9959-ba85da8d2418", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -3, + "offsetY": 4, + "trimX": 234, + "trimY": 60, + "width": 54, + "height": 52, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "301.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a910aa6e-6161-4a18-980a-625d3a9cb020", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -10, + "offsetY": 3, + "trimX": 206, + "trimY": 178, + "width": 42, + "height": 54, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "302.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3f18e655-ac3a-483d-8dba-75532834abbc", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -13, + "offsetY": 23, + "trimX": 2, + "trimY": 88, + "width": 34, + "height": 78, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "303.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0e9e5b00-56d6-481f-b2ef-59c034b18d16", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -10, + "offsetY": 28, + "trimX": 44, + "trimY": 2, + "width": 40, + "height": 68, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "304.png.pvr.png": { + "ver": "1.0.3", + "uuid": "56eeada5-7505-4f7f-bc33-603b1031b313", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -7, + "offsetY": 5, + "trimX": 286, + "trimY": 390, + "width": 48, + "height": 50, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "305.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3724fd0f-06b4-42c0-86df-75bdd896bf71", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -7, + "offsetY": 3, + "trimX": 154, + "trimY": 128, + "width": 46, + "height": 56, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "310.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a6f3b474-e5d3-4604-a798-181240e6a98a", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -6, + "offsetY": 2, + "trimX": 104, + "trimY": 162, + "width": 48, + "height": 58, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "311.png.pvr.png": { + "ver": "1.0.3", + "uuid": "78105ad7-b91d-4117-9d4e-43bca8628791", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -8, + "offsetY": 0, + "trimX": 2, + "trimY": 308, + "width": 44, + "height": 60, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "312.png.pvr.png": { + "ver": "1.0.3", + "uuid": "5a5e0d7f-afc6-4b9a-bbd6-ba41bc5955b0", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -11, + "offsetY": 21, + "trimX": 2, + "trimY": 2, + "width": 40, + "height": 84, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "313.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ae5f1e77-6ba5-4a88-a150-2ce3045f455a", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 31, + "trimX": 86, + "trimY": 2, + "width": 60, + "height": 62, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "314.png.pvr.png": { + "ver": "1.0.3", + "uuid": "81bf3556-620a-454a-9700-eff3bd5fb3db", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -7, + "offsetY": 1, + "trimX": 94, + "trimY": 368, + "width": 46, + "height": 58, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "315.png.pvr.png": { + "ver": "1.0.3", + "uuid": "8746ded6-ce78-4f45-89d1-ab805a8b61f6", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -7, + "offsetY": 3, + "trimX": 142, + "trimY": 346, + "width": 48, + "height": 56, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "320.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4dfcf25b-dba9-42f7-b40f-541235c00d26", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -9, + "offsetY": 3, + "trimX": 188, + "trimY": 64, + "width": 44, + "height": 56, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "321.png.pvr.png": { + "ver": "1.0.3", + "uuid": "5c0be3af-e544-4cf7-ad18-919a7839fd6c", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -5, + "offsetY": 31, + "trimX": 2, + "trimY": 244, + "width": 52, + "height": 62, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "322.png.pvr.png": { + "ver": "1.0.3", + "uuid": "6c7f2d37-b1ae-4e91-b36d-e6c16605198c", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -5, + "offsetY": 25, + "trimX": 38, + "trimY": 88, + "width": 50, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "323.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d52293c2-aab5-4acb-947c-308a4402fd46", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -6, + "offsetY": 25, + "trimX": 2, + "trimY": 168, + "width": 50, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "324.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ed29862c-3837-4e73-84c3-8276aac35196", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -6, + "offsetY": 32, + "trimX": 54, + "trimY": 164, + "width": 48, + "height": 62, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "325.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a0f3bda9-e7c2-4850-a843-7f65d1c64f79", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -3, + "offsetY": 2, + "trimX": 32, + "trimY": 432, + "width": 54, + "height": 58, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "330.png.pvr.png": { + "ver": "1.0.3", + "uuid": "26a7e60d-c713-4727-92a8-cf1a80886f64", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 8, + "trimX": 334, + "trimY": 442, + "width": 46, + "height": 44, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "331.png.pvr.png": { + "ver": "1.0.3", + "uuid": "29efeb7c-28d7-4992-9961-fc50285229d7", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -5, + "offsetY": 4, + "trimX": 258, + "trimY": 116, + "width": 50, + "height": 54, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "332.png.pvr.png": { + "ver": "1.0.3", + "uuid": "67046d83-9851-4dc1-926c-5702a26cdd70", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -6, + "offsetY": 1, + "trimX": 56, + "trimY": 228, + "width": 48, + "height": 58, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "333.png.pvr.png": { + "ver": "1.0.3", + "uuid": "fa7c5167-9c2e-40b8-a85d-a965dde72ef7", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": 5, + "trimX": 40, + "trimY": 370, + "width": 58, + "height": 52, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "334.png.pvr.png": { + "ver": "1.0.3", + "uuid": "41271c06-ded1-423b-9eed-ea532459a235", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -3, + "offsetY": 3, + "trimX": 202, + "trimY": 122, + "width": 54, + "height": 54, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "335.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f67dd46a-6bc4-4ac6-8e32-49727cc9a25d", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -8, + "offsetY": 2, + "trimX": 158, + "trimY": 280, + "width": 46, + "height": 56, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "340.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ff957e2d-ee7e-4838-bd97-7c020201323f", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -3, + "offsetY": 7, + "trimX": 206, + "trimY": 280, + "width": 54, + "height": 48, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "341.png.pvr.png": { + "ver": "1.0.3", + "uuid": "20756d06-aa4b-46cc-9652-8957cad0a678", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -10, + "offsetY": 8, + "trimX": 336, + "trimY": 382, + "width": 42, + "height": 46, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "342.png.pvr.png": { + "ver": "1.0.3", + "uuid": "9dc856a4-6b0c-49df-a673-2b2782152afd", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -13, + "offsetY": 6, + "trimX": 154, + "trimY": 186, + "width": 34, + "height": 50, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "343.png.pvr.png": { + "ver": "1.0.3", + "uuid": "1b437f4e-e0b2-4640-9f8d-10b401c8b75a", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -10, + "offsetY": 5, + "trimX": 256, + "trimY": 276, + "width": 40, + "height": 52, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "344.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4940a308-6e60-40be-b7e7-0c066de73a29", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -7, + "offsetY": 3, + "trimX": 190, + "trimY": 404, + "width": 48, + "height": 54, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "345.png.pvr.png": { + "ver": "1.0.3", + "uuid": "06d030f6-8d5d-44f8-b4a7-1109dc9f7696", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -7, + "offsetY": 5, + "trimX": 300, + "trimY": 222, + "width": 46, + "height": 50, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "500.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4b3ff2dc-b80e-407a-aa4b-e22c12fbac16", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -9, + "offsetY": 31, + "trimX": 90, + "trimY": 66, + "width": 42, + "height": 62, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/resources/sb.png b/cc_moba/assets/resources/sb.png new file mode 100644 index 0000000..b8aadcf Binary files /dev/null and b/cc_moba/assets/resources/sb.png differ diff --git a/cc_moba/assets/resources/sb.png.meta b/cc_moba/assets/resources/sb.png.meta new file mode 100644 index 0000000..87884cf --- /dev/null +++ b/cc_moba/assets/resources/sb.png.meta @@ -0,0 +1,30 @@ +{ + "ver": "1.0.0", + "uuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "subMetas": { + "sb": { + "ver": "1.0.3", + "uuid": "ce8b8f36-5994-47c7-a2ea-0bbc13df891d", + "rawTextureUuid": "63b285d4-8ecb-45e5-a0d9-72e376b37df2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -7, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 494, + "height": 508, + "rawWidth": 512, + "rawHeight": 512, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/resources/sr.plist b/cc_moba/assets/resources/sr.plist new file mode 100644 index 0000000..02c62e9 --- /dev/null +++ b/cc_moba/assets/resources/sr.plist @@ -0,0 +1,880 @@ + + + + + frames + + 100.png.pvr.png + + frame + {{264,416},{52,52}} + offset + {-4,5} + rotated + + sourceColorRect + {{2,1},{52,52}} + sourceSize + {64,64} + + 110.png.pvr.png + + frame + {{428,154},{50,54}} + offset + {-5,4} + rotated + + sourceColorRect + {{2,1},{50,54}} + sourceSize + {64,64} + + 120.png.pvr.png + + frame + {{156,442},{56,54}} + offset + {-2,3} + rotated + + sourceColorRect + {{2,2},{56,54}} + sourceSize + {64,64} + + 130.png.pvr.png + + frame + {{318,460},{50,48}} + offset + {-5,7} + rotated + + sourceColorRect + {{2,1},{50,48}} + sourceSize + {64,64} + + 140.png.pvr.png + + frame + {{430,254},{52,46}} + offset + {-4,7} + rotated + + sourceColorRect + {{2,2},{52,46}} + sourceSize + {64,64} + + 200.png.pvr.png + + frame + {{106,326},{60,48}} + offset + {-1,6} + rotated + + sourceColorRect + {{1,2},{60,48}} + sourceSize + {64,64} + + 201.png.pvr.png + + frame + {{204,324},{56,54}} + offset + {-2,3} + rotated + + sourceColorRect + {{2,2},{56,54}} + sourceSize + {64,64} + + 202.png.pvr.png + + frame + {{212,440},{56,50}} + offset + {-3,5} + rotated + + sourceColorRect + {{1,2},{56,50}} + sourceSize + {64,64} + + 203.png.pvr.png + + frame + {{106,448},{58,48}} + offset + {-1,6} + rotated + + sourceColorRect + {{2,2},{58,48}} + sourceSize + {64,64} + + 204.png.pvr.png + + frame + {{420,46},{54,52}} + offset + {-4,4} + rotated + + sourceColorRect + {{1,2},{54,52}} + sourceSize + {64,64} + + 205.png.pvr.png + + frame + {{372,2},{56,46}} + offset + {-3,7} + rotated + + sourceColorRect + {{1,2},{56,46}} + sourceSize + {64,64} + + 210.png.pvr.png + + frame + {{212,382},{50,56}} + offset + {-5,3} + rotated + + sourceColorRect + {{2,1},{50,56}} + sourceSize + {64,64} + + 211.png.pvr.png + + frame + {{266,124},{54,56}} + offset + {-3,3} + rotated + + sourceColorRect + {{2,1},{54,56}} + sourceSize + {64,64} + + 212.png.pvr.png + + frame + {{122,264},{56,58}} + offset + {-2,1} + rotated + + sourceColorRect + {{2,2},{56,58}} + sourceSize + {64,64} + + 213.png.pvr.png + + frame + {{46,410},{58,60}} + offset + {-1,0} + rotated + + sourceColorRect + {{2,2},{58,60}} + sourceSize + {64,64} + + 214.png.pvr.png + + frame + {{108,2},{50,60}} + offset + {-5,1} + rotated + + sourceColorRect + {{2,1},{50,60}} + sourceSize + {64,64} + + 215.png.pvr.png + + frame + {{228,244},{50,56}} + offset + {-5,3} + rotated + + sourceColorRect + {{2,1},{50,56}} + sourceSize + {64,64} + + 220.png.pvr.png + + frame + {{420,2},{42,56}} + offset + {-10,2} + rotated + + sourceColorRect + {{1,2},{42,56}} + sourceSize + {64,64} + + 221.png.pvr.png + + frame + {{156,324},{46,58}} + offset + {-7,1} + rotated + + sourceColorRect + {{2,2},{46,58}} + sourceSize + {64,64} + + 222.png.pvr.png + + frame + {{102,216},{46,60}} + offset + {-7,0} + rotated + + sourceColorRect + {{2,2},{46,60}} + sourceSize + {64,64} + + 223.png.pvr.png + + frame + {{2,410},{42,62}} + offset + {-9,31} + rotated + + sourceColorRect + {{2,2},{42,62}} + sourceSize + {64,128} + + 224.png.pvr.png + + frame + {{260,302},{48,56}} + offset + {-6,2} + rotated + + sourceColorRect + {{2,2},{48,56}} + sourceSize + {64,64} + + 225.png.pvr.png + + frame + {{310,298},{46,54}} + offset + {-7,4} + rotated + + sourceColorRect + {{2,1},{46,54}} + sourceSize + {64,64} + + 230.png.pvr.png + + frame + {{160,2},{60,50}} + offset + {0,5} + rotated + + sourceColorRect + {{2,2},{60,50}} + sourceSize + {64,64} + + 231.png.pvr.png + + frame + {{380,206},{52,48}} + offset + {-5,6} + rotated + + sourceColorRect + {{1,2},{52,48}} + sourceSize + {64,64} + + 232.png.pvr.png + + frame + {{326,240},{52,52}} + offset + {-4,4} + rotated + + sourceColorRect + {{2,2},{52,52}} + sourceSize + {64,64} + + 233.png.pvr.png + + frame + {{222,186},{56,56}} + offset + {-3,3} + rotated + + sourceColorRect + {{1,1},{56,56}} + sourceSize + {64,64} + + 234.png.pvr.png + + frame + {{210,64},{58,56}} + offset + {-2,2} + rotated + + sourceColorRect + {{1,2},{58,56}} + sourceSize + {64,64} + + 235.png.pvr.png + + frame + {{106,88},{60,52}} + offset + {0,4} + rotated + + sourceColorRect + {{2,2},{60,52}} + sourceSize + {64,64} + + 240.png.pvr.png + + frame + {{160,64},{60,48}} + offset + {-1,7} + rotated + + sourceColorRect + {{1,1},{60,48}} + sourceSize + {64,64} + + 241.png.pvr.png + + frame + {{164,212},{56,50}} + offset + {-2,5} + rotated + + sourceColorRect + {{2,2},{56,50}} + sourceSize + {64,64} + + 242.png.pvr.png + + frame + {{324,60},{56,48}} + offset + {-3,7} + rotated + + sourceColorRect + {{1,1},{56,48}} + sourceSize + {64,64} + + 243.png.pvr.png + + frame + {{180,264},{58,46}} + offset + {-1,7} + rotated + + sourceColorRect + {{2,2},{58,46}} + sourceSize + {64,64} + + 244.png.pvr.png + + frame + {{372,154},{54,50}} + offset + {-4,5} + rotated + + sourceColorRect + {{1,2},{54,50}} + sourceSize + {64,64} + + 245.png.pvr.png + + frame + {{322,120},{56,48}} + offset + {-3,6} + rotated + + sourceColorRect + {{1,2},{56,48}} + sourceSize + {64,64} + + 300.png.pvr.png + + frame + {{314,354},{52,50}} + offset + {-4,5} + rotated + + sourceColorRect + {{2,2},{52,50}} + sourceSize + {64,64} + + 301.png.pvr.png + + frame + {{368,460},{50,46}} + offset + {-6,7} + rotated + + sourceColorRect + {{1,2},{50,46}} + sourceSize + {64,64} + + 302.png.pvr.png + + frame + {{280,182},{56,48}} + offset + {-2,6} + rotated + + sourceColorRect + {{2,2},{56,48}} + sourceSize + {64,64} + + 303.png.pvr.png + + frame + {{64,264},{60,56}} + offset + {0,2} + rotated + + sourceColorRect + {{2,2},{60,56}} + sourceSize + {64,64} + + 304.png.pvr.png + + frame + {{156,150},{50,60}} + offset + {-5,1} + rotated + + sourceColorRect + {{2,1},{50,60}} + sourceSize + {64,64} + + 305.png.pvr.png + + frame + {{102,154},{60,52}} + offset + {0,5} + rotated + + sourceColorRect + {{2,1},{60,52}} + sourceSize + {64,64} + + 310.png.pvr.png + + frame + {{430,100},{52,54}} + offset + {-4,4} + rotated + + sourceColorRect + {{2,1},{52,54}} + sourceSize + {64,64} + + 311.png.pvr.png + + frame + {{156,384},{56,54}} + offset + {-3,4} + rotated + + sourceColorRect + {{1,1},{56,54}} + sourceSize + {64,64} + + 312.png.pvr.png + + frame + {{358,294},{48,52}} + offset + {-7,4} + rotated + + sourceColorRect + {{1,2},{48,52}} + sourceSize + {64,64} + + 313.png.pvr.png + + frame + {{2,346},{44,62}} + offset + {-8,32} + rotated + + sourceColorRect + {{2,1},{44,62}} + sourceSize + {64,128} + + 314.png.pvr.png + + frame + {{212,2},{52,58}} + offset + {-4,1} + rotated + + sourceColorRect + {{2,2},{52,58}} + sourceSize + {64,64} + + 315.png.pvr.png + + frame + {{374,100},{52,54}} + offset + {-4,3} + rotated + + sourceColorRect + {{2,2},{52,54}} + sourceSize + {64,64} + + 320.png.pvr.png + + frame + {{316,2},{56,54}} + offset + {-3,3} + rotated + + sourceColorRect + {{1,2},{56,54}} + sourceSize + {64,64} + + 321.png.pvr.png + + frame + {{208,126},{58,56}} + offset + {-2,3} + rotated + + sourceColorRect + {{1,1},{58,56}} + sourceSize + {64,64} + + 322.png.pvr.png + + frame + {{266,2},{48,58}} + offset + {-6,2} + rotated + + sourceColorRect + {{2,1},{48,58}} + sourceSize + {64,64} + + 323.png.pvr.png + + frame + {{2,100},{54,92}} + offset + {-3,16} + rotated + + sourceColorRect + {{2,2},{54,92}} + sourceSize + {64,128} + + 324.png.pvr.png + + frame + {{52,2},{54,84}} + offset + {-3,21} + rotated + + sourceColorRect + {{2,1},{54,84}} + sourceSize + {64,128} + + 325.png.pvr.png + + frame + {{268,62},{56,54}} + offset + {-3,3} + rotated + + sourceColorRect + {{1,2},{56,54}} + sourceSize + {64,64} + + 330.png.pvr.png + + frame + {{366,348},{46,48}} + offset + {-7,7} + rotated + + sourceColorRect + {{2,1},{46,48}} + sourceSize + {64,64} + + 331.png.pvr.png + + frame + {{106,388},{58,48}} + offset + {-2,6} + rotated + + sourceColorRect + {{1,2},{58,48}} + sourceSize + {64,64} + + 332.png.pvr.png + + frame + {{264,360},{48,54}} + offset + {-6,3} + rotated + + sourceColorRect + {{2,2},{48,54}} + sourceSize + {64,64} + + 333.png.pvr.png + + frame + {{2,2},{48,96}} + offset + {-7,14} + rotated + + sourceColorRect + {{1,2},{48,96}} + sourceSize + {64,128} + + 334.png.pvr.png + + frame + {{2,194},{46,80}} + offset + {-7,22} + rotated + + sourceColorRect + {{2,2},{46,80}} + sourceSize + {64,128} + + 335.png.pvr.png + + frame + {{58,88},{46,64}} + offset + {-7,30} + rotated + + sourceColorRect + {{2,2},{46,64}} + sourceSize + {64,128} + + 340.png.pvr.png + + frame + {{430,206},{52,46}} + offset + {-4,7} + rotated + + sourceColorRect + {{2,2},{52,46}} + sourceSize + {64,64} + + 341.png.pvr.png + + frame + {{318,408},{50,50}} + offset + {-6,6} + rotated + + sourceColorRect + {{1,1},{50,50}} + sourceSize + {64,64} + + 342.png.pvr.png + + frame + {{280,240},{56,44}} + offset + {-2,8} + rotated + + sourceColorRect + {{2,2},{56,44}} + sourceSize + {64,64} + + 343.png.pvr.png + + frame + {{2,276},{60,68}} + offset + {0,28} + rotated + + sourceColorRect + {{2,2},{60,68}} + sourceSize + {64,128} + + 344.png.pvr.png + + frame + {{50,194},{50,68}} + offset + {-5,28} + rotated + + sourceColorRect + {{2,2},{50,68}} + sourceSize + {64,128} + + 345.png.pvr.png + + frame + {{48,346},{60,56}} + offset + {0,3} + rotated + + sourceColorRect + {{2,1},{60,56}} + sourceSize + {64,64} + + 500.png.pvr.png + + frame + {{368,460},{50,46}} + offset + {-6,7} + rotated + + sourceColorRect + {{1,2},{50,46}} + sourceSize + {64,64} + + + metadata + + format + 2 + realTextureFileName + sr.png + size + {512,512} + smartupdate + $TexturePacker:SmartUpdate:3e97692bd07f4604a15638889e17b181$ + textureFileName + sr.png + + + diff --git a/cc_moba/assets/resources/sr.plist.meta b/cc_moba/assets/resources/sr.plist.meta new file mode 100644 index 0000000..5e7cc19 --- /dev/null +++ b/cc_moba/assets/resources/sr.plist.meta @@ -0,0 +1,1464 @@ +{ + "ver": "1.2.4", + "uuid": "d6995c6c-dd32-420e-8784-5d6c230613b2", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "size": { + "width": 512, + "height": 512 + }, + "type": "Texture Packer", + "subMetas": { + "100.png.pvr.png": { + "ver": "1.0.3", + "uuid": "334700c7-437c-4a36-9628-0e64524d5a83", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -4, + "offsetY": 5, + "trimX": 264, + "trimY": 416, + "width": 52, + "height": 52, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "110.png.pvr.png": { + "ver": "1.0.3", + "uuid": "850227e7-820d-4154-b271-941a143f0499", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 4, + "trimX": 428, + "trimY": 154, + "width": 50, + "height": 54, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "120.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a52272a4-3b82-497e-9bec-dc28a21033fa", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 3, + "trimX": 156, + "trimY": 442, + "width": 56, + "height": 54, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "130.png.pvr.png": { + "ver": "1.0.3", + "uuid": "beefbd61-6f96-495c-a45c-9bad65755ecf", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 7, + "trimX": 318, + "trimY": 460, + "width": 50, + "height": 48, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "140.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4d774a21-be56-4b06-9dea-f7fb6d9cba5e", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -4, + "offsetY": 7, + "trimX": 430, + "trimY": 254, + "width": 52, + "height": 46, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "200.png.pvr.png": { + "ver": "1.0.3", + "uuid": "68808199-9b4e-42c5-aac9-e2caaf6b1a96", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": 6, + "trimX": 106, + "trimY": 326, + "width": 60, + "height": 48, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "201.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4a53037e-b0c9-4bc5-9710-884f8dfdfbf2", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 3, + "trimX": 204, + "trimY": 324, + "width": 56, + "height": 54, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "202.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b19aab19-bd38-41f8-81c3-2dd4cd990dbf", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -3, + "offsetY": 5, + "trimX": 212, + "trimY": 440, + "width": 56, + "height": 50, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "203.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ee342e14-d0ad-4926-845c-94b3615e5f38", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": 6, + "trimX": 106, + "trimY": 448, + "width": 58, + "height": 48, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "204.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e2211729-f475-4823-b82d-24e7b962d33e", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -4, + "offsetY": 4, + "trimX": 420, + "trimY": 46, + "width": 54, + "height": 52, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "205.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a60ee8eb-085f-4268-8878-dff1437188fa", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -3, + "offsetY": 7, + "trimX": 372, + "trimY": 2, + "width": 56, + "height": 46, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "210.png.pvr.png": { + "ver": "1.0.3", + "uuid": "df4b6783-3bdf-440a-a417-01a09d6d65fc", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -5, + "offsetY": 3, + "trimX": 212, + "trimY": 382, + "width": 50, + "height": 56, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "211.png.pvr.png": { + "ver": "1.0.3", + "uuid": "58fe6584-5e5f-4816-8948-a128bb81a419", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -3, + "offsetY": 3, + "trimX": 266, + "trimY": 124, + "width": 54, + "height": 56, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "212.png.pvr.png": { + "ver": "1.0.3", + "uuid": "267a6dde-e9ea-4834-ba5d-1855b099f10c", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -2, + "offsetY": 1, + "trimX": 122, + "trimY": 264, + "width": 56, + "height": 58, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "213.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ef67e191-e7c0-4990-82e9-f434c77cfe21", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 0, + "trimX": 46, + "trimY": 410, + "width": 58, + "height": 60, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "214.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0de68375-c696-4b4a-9c42-56ec3f63a030", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -5, + "offsetY": 1, + "trimX": 108, + "trimY": 2, + "width": 50, + "height": 60, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "215.png.pvr.png": { + "ver": "1.0.3", + "uuid": "eeed462e-51b3-473e-8ff0-3c8f50488c02", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -5, + "offsetY": 3, + "trimX": 228, + "trimY": 244, + "width": 50, + "height": 56, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "220.png.pvr.png": { + "ver": "1.0.3", + "uuid": "91247228-5787-4cb3-9808-201e58cce0ef", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -10, + "offsetY": 2, + "trimX": 420, + "trimY": 2, + "width": 42, + "height": 56, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "221.png.pvr.png": { + "ver": "1.0.3", + "uuid": "87479250-f2b3-424f-8ab7-e19ce5dcbf30", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -7, + "offsetY": 1, + "trimX": 156, + "trimY": 324, + "width": 46, + "height": 58, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "222.png.pvr.png": { + "ver": "1.0.3", + "uuid": "05d41478-20dd-4cb5-9f81-b4140e8b7100", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 0, + "trimX": 102, + "trimY": 216, + "width": 46, + "height": 60, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "223.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a1f0e0b7-dd28-4ab1-9a50-4d67aec22deb", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -9, + "offsetY": 31, + "trimX": 2, + "trimY": 410, + "width": 42, + "height": 62, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "224.png.pvr.png": { + "ver": "1.0.3", + "uuid": "911366a0-ce64-4915-8002-8db5bfcd289c", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -6, + "offsetY": 2, + "trimX": 260, + "trimY": 302, + "width": 48, + "height": 56, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "225.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c70f18fb-c111-4fe1-be4e-6f8cd66796b2", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -7, + "offsetY": 4, + "trimX": 310, + "trimY": 298, + "width": 46, + "height": 54, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "230.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d14c6b00-b02c-47ce-af9f-c633a3985d7d", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 5, + "trimX": 160, + "trimY": 2, + "width": 60, + "height": 50, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "231.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a40692d9-ccc8-46e4-9b51-eca43e0697a5", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 6, + "trimX": 380, + "trimY": 206, + "width": 52, + "height": 48, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "232.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f57ef910-300c-4861-a038-ce63c2585ef6", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -4, + "offsetY": 4, + "trimX": 326, + "trimY": 240, + "width": 52, + "height": 52, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "233.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f6bb50d1-95d1-419c-8a0a-ce74f1d8ac3f", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -3, + "offsetY": 3, + "trimX": 222, + "trimY": 186, + "width": 56, + "height": 56, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "234.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d210c38c-0449-4ea3-a219-d768b78fe68b", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 2, + "trimX": 210, + "trimY": 64, + "width": 58, + "height": 56, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "235.png.pvr.png": { + "ver": "1.0.3", + "uuid": "65728483-8d48-4bbd-bed1-191a0babe37b", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 4, + "trimX": 106, + "trimY": 88, + "width": 60, + "height": 52, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "240.png.pvr.png": { + "ver": "1.0.3", + "uuid": "271193a9-32b8-4501-b3b8-ea36bfb02811", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": 7, + "trimX": 160, + "trimY": 64, + "width": 60, + "height": 48, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "241.png.pvr.png": { + "ver": "1.0.3", + "uuid": "85803340-38ec-4bb9-a267-7c4510e446e7", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -2, + "offsetY": 5, + "trimX": 164, + "trimY": 212, + "width": 56, + "height": 50, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "242.png.pvr.png": { + "ver": "1.0.3", + "uuid": "8ad6cc79-b0aa-473f-9a10-e6138b424a2f", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -3, + "offsetY": 7, + "trimX": 324, + "trimY": 60, + "width": 56, + "height": 48, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "243.png.pvr.png": { + "ver": "1.0.3", + "uuid": "27e5c444-217f-4c85-850e-1dd4a4405827", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": 7, + "trimX": 180, + "trimY": 264, + "width": 58, + "height": 46, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "244.png.pvr.png": { + "ver": "1.0.3", + "uuid": "1b9511b3-9e13-4427-b564-7a336a827504", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -4, + "offsetY": 5, + "trimX": 372, + "trimY": 154, + "width": 54, + "height": 50, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "245.png.pvr.png": { + "ver": "1.0.3", + "uuid": "7a915ed8-1175-4d7d-a649-ec47d54fd142", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -3, + "offsetY": 6, + "trimX": 322, + "trimY": 120, + "width": 56, + "height": 48, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "300.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e8268b4b-24c6-48e6-a2bd-dc56a69b2f75", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -4, + "offsetY": 5, + "trimX": 314, + "trimY": 354, + "width": 52, + "height": 50, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "301.png.pvr.png": { + "ver": "1.0.3", + "uuid": "8c11eaa2-aa8a-46aa-860f-8b5bc9dc5c70", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -6, + "offsetY": 7, + "trimX": 368, + "trimY": 460, + "width": 50, + "height": 46, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "302.png.pvr.png": { + "ver": "1.0.3", + "uuid": "48d11d47-9c66-44c3-8269-18ec54dad94a", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 6, + "trimX": 280, + "trimY": 182, + "width": 56, + "height": 48, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "303.png.pvr.png": { + "ver": "1.0.3", + "uuid": "91fb638c-f249-42f5-a6cb-86fd73b286a0", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 2, + "trimX": 64, + "trimY": 264, + "width": 60, + "height": 56, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "304.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c93f9d81-1142-4c22-bde0-513697712044", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -5, + "offsetY": 1, + "trimX": 156, + "trimY": 150, + "width": 50, + "height": 60, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "305.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f00e54be-a4e3-4a9f-b29c-7d555e7a2893", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 5, + "trimX": 102, + "trimY": 154, + "width": 60, + "height": 52, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "310.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b4087949-4823-495a-9268-58ef0e227dac", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -4, + "offsetY": 4, + "trimX": 430, + "trimY": 100, + "width": 52, + "height": 54, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "311.png.pvr.png": { + "ver": "1.0.3", + "uuid": "79d7d125-82ab-496a-b408-41c8a7dc60fd", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -3, + "offsetY": 4, + "trimX": 156, + "trimY": 384, + "width": 56, + "height": 54, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "312.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3d859a16-3f33-4483-8d2d-d8f9a75d5eaa", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -7, + "offsetY": 4, + "trimX": 358, + "trimY": 294, + "width": 48, + "height": 52, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "313.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ebf9bd13-f3a6-4841-a6e0-691b7a9c33f3", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -8, + "offsetY": 32, + "trimX": 2, + "trimY": 346, + "width": 44, + "height": 62, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "314.png.pvr.png": { + "ver": "1.0.3", + "uuid": "148bdc90-0937-4169-b2f3-8b6cff97cffe", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -4, + "offsetY": 1, + "trimX": 212, + "trimY": 2, + "width": 52, + "height": 58, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "315.png.pvr.png": { + "ver": "1.0.3", + "uuid": "fe8a0d3a-4407-4706-9824-6daea35be292", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -4, + "offsetY": 3, + "trimX": 374, + "trimY": 100, + "width": 52, + "height": 54, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "320.png.pvr.png": { + "ver": "1.0.3", + "uuid": "58c1e512-a967-418d-b5bb-6af4949b2291", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -3, + "offsetY": 3, + "trimX": 316, + "trimY": 2, + "width": 56, + "height": 54, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "321.png.pvr.png": { + "ver": "1.0.3", + "uuid": "fcb5a5d8-cd75-4b19-af1a-50ebf2f74576", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 3, + "trimX": 208, + "trimY": 126, + "width": 58, + "height": 56, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "322.png.pvr.png": { + "ver": "1.0.3", + "uuid": "9da0e7ee-5970-48f8-8a4c-3c1aaafa90ae", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -6, + "offsetY": 2, + "trimX": 266, + "trimY": 2, + "width": 48, + "height": 58, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "323.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f208eaab-e4d5-49d0-946f-8b073224a370", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -3, + "offsetY": 16, + "trimX": 2, + "trimY": 100, + "width": 54, + "height": 92, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "324.png.pvr.png": { + "ver": "1.0.3", + "uuid": "61734c26-665e-41ff-a6fb-234c4d427674", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -3, + "offsetY": 21, + "trimX": 52, + "trimY": 2, + "width": 54, + "height": 84, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "325.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e2b1f450-72c4-4c94-b903-772c1f65d5b5", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -3, + "offsetY": 3, + "trimX": 268, + "trimY": 62, + "width": 56, + "height": 54, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "330.png.pvr.png": { + "ver": "1.0.3", + "uuid": "5217e837-ade2-4b51-8d88-c12ec1098345", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -7, + "offsetY": 7, + "trimX": 366, + "trimY": 348, + "width": 46, + "height": 48, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "331.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e780f2a4-4a4a-4b7c-801e-41a2a324d4b1", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 6, + "trimX": 106, + "trimY": 388, + "width": 58, + "height": 48, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "332.png.pvr.png": { + "ver": "1.0.3", + "uuid": "91ce55d5-6817-4c83-b239-1b0bb3fa7fa6", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -6, + "offsetY": 3, + "trimX": 264, + "trimY": 360, + "width": 48, + "height": 54, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "333.png.pvr.png": { + "ver": "1.0.3", + "uuid": "87ac9b08-4661-436c-8d98-1b770adf8581", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -7, + "offsetY": 14, + "trimX": 2, + "trimY": 2, + "width": 48, + "height": 96, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "334.png.pvr.png": { + "ver": "1.0.3", + "uuid": "375f8d64-417d-427b-8960-e25a10668f13", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -7, + "offsetY": 22, + "trimX": 2, + "trimY": 194, + "width": 46, + "height": 80, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "335.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ada8603e-4973-4c10-a990-9ed9b2e344f4", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -7, + "offsetY": 30, + "trimX": 58, + "trimY": 88, + "width": 46, + "height": 64, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "340.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a000c880-936e-42f5-b28e-c8f8348c680a", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -4, + "offsetY": 7, + "trimX": 430, + "trimY": 206, + "width": 52, + "height": 46, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "341.png.pvr.png": { + "ver": "1.0.3", + "uuid": "273d3888-21e6-4893-9576-385216bd0669", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -6, + "offsetY": 6, + "trimX": 318, + "trimY": 408, + "width": 50, + "height": 50, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "342.png.pvr.png": { + "ver": "1.0.3", + "uuid": "2b791ef1-188a-43fd-ba42-5bc035909631", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 8, + "trimX": 280, + "trimY": 240, + "width": 56, + "height": 44, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "343.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d3b09628-d63f-4d66-8d27-68db696fd35b", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 28, + "trimX": 2, + "trimY": 276, + "width": 60, + "height": 68, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "344.png.pvr.png": { + "ver": "1.0.3", + "uuid": "12710718-55cd-4f26-88e4-9b31a60ac697", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -5, + "offsetY": 28, + "trimX": 50, + "trimY": 194, + "width": 50, + "height": 68, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "345.png.pvr.png": { + "ver": "1.0.3", + "uuid": "eba982c3-4ad5-456e-a2a2-57fb7626f404", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 3, + "trimX": 48, + "trimY": 346, + "width": 60, + "height": 56, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "500.png.pvr.png": { + "ver": "1.0.3", + "uuid": "df0441b7-67ae-4fc0-be78-4619d963ec70", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -6, + "offsetY": 7, + "trimX": 368, + "trimY": 460, + "width": 50, + "height": 46, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/resources/sr.png b/cc_moba/assets/resources/sr.png new file mode 100644 index 0000000..86b4036 Binary files /dev/null and b/cc_moba/assets/resources/sr.png differ diff --git a/cc_moba/assets/resources/sr.png.meta b/cc_moba/assets/resources/sr.png.meta new file mode 100644 index 0000000..5b19824 --- /dev/null +++ b/cc_moba/assets/resources/sr.png.meta @@ -0,0 +1,30 @@ +{ + "ver": "1.0.0", + "uuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "subMetas": { + "sr": { + "ver": "1.0.3", + "uuid": "f5dd9425-08a5-4741-8a0f-3b7be99735c9", + "rawTextureUuid": "c69c3522-098f-4397-9080-fba1388a7a61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -13.5, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 481, + "height": 508, + "rawWidth": 512, + "rawHeight": 512, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/resources/xueren.plist b/cc_moba/assets/resources/xueren.plist new file mode 100644 index 0000000..c6481cf --- /dev/null +++ b/cc_moba/assets/resources/xueren.plist @@ -0,0 +1,1322 @@ + + + + + frames + + 100.png.pvr.png + + frame + {{134,224},{66,76}} + offset + {-29,25} + rotated + + sourceColorRect + {{2,1},{66,76}} + sourceSize + {128,128} + + 101.png.pvr.png + + frame + {{324,2},{68,78}} + offset + {-28,23} + rotated + + sourceColorRect + {{2,2},{68,78}} + sourceSize + {128,128} + + 102.png.pvr.png + + frame + {{564,2},{66,78}} + offset + {-29,24} + rotated + + sourceColorRect + {{2,1},{66,78}} + sourceSize + {128,128} + + 103.png.pvr.png + + frame + {{374,72},{64,74}} + offset + {-30,25} + rotated + + sourceColorRect + {{2,2},{64,74}} + sourceSize + {128,128} + + 104.png.pvr.png + + frame + {{158,150},{64,72}} + offset + {-30,26} + rotated + + sourceColorRect + {{2,2},{64,72}} + sourceSize + {128,128} + + 105.png.pvr.png + + frame + {{854,60},{66,74}} + offset + {-30,26} + rotated + + sourceColorRect + {{1,1},{66,74}} + sourceSize + {128,128} + + 110.png.pvr.png + + frame + {{880,212},{62,74}} + offset + {-31,25} + rotated + + sourceColorRect + {{2,2},{62,74}} + sourceSize + {128,128} + + 111.png.pvr.png + + frame + {{728,68},{68,74}} + offset + {-29,25} + rotated + + sourceColorRect + {{1,2},{68,74}} + sourceSize + {128,128} + + 112.png.pvr.png + + frame + {{440,70},{70,74}} + offset + {-28,26} + rotated + + sourceColorRect + {{1,1},{70,74}} + sourceSize + {128,128} + + 113.png.pvr.png + + frame + {{138,372},{66,72}} + offset + {-30,26} + rotated + + sourceColorRect + {{1,2},{66,72}} + sourceSize + {128,128} + + 114.png.pvr.png + + frame + {{564,296},{60,72}} + offset + {0,26} + rotated + + sourceColorRect + {{2,2},{60,72}} + sourceSize + {64,128} + + 115.png.pvr.png + + frame + {{266,224},{60,74}} + offset + {-1,26} + rotated + + sourceColorRect + {{1,1},{60,74}} + sourceSize + {64,128} + + 120.png.pvr.png + + frame + {{762,358},{50,72}} + offset + {-5,26} + rotated + + sourceColorRect + {{2,2},{50,72}} + sourceSize + {64,128} + + 121.png.pvr.png + + frame + {{512,222},{56,72}} + offset + {-3,26} + rotated + + sourceColorRect + {{1,2},{56,72}} + sourceSize + {64,128} + + 122.png.pvr.png + + frame + {{758,410},{58,72}} + offset + {-1,26} + rotated + + sourceColorRect + {{2,2},{58,72}} + sourceSize + {64,128} + + 123.png.pvr.png + + frame + {{430,148},{56,72}} + offset + {-2,27} + rotated + + sourceColorRect + {{2,1},{56,72}} + sourceSize + {64,128} + + 124.png.pvr.png + + frame + {{760,144},{50,72}} + offset + {-5,26} + rotated + + sourceColorRect + {{2,2},{50,72}} + sourceSize + {64,128} + + 125.png.pvr.png + + frame + {{812,144},{48,72}} + offset + {-6,26} + rotated + + sourceColorRect + {{2,2},{48,72}} + sourceSize + {64,128} + + 130.png.pvr.png + + frame + {{930,132},{56,74}} + offset + {-2,26} + rotated + + sourceColorRect + {{2,1},{56,74}} + sourceSize + {64,128} + + 131.png.pvr.png + + frame + {{570,218},{58,74}} + offset + {-1,25} + rotated + + sourceColorRect + {{2,2},{58,74}} + sourceSize + {64,128} + + 132.png.pvr.png + + frame + {{766,218},{56,74}} + offset + {-2,25} + rotated + + sourceColorRect + {{2,2},{56,74}} + sourceSize + {64,128} + + 133.png.pvr.png + + frame + {{922,56},{54,74}} + offset + {-3,25} + rotated + + sourceColorRect + {{2,2},{54,74}} + sourceSize + {64,128} + + 134.png.pvr.png + + frame + {{824,218},{54,74}} + offset + {-3,26} + rotated + + sourceColorRect + {{2,1},{54,74}} + sourceSize + {64,128} + + 135.png.pvr.png + + frame + {{944,208},{54,72}} + offset + {-3,26} + rotated + + sourceColorRect + {{2,2},{54,72}} + sourceSize + {64,128} + + 140.png.pvr.png + + frame + {{956,350},{66,66}} + offset + {-29,29} + rotated + + sourceColorRect + {{2,2},{66,66}} + sourceSize + {128,128} + + 141.png.pvr.png + + frame + {{284,372},{68,66}} + offset + {-28,29} + rotated + + sourceColorRect + {{2,2},{68,66}} + sourceSize + {128,128} + + 142.png.pvr.png + + frame + {{418,434},{66,68}} + offset + {-29,28} + rotated + + sourceColorRect + {{2,2},{66,68}} + sourceSize + {128,128} + + 143.png.pvr.png + + frame + {{134,302},{66,68}} + offset + {-30,29} + rotated + + sourceColorRect + {{1,1},{66,68}} + sourceSize + {128,128} + + 144.png.pvr.png + + frame + {{564,370},{64,68}} + offset + {-30,29} + rotated + + sourceColorRect + {{2,1},{64,68}} + sourceSize + {128,128} + + 145.png.pvr.png + + frame + {{836,294},{64,66}} + offset + {-30,30} + rotated + + sourceColorRect + {{2,1},{64,66}} + sourceSize + {128,128} + + 200.png.pvr.png + + frame + {{418,366},{66,70}} + offset + {-29,27} + rotated + + sourceColorRect + {{2,2},{66,70}} + sourceSize + {128,128} + + 201.png.pvr.png + + frame + {{698,218},{66,74}} + offset + {-29,25} + rotated + + sourceColorRect + {{2,2},{66,74}} + sourceSize + {128,128} + + 202.png.pvr.png + + frame + {{302,72},{70,74}} + offset + {-27,25} + rotated + + sourceColorRect + {{2,2},{70,74}} + sourceSize + {128,128} + + 203.png.pvr.png + + frame + {{348,440},{70,68}} + offset + {-28,28} + rotated + + sourceColorRect + {{1,2},{70,68}} + sourceSize + {128,128} + + 204.png.pvr.png + + frame + {{692,146},{66,70}} + offset + {-30,27} + rotated + + sourceColorRect + {{1,2},{66,70}} + sourceSize + {128,128} + + 205.png.pvr.png + + frame + {{630,218},{66,74}} + offset + {-29,26} + rotated + + sourceColorRect + {{2,1},{66,74}} + sourceSize + {128,128} + + 206.png.pvr.png + + frame + {{230,72},{70,74}} + offset + {-27,26} + rotated + + sourceColorRect + {{2,1},{70,74}} + sourceSize + {128,128} + + 207.png.pvr.png + + frame + {{278,440},{70,68}} + offset + {-28,28} + rotated + + sourceColorRect + {{1,2},{70,68}} + sourceSize + {128,128} + + 210.png.pvr.png + + frame + {{492,296},{70,68}} + offset + {-27,28} + rotated + + sourceColorRect + {{2,2},{70,68}} + sourceSize + {128,128} + + 211.png.pvr.png + + frame + {{206,440},{70,70}} + offset + {-27,27} + rotated + + sourceColorRect + {{2,2},{70,70}} + sourceSize + {128,128} + + 212.png.pvr.png + + frame + {{862,136},{74,66}} + offset + {-25,29} + rotated + + sourceColorRect + {{2,2},{74,66}} + sourceSize + {128,128} + + 213.png.pvr.png + + frame + {{722,2},{78,64}} + offset + {-24,30} + rotated + + sourceColorRect + {{1,2},{78,64}} + sourceSize + {128,128} + + 214.png.pvr.png + + frame + {{484,2},{78,66}} + offset + {-24,30} + rotated + + sourceColorRect + {{1,1},{78,66}} + sourceSize + {128,128} + + 215.png.pvr.png + + frame + {{244,2},{78,68}} + offset + {-24,28} + rotated + + sourceColorRect + {{1,2},{78,68}} + sourceSize + {128,128} + + 216.png.pvr.png + + frame + {{404,2},{78,66}} + offset + {-24,29} + rotated + + sourceColorRect + {{1,2},{78,66}} + sourceSize + {128,128} + + 217.png.pvr.png + + frame + {{344,296},{72,68}} + offset + {-26,28} + rotated + + sourceColorRect + {{2,2},{72,68}} + sourceSize + {128,128} + + 220.png.pvr.png + + frame + {{64,372},{66,72}} + offset + {-30,26} + rotated + + sourceColorRect + {{1,2},{66,72}} + sourceSize + {128,128} + + 221.png.pvr.png + + frame + {{418,296},{68,72}} + offset + {-28,26} + rotated + + sourceColorRect + {{2,2},{68,72}} + sourceSize + {128,128} + + 222.png.pvr.png + + frame + {{618,146},{70,72}} + offset + {-27,26} + rotated + + sourceColorRect + {{2,2},{70,72}} + sourceSize + {128,128} + + 223.png.pvr.png + + frame + {{586,70},{72,72}} + offset + {-26,27} + rotated + + sourceColorRect + {{2,1},{72,72}} + sourceSize + {128,128} + + 224.png.pvr.png + + frame + {{80,150},{76,72}} + offset + {-24,27} + rotated + + sourceColorRect + {{2,1},{76,72}} + sourceSize + {128,128} + + 225.png.pvr.png + + frame + {{84,76},{76,72}} + offset + {-25,27} + rotated + + sourceColorRect + {{1,1},{76,72}} + sourceSize + {128,128} + + 226.png.pvr.png + + frame + {{546,144},{70,72}} + offset + {-27,26} + rotated + + sourceColorRect + {{2,2},{70,72}} + sourceSize + {128,128} + + 227.png.pvr.png + + frame + {{162,76},{66,72}} + offset + {-30,26} + rotated + + sourceColorRect + {{1,2},{66,72}} + sourceSize + {128,128} + + 230.png.pvr.png + + frame + {{134,440},{70,70}} + offset + {-28,27} + rotated + + sourceColorRect + {{1,2},{70,70}} + sourceSize + {128,128} + + 231.png.pvr.png + + frame + {{62,440},{70,70}} + offset + {-27,27} + rotated + + sourceColorRect + {{2,2},{70,70}} + sourceSize + {128,128} + + 232.png.pvr.png + + frame + {{762,294},{62,72}} + offset + {-31,26} + rotated + + sourceColorRect + {{2,2},{62,72}} + sourceSize + {128,128} + + 233.png.pvr.png + + frame + {{798,68},{54,74}} + offset + {-3,26} + rotated + + sourceColorRect + {{2,1},{54,74}} + sourceSize + {64,128} + + 234.png.pvr.png + + frame + {{626,294},{62,72}} + offset + {-31,26} + rotated + + sourceColorRect + {{2,2},{62,72}} + sourceSize + {128,128} + + 235.png.pvr.png + + frame + {{224,150},{60,72}} + offset + {0,27} + rotated + + sourceColorRect + {{2,1},{60,72}} + sourceSize + {64,128} + + 236.png.pvr.png + + frame + {{902,288},{52,72}} + offset + {-4,27} + rotated + + sourceColorRect + {{2,1},{52,72}} + sourceSize + {64,128} + + 237.png.pvr.png + + frame + {{490,366},{62,72}} + offset + {-32,26} + rotated + + sourceColorRect + {{1,2},{62,72}} + sourceSize + {128,128} + + 240.png.pvr.png + + frame + {{956,282},{66,66}} + offset + {-29,29} + rotated + + sourceColorRect + {{2,2},{66,66}} + sourceSize + {128,128} + + 241.png.pvr.png + + frame + {{612,442},{66,66}} + offset + {-29,30} + rotated + + sourceColorRect + {{2,1},{66,66}} + sourceSize + {128,128} + + 242.png.pvr.png + + frame + {{212,372},{70,66}} + offset + {-27,29} + rotated + + sourceColorRect + {{2,2},{70,66}} + sourceSize + {128,128} + + 243.png.pvr.png + + frame + {{202,300},{70,70}} + offset + {-28,27} + rotated + + sourceColorRect + {{1,2},{70,70}} + sourceSize + {128,128} + + 244.png.pvr.png + + frame + {{690,360},{66,66}} + offset + {-30,29} + rotated + + sourceColorRect + {{1,2},{66,66}} + sourceSize + {128,128} + + 245.png.pvr.png + + frame + {{690,428},{66,64}} + offset + {-29,31} + rotated + + sourceColorRect + {{2,1},{66,64}} + sourceSize + {128,128} + + 246.png.pvr.png + + frame + {{690,294},{70,64}} + offset + {-28,30} + rotated + + sourceColorRect + {{1,2},{70,64}} + sourceSize + {128,128} + + 247.png.pvr.png + + frame + {{274,300},{70,68}} + offset + {-28,28} + rotated + + sourceColorRect + {{1,2},{70,68}} + sourceSize + {128,128} + + 300.png.pvr.png + + frame + {{66,226},{66,76}} + offset + {-29,25} + rotated + + sourceColorRect + {{2,1},{66,76}} + sourceSize + {128,128} + + 301.png.pvr.png + + frame + {{328,222},{70,72}} + offset + {-27,27} + rotated + + sourceColorRect + {{2,1},{70,72}} + sourceSize + {128,128} + + 302.png.pvr.png + + frame + {{354,366},{62,72}} + offset + {-31,26} + rotated + + sourceColorRect + {{2,2},{62,72}} + sourceSize + {128,128} + + 303.png.pvr.png + + frame + {{660,70},{66,74}} + offset + {-29,26} + rotated + + sourceColorRect + {{2,1},{66,74}} + sourceSize + {128,128} + + 304.png.pvr.png + + frame + {{890,2},{52,86}} + offset + {-5,19} + rotated + + sourceColorRect + {{1,2},{52,86}} + sourceSize + {64,128} + + 305.png.pvr.png + + frame + {{2,314},{60,82}} + offset + {0,21} + rotated + + sourceColorRect + {{2,2},{60,82}} + sourceSize + {64,128} + + 310.png.pvr.png + + frame + {{202,224},{62,74}} + offset + {-31,25} + rotated + + sourceColorRect + {{2,2},{62,74}} + sourceSize + {128,128} + + 311.png.pvr.png + + frame + {{630,368},{58,72}} + offset + {-2,27} + rotated + + sourceColorRect + {{1,1},{58,72}} + sourceSize + {64,128} + + 312.png.pvr.png + + frame + {{2,398},{58,82}} + offset + {-2,22} + rotated + + sourceColorRect + {{1,1},{58,82}} + sourceSize + {64,128} + + 313.png.pvr.png + + frame + {{802,2},{56,86}} + offset + {-2,20} + rotated + + sourceColorRect + {{2,1},{56,86}} + sourceSize + {64,128} + + 314.png.pvr.png + + frame + {{644,2},{66,76}} + offset + {-30,24} + rotated + + sourceColorRect + {{1,2},{66,76}} + sourceSize + {128,128} + + 315.png.pvr.png + + frame + {{358,148},{70,72}} + offset + {-27,26} + rotated + + sourceColorRect + {{2,2},{70,72}} + sourceSize + {128,128} + + 320.png.pvr.png + + frame + {{400,222},{50,72}} + offset + {-5,26} + rotated + + sourceColorRect + {{2,2},{50,72}} + sourceSize + {64,128} + + 321.png.pvr.png + + frame + {{836,362},{56,70}} + offset + {-2,27} + rotated + + sourceColorRect + {{2,2},{56,70}} + sourceSize + {64,128} + + 322.png.pvr.png + + frame + {{2,150},{76,74}} + offset + {-25,26} + rotated + + sourceColorRect + {{1,1},{76,74}} + sourceSize + {128,128} + + 323.png.pvr.png + + frame + {{2,226},{62,86}} + offset + {-31,20} + rotated + + sourceColorRect + {{2,1},{62,86}} + sourceSize + {128,128} + + 324.png.pvr.png + + frame + {{2,76},{80,72}} + offset + {-23,27} + rotated + + sourceColorRect + {{1,1},{80,72}} + sourceSize + {128,128} + + 325.png.pvr.png + + frame + {{286,148},{70,72}} + offset + {-27,26} + rotated + + sourceColorRect + {{2,2},{70,72}} + sourceSize + {128,128} + + 330.png.pvr.png + + frame + {{488,146},{56,74}} + offset + {-2,26} + rotated + + sourceColorRect + {{2,1},{56,74}} + sourceSize + {64,128} + + 331.png.pvr.png + + frame + {{86,2},{76,72}} + offset + {-24,27} + rotated + + sourceColorRect + {{2,1},{76,72}} + sourceSize + {128,128} + + 332.png.pvr.png + + frame + {{164,2},{78,68}} + offset + {-24,29} + rotated + + sourceColorRect + {{1,1},{78,68}} + sourceSize + {128,128} + + 333.png.pvr.png + + frame + {{2,2},{82,72}} + offset + {-21,27} + rotated + + sourceColorRect + {{2,1},{82,72}} + sourceSize + {128,128} + + 334.png.pvr.png + + frame + {{512,70},{72,72}} + offset + {-27,26} + rotated + + sourceColorRect + {{1,2},{72,72}} + sourceSize + {128,128} + + 335.png.pvr.png + + frame + {{452,222},{58,72}} + offset + {-2,27} + rotated + + sourceColorRect + {{1,1},{58,72}} + sourceSize + {64,128} + + 340.png.pvr.png + + frame + {{66,304},{66,66}} + offset + {-29,29} + rotated + + sourceColorRect + {{2,2},{66,66}} + sourceSize + {128,128} + + 341.png.pvr.png + + frame + {{486,440},{70,62}} + offset + {-27,32} + rotated + + sourceColorRect + {{2,1},{70,62}} + sourceSize + {128,128} + + 342.png.pvr.png + + frame + {{886,420},{60,62}} + offset + {-1,31} + rotated + + sourceColorRect + {{1,2},{60,62}} + sourceSize + {64,128} + + 343.png.pvr.png + + frame + {{818,420},{60,66}} + offset + {0,29} + rotated + + sourceColorRect + {{2,2},{60,66}} + sourceSize + {64,128} + + 344.png.pvr.png + + frame + {{948,418},{52,70}} + offset + {-5,27} + rotated + + sourceColorRect + {{1,2},{52,70}} + sourceSize + {64,128} + + 345.png.pvr.png + + frame + {{550,440},{60,70}} + offset + {0,27} + rotated + + sourceColorRect + {{2,2},{60,70}} + sourceSize + {64,128} + + + metadata + + format + 2 + realTextureFileName + xueren.png + size + {1024,512} + smartupdate + $TexturePacker:SmartUpdate:9defeb3d7b8a355d6576a747fad9f07c$ + textureFileName + xueren.png + + + diff --git a/cc_moba/assets/resources/xueren.plist.meta b/cc_moba/assets/resources/xueren.plist.meta new file mode 100644 index 0000000..1f22892 --- /dev/null +++ b/cc_moba/assets/resources/xueren.plist.meta @@ -0,0 +1,2212 @@ +{ + "ver": "1.2.4", + "uuid": "553964af-2e2f-43dd-9429-19654f74213c", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "size": { + "width": 1024, + "height": 512 + }, + "type": "Texture Packer", + "subMetas": { + "100.png.pvr.png": { + "ver": "1.0.3", + "uuid": "dcb8f828-87fd-4ca2-bf63-b5caa7d07bf6", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 25, + "trimX": 134, + "trimY": 224, + "width": 66, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "101.png.pvr.png": { + "ver": "1.0.3", + "uuid": "6d500c0c-1ed4-4654-a18e-e2d719862c88", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -28, + "offsetY": 23, + "trimX": 324, + "trimY": 2, + "width": 68, + "height": 78, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "102.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b2bb8fc0-68d6-4ae7-a0ab-3773abf26ed4", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -29, + "offsetY": 24, + "trimX": 564, + "trimY": 2, + "width": 66, + "height": 78, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "103.png.pvr.png": { + "ver": "1.0.3", + "uuid": "fcd07cae-9766-409b-a322-0aa04a2f247a", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -30, + "offsetY": 25, + "trimX": 374, + "trimY": 72, + "width": 64, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "104.png.pvr.png": { + "ver": "1.0.3", + "uuid": "772d93ab-6568-4368-ab1e-37c5b4975877", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -30, + "offsetY": 26, + "trimX": 158, + "trimY": 150, + "width": 64, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "105.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3a10a200-0f0b-494a-9045-9cc0fe5d6afb", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -30, + "offsetY": 26, + "trimX": 854, + "trimY": 60, + "width": 66, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "110.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4aed5e20-5fb2-4a3a-bf4d-3ee17867738e", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -31, + "offsetY": 25, + "trimX": 880, + "trimY": 212, + "width": 62, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "111.png.pvr.png": { + "ver": "1.0.3", + "uuid": "90ea3fab-4cda-43aa-b87b-d9468db53ce1", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 25, + "trimX": 728, + "trimY": 68, + "width": 68, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "112.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a2df2e08-eda9-4626-9d1b-e2615ce72164", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -28, + "offsetY": 26, + "trimX": 440, + "trimY": 70, + "width": 70, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "113.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4d4074d6-eb26-41dd-ad2d-c49efc51f216", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -30, + "offsetY": 26, + "trimX": 138, + "trimY": 372, + "width": 66, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "114.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0ffa7c0a-1ecc-410e-a81d-6b44d6ca7be9", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 26, + "trimX": 564, + "trimY": 296, + "width": 60, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "115.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4e6f457b-cabe-4e01-8b88-0e0ea6b1c9cb", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 26, + "trimX": 266, + "trimY": 224, + "width": 60, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "120.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c35d6b93-22ec-45c5-a18c-d653be452dd0", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 26, + "trimX": 762, + "trimY": 358, + "width": 50, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "121.png.pvr.png": { + "ver": "1.0.3", + "uuid": "9d7d2908-e79e-4590-97a3-9f3f13b2d639", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -3, + "offsetY": 26, + "trimX": 512, + "trimY": 222, + "width": 56, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "122.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0b9cb07b-f5f3-483a-a456-fe190f79c484", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 26, + "trimX": 758, + "trimY": 410, + "width": 58, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "123.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d74d2e10-fd30-4a89-bbb0-ab832fc7ea43", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -2, + "offsetY": 27, + "trimX": 430, + "trimY": 148, + "width": 56, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "124.png.pvr.png": { + "ver": "1.0.3", + "uuid": "bee2af1b-7985-4287-bc11-a94293b9402a", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -5, + "offsetY": 26, + "trimX": 760, + "trimY": 144, + "width": 50, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "125.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b3ba674e-ea68-4e57-9276-da6f86eb9e4e", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -6, + "offsetY": 26, + "trimX": 812, + "trimY": 144, + "width": 48, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "130.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a5c58c52-c009-4317-bf68-b099cd04db2e", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -2, + "offsetY": 26, + "trimX": 930, + "trimY": 132, + "width": 56, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "131.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4aae5d5d-c10d-4d6c-969a-aba7b5d7da0a", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 25, + "trimX": 570, + "trimY": 218, + "width": 58, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "132.png.pvr.png": { + "ver": "1.0.3", + "uuid": "9d84ad8c-352a-4fac-b5b3-2d4230da9f1d", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -2, + "offsetY": 25, + "trimX": 766, + "trimY": 218, + "width": 56, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "133.png.pvr.png": { + "ver": "1.0.3", + "uuid": "38e66ab8-f851-40d9-9688-8d65a1c5a212", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -3, + "offsetY": 25, + "trimX": 922, + "trimY": 56, + "width": 54, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "134.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4c335ef7-b946-441e-abcd-83fa3f6fb4ee", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -3, + "offsetY": 26, + "trimX": 824, + "trimY": 218, + "width": 54, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "135.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0ae1f859-3002-4491-bd23-e781fde08571", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -3, + "offsetY": 26, + "trimX": 944, + "trimY": 208, + "width": 54, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "140.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f510cada-36bc-49f0-b87a-f60995530b6a", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 29, + "trimX": 956, + "trimY": 350, + "width": 66, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "141.png.pvr.png": { + "ver": "1.0.3", + "uuid": "5885db46-b848-4329-966f-0d121fea023d", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -28, + "offsetY": 29, + "trimX": 284, + "trimY": 372, + "width": 68, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "142.png.pvr.png": { + "ver": "1.0.3", + "uuid": "50c38ec3-7856-4226-a2dc-796daf3e8e3b", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 28, + "trimX": 418, + "trimY": 434, + "width": 66, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "143.png.pvr.png": { + "ver": "1.0.3", + "uuid": "79b757c4-bdb0-468a-9d84-baa32ad53c3f", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -30, + "offsetY": 29, + "trimX": 134, + "trimY": 302, + "width": 66, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "144.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f45765c5-59d0-4c8b-b7ca-be4b7326a500", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -30, + "offsetY": 29, + "trimX": 564, + "trimY": 370, + "width": 64, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "145.png.pvr.png": { + "ver": "1.0.3", + "uuid": "41fcdc34-14d8-4acb-8d30-81bfe73e871c", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -30, + "offsetY": 30, + "trimX": 836, + "trimY": 294, + "width": 64, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "200.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e369088b-12e6-4bf3-bf48-5d17faa5b202", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -29, + "offsetY": 27, + "trimX": 418, + "trimY": 366, + "width": 66, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "201.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b524d3af-297a-45af-83c9-b0e986e56873", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 25, + "trimX": 698, + "trimY": 218, + "width": 66, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "202.png.pvr.png": { + "ver": "1.0.3", + "uuid": "47cb82cb-b8a1-4f2d-b35d-02d1379e44e2", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -27, + "offsetY": 25, + "trimX": 302, + "trimY": 72, + "width": 70, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "203.png.pvr.png": { + "ver": "1.0.3", + "uuid": "26c23cfa-2d61-49c6-95cd-02b4ef98235c", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -28, + "offsetY": 28, + "trimX": 348, + "trimY": 440, + "width": 70, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "204.png.pvr.png": { + "ver": "1.0.3", + "uuid": "72430ab4-8f23-4fd1-a3c2-e652fc8b90a0", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -30, + "offsetY": 27, + "trimX": 692, + "trimY": 146, + "width": 66, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "205.png.pvr.png": { + "ver": "1.0.3", + "uuid": "18950b47-ee6e-438d-b3dc-bd2bf39997c3", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 26, + "trimX": 630, + "trimY": 218, + "width": 66, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "206.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c0a28ede-0488-4be9-84fc-73649d874527", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -27, + "offsetY": 26, + "trimX": 230, + "trimY": 72, + "width": 70, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "207.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c687d57f-a19c-4760-b06c-1aee0297c39e", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -28, + "offsetY": 28, + "trimX": 278, + "trimY": 440, + "width": 70, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "210.png.pvr.png": { + "ver": "1.0.3", + "uuid": "7ca169b3-798b-44c7-a3cc-5bc7c77f0469", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -27, + "offsetY": 28, + "trimX": 492, + "trimY": 296, + "width": 70, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "211.png.pvr.png": { + "ver": "1.0.3", + "uuid": "aa388e26-f75a-4ad2-ab49-0b7312b56a47", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -27, + "offsetY": 27, + "trimX": 206, + "trimY": 440, + "width": 70, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "212.png.pvr.png": { + "ver": "1.0.3", + "uuid": "47ece854-dc39-4ad1-9c84-c25519ddd92c", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -25, + "offsetY": 29, + "trimX": 862, + "trimY": 136, + "width": 74, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "213.png.pvr.png": { + "ver": "1.0.3", + "uuid": "6ec82b6e-e745-48aa-8289-95a9c24308bf", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -24, + "offsetY": 30, + "trimX": 722, + "trimY": 2, + "width": 78, + "height": 64, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "214.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c4011d13-58a6-414b-8e0f-f35b2ad721d3", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -24, + "offsetY": 30, + "trimX": 484, + "trimY": 2, + "width": 78, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "215.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d47a4e14-d531-4709-b81b-3ad8143175e1", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -24, + "offsetY": 28, + "trimX": 244, + "trimY": 2, + "width": 78, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "216.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b772266e-4166-4dac-b3f3-ae055589ee26", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -24, + "offsetY": 29, + "trimX": 404, + "trimY": 2, + "width": 78, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "217.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0a0ad7b0-f770-4945-895d-4de8c2101d01", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -26, + "offsetY": 28, + "trimX": 344, + "trimY": 296, + "width": 72, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "220.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f56cc806-3301-4e3e-8880-090b13f5f2bf", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -30, + "offsetY": 26, + "trimX": 64, + "trimY": 372, + "width": 66, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "221.png.pvr.png": { + "ver": "1.0.3", + "uuid": "060f6b0a-4f40-44c0-9f6f-0d07845a8164", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -28, + "offsetY": 26, + "trimX": 418, + "trimY": 296, + "width": 68, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "222.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3b846e43-8f04-439e-a625-eb9bc53d9a6b", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -27, + "offsetY": 26, + "trimX": 618, + "trimY": 146, + "width": 70, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "223.png.pvr.png": { + "ver": "1.0.3", + "uuid": "2d26080d-ced8-4032-a6c9-3e84341e3efa", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -26, + "offsetY": 27, + "trimX": 586, + "trimY": 70, + "width": 72, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "224.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4e76c1b5-3b57-44e7-b4e8-e3de67d424e5", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -24, + "offsetY": 27, + "trimX": 80, + "trimY": 150, + "width": 76, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "225.png.pvr.png": { + "ver": "1.0.3", + "uuid": "61113b39-b526-469e-98ad-86dfdcd1db23", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -25, + "offsetY": 27, + "trimX": 84, + "trimY": 76, + "width": 76, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "226.png.pvr.png": { + "ver": "1.0.3", + "uuid": "075f05ee-d204-4cea-b805-10ec52b02476", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -27, + "offsetY": 26, + "trimX": 546, + "trimY": 144, + "width": 70, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "227.png.pvr.png": { + "ver": "1.0.3", + "uuid": "9f87ea41-aa8e-4676-8c9e-fc09cb131fb3", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -30, + "offsetY": 26, + "trimX": 162, + "trimY": 76, + "width": 66, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "230.png.pvr.png": { + "ver": "1.0.3", + "uuid": "1945fac3-d0c2-4b6e-927b-c77f029d9fa5", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -28, + "offsetY": 27, + "trimX": 134, + "trimY": 440, + "width": 70, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "231.png.pvr.png": { + "ver": "1.0.3", + "uuid": "bb5520d0-7cfc-4d04-90ba-780fd6293289", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -27, + "offsetY": 27, + "trimX": 62, + "trimY": 440, + "width": 70, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "232.png.pvr.png": { + "ver": "1.0.3", + "uuid": "eabd2146-de6e-41f8-970d-fe9e1f246adb", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -31, + "offsetY": 26, + "trimX": 762, + "trimY": 294, + "width": 62, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "233.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d7425ba2-1881-4d15-a920-c0d38c3c4d28", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -3, + "offsetY": 26, + "trimX": 798, + "trimY": 68, + "width": 54, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "234.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4be48dbe-444b-4222-8a90-95200c085d4f", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -31, + "offsetY": 26, + "trimX": 626, + "trimY": 294, + "width": 62, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "235.png.pvr.png": { + "ver": "1.0.3", + "uuid": "056d471b-8393-4ec5-a4d3-99bbe286841f", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 27, + "trimX": 224, + "trimY": 150, + "width": 60, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "236.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c20dc0d3-c0a5-474f-bb5c-ad110e1f65a3", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -4, + "offsetY": 27, + "trimX": 902, + "trimY": 288, + "width": 52, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "237.png.pvr.png": { + "ver": "1.0.3", + "uuid": "bdebdb72-3f18-480c-afcb-49362a8e38ff", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -32, + "offsetY": 26, + "trimX": 490, + "trimY": 366, + "width": 62, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "240.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f630def3-c1fe-45fb-9612-faf1939cd37f", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 29, + "trimX": 956, + "trimY": 282, + "width": 66, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "241.png.pvr.png": { + "ver": "1.0.3", + "uuid": "f5b5bf18-aaf3-4b52-9b81-0ae816e9abb1", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 30, + "trimX": 612, + "trimY": 442, + "width": 66, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "242.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d6ffff1f-2b2b-4a6f-935d-db33bf78f9bc", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -27, + "offsetY": 29, + "trimX": 212, + "trimY": 372, + "width": 70, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "243.png.pvr.png": { + "ver": "1.0.3", + "uuid": "5bdf06ad-2a0b-471f-b24b-c49f285901cb", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -28, + "offsetY": 27, + "trimX": 202, + "trimY": 300, + "width": 70, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "244.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a81d640f-f2ce-408e-9316-1a7d5f5babdd", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -30, + "offsetY": 29, + "trimX": 690, + "trimY": 360, + "width": 66, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "245.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b924f07b-613f-4621-8aed-1d7ee87879b2", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 31, + "trimX": 690, + "trimY": 428, + "width": 66, + "height": 64, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "246.png.pvr.png": { + "ver": "1.0.3", + "uuid": "fa22f0dc-b568-46d2-81c0-f1e395b03ccf", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -28, + "offsetY": 30, + "trimX": 690, + "trimY": 294, + "width": 70, + "height": 64, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "247.png.pvr.png": { + "ver": "1.0.3", + "uuid": "90fa56a8-4129-43e8-9171-1d73de6ea710", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -28, + "offsetY": 28, + "trimX": 274, + "trimY": 300, + "width": 70, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "300.png.pvr.png": { + "ver": "1.0.3", + "uuid": "40612d9c-80b5-4c3a-a0a8-289648ea4b4c", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 25, + "trimX": 66, + "trimY": 226, + "width": 66, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "301.png.pvr.png": { + "ver": "1.0.3", + "uuid": "6c1e3fa7-0fc2-4be2-96ed-7e12568e90ff", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -27, + "offsetY": 27, + "trimX": 328, + "trimY": 222, + "width": 70, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "302.png.pvr.png": { + "ver": "1.0.3", + "uuid": "1ee6c5d0-352f-4bd3-9008-187ed09a81fc", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -31, + "offsetY": 26, + "trimX": 354, + "trimY": 366, + "width": 62, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "303.png.pvr.png": { + "ver": "1.0.3", + "uuid": "6f06f8c1-cce7-4337-ac3e-856b4806f590", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 26, + "trimX": 660, + "trimY": 70, + "width": 66, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "304.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0913a234-c700-48b1-92c4-6b54ebe31212", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 19, + "trimX": 890, + "trimY": 2, + "width": 52, + "height": 86, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "305.png.pvr.png": { + "ver": "1.0.3", + "uuid": "722cc38b-c8ad-4676-840a-907df8c601da", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 21, + "trimX": 2, + "trimY": 314, + "width": 60, + "height": 82, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "310.png.pvr.png": { + "ver": "1.0.3", + "uuid": "957cbf3a-72ee-461e-a585-c217a270d862", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -31, + "offsetY": 25, + "trimX": 202, + "trimY": 224, + "width": 62, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "311.png.pvr.png": { + "ver": "1.0.3", + "uuid": "7f50e7d2-1c10-4aaa-a51e-dd025876a858", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -2, + "offsetY": 27, + "trimX": 630, + "trimY": 368, + "width": 58, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "312.png.pvr.png": { + "ver": "1.0.3", + "uuid": "6940393a-febf-4ce6-a38e-488e7fede3f3", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -2, + "offsetY": 22, + "trimX": 2, + "trimY": 398, + "width": 58, + "height": 82, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "313.png.pvr.png": { + "ver": "1.0.3", + "uuid": "9c7d8d27-6797-4700-9836-f44a31f5948f", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 20, + "trimX": 802, + "trimY": 2, + "width": 56, + "height": 86, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "314.png.pvr.png": { + "ver": "1.0.3", + "uuid": "2d140e7c-bd57-4601-a8a0-c84127aa76e8", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -30, + "offsetY": 24, + "trimX": 644, + "trimY": 2, + "width": 66, + "height": 76, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "315.png.pvr.png": { + "ver": "1.0.3", + "uuid": "60631545-5e38-4db1-bf61-b0e1970d7af1", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -27, + "offsetY": 26, + "trimX": 358, + "trimY": 148, + "width": 70, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "320.png.pvr.png": { + "ver": "1.0.3", + "uuid": "1de90a9a-15c1-424d-a25f-4b16df514404", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -5, + "offsetY": 26, + "trimX": 400, + "trimY": 222, + "width": 50, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "321.png.pvr.png": { + "ver": "1.0.3", + "uuid": "9feb8c40-deb8-4e80-9a52-2f5c76720fa0", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 27, + "trimX": 836, + "trimY": 362, + "width": 56, + "height": 70, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "322.png.pvr.png": { + "ver": "1.0.3", + "uuid": "6538cd12-de51-4765-b0d6-82d319263cd5", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -25, + "offsetY": 26, + "trimX": 2, + "trimY": 150, + "width": 76, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "323.png.pvr.png": { + "ver": "1.0.3", + "uuid": "81db4286-7e87-419d-87e3-f47873d2c39b", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -31, + "offsetY": 20, + "trimX": 2, + "trimY": 226, + "width": 62, + "height": 86, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "324.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c759328a-2eb9-4080-995a-fac3c7bff817", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -23, + "offsetY": 27, + "trimX": 2, + "trimY": 76, + "width": 80, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "325.png.pvr.png": { + "ver": "1.0.3", + "uuid": "09607078-5b90-4e52-94be-3b2301235d22", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -27, + "offsetY": 26, + "trimX": 286, + "trimY": 148, + "width": 70, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "330.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4f6f7767-1018-4456-b6bc-fbe6b060043c", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -2, + "offsetY": 26, + "trimX": 488, + "trimY": 146, + "width": 56, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "331.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4c7de2cc-592f-4f05-a1fa-b0ad96113b50", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -24, + "offsetY": 27, + "trimX": 86, + "trimY": 2, + "width": 76, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "332.png.pvr.png": { + "ver": "1.0.3", + "uuid": "102fc50f-ce7d-4b03-918d-61972d6b7efc", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -24, + "offsetY": 29, + "trimX": 164, + "trimY": 2, + "width": 78, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "333.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4bb0556c-2fdd-4965-8a1c-4667628d3ffb", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -21, + "offsetY": 27, + "trimX": 2, + "trimY": 2, + "width": 82, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "334.png.pvr.png": { + "ver": "1.0.3", + "uuid": "bca28ba7-4d67-4c81-ab04-8b20ec43d853", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -27, + "offsetY": 26, + "trimX": 512, + "trimY": 70, + "width": 72, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "335.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e3440809-f8fe-4857-811c-70e7b512654d", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -2, + "offsetY": 27, + "trimX": 452, + "trimY": 222, + "width": 58, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "340.png.pvr.png": { + "ver": "1.0.3", + "uuid": "31ccd740-0606-43bb-b4ae-9a114ea8e264", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -29, + "offsetY": 29, + "trimX": 66, + "trimY": 304, + "width": 66, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "341.png.pvr.png": { + "ver": "1.0.3", + "uuid": "94b3372e-cac7-40d0-a6d4-795e28409697", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -27, + "offsetY": 32, + "trimX": 486, + "trimY": 440, + "width": 70, + "height": 62, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "342.png.pvr.png": { + "ver": "1.0.3", + "uuid": "116e1ce5-6a2a-420c-aef4-d5186a799c47", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 31, + "trimX": 886, + "trimY": 420, + "width": 60, + "height": 62, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "343.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d3bb183d-6807-4df5-8027-6d520386a480", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 29, + "trimX": 818, + "trimY": 420, + "width": 60, + "height": 66, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "344.png.pvr.png": { + "ver": "1.0.3", + "uuid": "83239eb2-bf23-4115-9c7c-3d13d19a8c11", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 27, + "trimX": 948, + "trimY": 418, + "width": 52, + "height": 70, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "345.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3c59097d-a287-4e41-84bf-5a3ab42daaec", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 27, + "trimX": 550, + "trimY": 440, + "width": 60, + "height": 70, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/resources/xueren.png b/cc_moba/assets/resources/xueren.png new file mode 100644 index 0000000..95dd1a4 Binary files /dev/null and b/cc_moba/assets/resources/xueren.png differ diff --git a/cc_moba/assets/resources/xueren.png.meta b/cc_moba/assets/resources/xueren.png.meta new file mode 100644 index 0000000..c92e582 --- /dev/null +++ b/cc_moba/assets/resources/xueren.png.meta @@ -0,0 +1,30 @@ +{ + "ver": "1.0.0", + "uuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "subMetas": { + "xueren": { + "ver": "1.0.3", + "uuid": "9675a4a9-0a13-49ca-9f9d-5def79a69d09", + "rawTextureUuid": "70c7ec95-ed30-4d56-93fb-47dc6eea2782", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 2, + "trimY": 2, + "width": 1020, + "height": 508, + "rawWidth": 1024, + "rawHeight": 512, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/resources/yw.plist b/cc_moba/assets/resources/yw.plist new file mode 100644 index 0000000..032bcba --- /dev/null +++ b/cc_moba/assets/resources/yw.plist @@ -0,0 +1,1192 @@ + + + + + frames + + 100.png.pvr.png + + frame + {{148,672},{46,70}} + offset + {-7,28} + rotated + + sourceColorRect + {{2,1},{46,70}} + sourceSize + {64,128} + + 101.png.pvr.png + + frame + {{222,646},{46,70}} + offset + {-7,28} + rotated + + sourceColorRect + {{2,1},{46,70}} + sourceSize + {64,128} + + 102.png.pvr.png + + frame + {{300,606},{46,70}} + offset + {-7,28} + rotated + + sourceColorRect + {{2,1},{46,70}} + sourceSize + {64,128} + + 103.png.pvr.png + + frame + {{142,768},{46,68}} + offset + {-7,28} + rotated + + sourceColorRect + {{2,2},{46,68}} + sourceSize + {64,128} + + 104.png.pvr.png + + frame + {{216,742},{46,68}} + offset + {-7,28} + rotated + + sourceColorRect + {{2,2},{46,68}} + sourceSize + {64,128} + + 105.png.pvr.png + + frame + {{290,702},{46,68}} + offset + {-7,28} + rotated + + sourceColorRect + {{2,2},{46,68}} + sourceSize + {64,128} + + 110.png.pvr.png + + frame + {{176,370},{46,78}} + offset + {-7,24} + rotated + + sourceColorRect + {{2,1},{46,78}} + sourceSize + {64,128} + + 111.png.pvr.png + + frame + {{258,342},{46,78}} + offset + {-7,24} + rotated + + sourceColorRect + {{2,1},{46,78}} + sourceSize + {64,128} + + 112.png.pvr.png + + frame + {{428,348},{46,78}} + offset + {-7,24} + rotated + + sourceColorRect + {{2,1},{46,78}} + sourceSize + {64,128} + + 113.png.pvr.png + + frame + {{348,338},{46,78}} + offset + {-7,24} + rotated + + sourceColorRect + {{2,1},{46,78}} + sourceSize + {64,128} + + 114.png.pvr.png + + frame + {{2,468},{46,76}} + offset + {-7,24} + rotated + + sourceColorRect + {{2,2},{46,76}} + sourceSize + {64,128} + + 115.png.pvr.png + + frame + {{430,300},{46,78}} + offset + {-8,24} + rotated + + sourceColorRect + {{1,1},{46,78}} + sourceSize + {64,128} + + 120.png.pvr.png + + frame + {{234,480},{44,74}} + offset + {-9,25} + rotated + + sourceColorRect + {{1,2},{44,74}} + sourceSize + {64,128} + + 121.png.pvr.png + + frame + {{412,448},{44,74}} + offset + {-9,25} + rotated + + sourceColorRect + {{1,2},{44,74}} + sourceSize + {64,128} + + 122.png.pvr.png + + frame + {{2,516},{44,74}} + offset + {-9,25} + rotated + + sourceColorRect + {{1,2},{44,74}} + sourceSize + {64,128} + + 123.png.pvr.png + + frame + {{78,534},{42,74}} + offset + {-9,25} + rotated + + sourceColorRect + {{2,2},{42,74}} + sourceSize + {64,128} + + 124.png.pvr.png + + frame + {{156,520},{42,74}} + offset + {-9,25} + rotated + + sourceColorRect + {{2,2},{42,74}} + sourceSize + {64,128} + + 125.png.pvr.png + + frame + {{80,488},{44,74}} + offset + {-9,25} + rotated + + sourceColorRect + {{1,2},{44,74}} + sourceSize + {64,128} + + 130.png.pvr.png + + frame + {{76,578},{48,72}} + offset + {-7,27} + rotated + + sourceColorRect + {{1,1},{48,72}} + sourceSize + {64,128} + + 131.png.pvr.png + + frame + {{378,542},{48,70}} + offset + {-7,27} + rotated + + sourceColorRect + {{1,2},{48,70}} + sourceSize + {64,128} + + 132.png.pvr.png + + frame + {{2,670},{48,70}} + offset + {-7,27} + rotated + + sourceColorRect + {{1,2},{48,70}} + sourceSize + {64,128} + + 133.png.pvr.png + + frame + {{154,564},{48,72}} + offset + {-7,27} + rotated + + sourceColorRect + {{1,1},{48,72}} + sourceSize + {64,128} + + 134.png.pvr.png + + frame + {{384,494},{46,72}} + offset + {-7,27} + rotated + + sourceColorRect + {{2,1},{46,72}} + sourceSize + {64,128} + + 135.png.pvr.png + + frame + {{232,526},{48,72}} + offset + {-7,27} + rotated + + sourceColorRect + {{1,1},{48,72}} + sourceSize + {64,128} + + 140.png.pvr.png + + frame + {{364,688},{46,68}} + offset + {-7,28} + rotated + + sourceColorRect + {{2,2},{46,68}} + sourceSize + {64,128} + + 141.png.pvr.png + + frame + {{72,724},{46,68}} + offset + {-7,28} + rotated + + sourceColorRect + {{2,2},{46,68}} + sourceSize + {64,128} + + 142.png.pvr.png + + frame + {{146,720},{46,68}} + offset + {-7,28} + rotated + + sourceColorRect + {{2,2},{46,68}} + sourceSize + {64,128} + + 143.png.pvr.png + + frame + {{220,694},{46,68}} + offset + {-7,28} + rotated + + sourceColorRect + {{2,2},{46,68}} + sourceSize + {64,128} + + 144.png.pvr.png + + frame + {{294,654},{46,68}} + offset + {-7,28} + rotated + + sourceColorRect + {{2,2},{46,68}} + sourceSize + {64,128} + + 145.png.pvr.png + + frame + {{442,676},{46,68}} + offset + {-7,28} + rotated + + sourceColorRect + {{2,2},{46,68}} + sourceSize + {64,128} + + 200.png.pvr.png + + frame + {{2,788},{48,66}} + offset + {-6,29} + rotated + + sourceColorRect + {{2,2},{48,66}} + sourceSize + {64,128} + + 201.png.pvr.png + + frame + {{434,724},{50,64}} + offset + {-5,30} + rotated + + sourceColorRect + {{2,2},{50,64}} + sourceSize + {64,128} + + 202.png.pvr.png + + frame + {{426,776},{48,52}} + offset + {-7,4} + rotated + + sourceColorRect + {{1,2},{48,52}} + sourceSize + {64,64} + + 203.png.pvr.png + + frame + {{450,626},{48,60}} + offset + {-7,0} + rotated + + sourceColorRect + {{1,2},{48,60}} + sourceSize + {64,64} + + 204.png.pvr.png + + frame + {{70,824},{48,56}} + offset + {-6,3} + rotated + + sourceColorRect + {{2,1},{48,56}} + sourceSize + {64,64} + + 205.png.pvr.png + + frame + {{2,838},{48,52}} + offset + {-6,5} + rotated + + sourceColorRect + {{2,1},{48,52}} + sourceSize + {64,64} + + 210.png.pvr.png + + frame + {{286,750},{58,62}} + offset + {-2,31} + rotated + + sourceColorRect + {{1,2},{58,62}} + sourceSize + {64,128} + + 211.png.pvr.png + + frame + {{450,562},{60,62}} + offset + {0,32} + rotated + + sourceColorRect + {{2,1},{60,62}} + sourceSize + {64,128} + + 212.png.pvr.png + + frame + {{448,236},{62,62}} + offset + {-31,32} + rotated + + sourceColorRect + {{2,1},{62,62}} + sourceSize + {128,128} + + 213.png.pvr.png + + frame + {{150,614},{56,70}} + offset + {-2,27} + rotated + + sourceColorRect + {{2,2},{56,70}} + sourceSize + {64,128} + + 214.png.pvr.png + + frame + {{212,790},{52,62}} + offset + {-5,31} + rotated + + sourceColorRect + {{1,2},{52,62}} + sourceSize + {64,128} + + 215.png.pvr.png + + frame + {{140,816},{56,56}} + offset + {-3,2} + rotated + + sourceColorRect + {{1,2},{56,56}} + sourceSize + {64,64} + + 220.png.pvr.png + + frame + {{2,720},{68,66}} + offset + {-28,29} + rotated + + sourceColorRect + {{2,2},{68,66}} + sourceSize + {128,128} + + 221.png.pvr.png + + frame + {{306,534},{70,70}} + offset + {-28,27} + rotated + + sourceColorRect + {{1,2},{70,70}} + sourceSize + {128,128} + + 222.png.pvr.png + + frame + {{228,576},{68,70}} + offset + {-29,27} + rotated + + sourceColorRect + {{1,2},{68,70}} + sourceSize + {128,128} + + 223.png.pvr.png + + frame + {{196,142},{64,74}} + offset + {-30,26} + rotated + + sourceColorRect + {{2,1},{64,74}} + sourceSize + {128,128} + + 224.png.pvr.png + + frame + {{2,562},{58,72}} + offset + {-2,27} + rotated + + sourceColorRect + {{1,1},{58,72}} + sourceSize + {64,128} + + 225.png.pvr.png + + frame + {{196,208},{60,74}} + offset + {0,26} + rotated + + sourceColorRect + {{2,1},{60,74}} + sourceSize + {64,128} + + 230.png.pvr.png + + frame + {{2,298},{58,80}} + offset + {-1,23} + rotated + + sourceColorRect + {{2,1},{58,80}} + sourceSize + {64,128} + + 231.png.pvr.png + + frame + {{310,480},{52,72}} + offset + {-4,26} + rotated + + sourceColorRect + {{2,2},{52,72}} + sourceSize + {64,128} + + 232.png.pvr.png + + frame + {{162,418},{54,76}} + offset + {-3,25} + rotated + + sourceColorRect + {{2,1},{54,76}} + sourceSize + {64,128} + + 233.png.pvr.png + + frame + {{2,412},{54,76}} + offset + {-4,25} + rotated + + sourceColorRect + {{1,1},{54,76}} + sourceSize + {64,128} + + 234.png.pvr.png + + frame + {{84,378},{54,76}} + offset + {-4,25} + rotated + + sourceColorRect + {{1,1},{54,76}} + sourceSize + {64,128} + + 235.png.pvr.png + + frame + {{364,236},{58,82}} + offset + {-1,22} + rotated + + sourceColorRect + {{2,1},{58,82}} + sourceSize + {64,128} + + 240.png.pvr.png + + frame + {{182,270},{48,82}} + offset + {-6,21} + rotated + + sourceColorRect + {{2,2},{48,82}} + sourceSize + {64,128} + + 241.png.pvr.png + + frame + {{418,396},{50,74}} + offset + {-5,25} + rotated + + sourceColorRect + {{2,2},{50,74}} + sourceSize + {64,128} + + 242.png.pvr.png + + frame + {{176,320},{48,80}} + offset + {-7,22} + rotated + + sourceColorRect + {{1,2},{48,80}} + sourceSize + {64,128} + + 243.png.pvr.png + + frame + {{272,242},{48,82}} + offset + {-7,21} + rotated + + sourceColorRect + {{1,2},{48,82}} + sourceSize + {64,128} + + 244.png.pvr.png + + frame + {{336,430},{48,74}} + offset + {-6,25} + rotated + + sourceColorRect + {{2,2},{48,74}} + sourceSize + {64,128} + + 245.png.pvr.png + + frame + {{266,292},{48,80}} + offset + {-6,23} + rotated + + sourceColorRect + {{2,1},{48,80}} + sourceSize + {64,128} + + 300.png.pvr.png + + frame + {{2,622},{46,72}} + offset + {-7,26} + rotated + + sourceColorRect + {{2,2},{46,72}} + sourceSize + {64,128} + + 301.png.pvr.png + + frame + {{80,434},{52,76}} + offset + {-5,24} + rotated + + sourceColorRect + {{1,2},{52,76}} + sourceSize + {64,128} + + 302.png.pvr.png + + frame + {{348,296},{40,80}} + offset + {-10,22} + rotated + + sourceColorRect + {{2,2},{40,80}} + sourceSize + {64,128} + + 303.png.pvr.png + + frame + {{2,224},{90,72}} + offset + {-17,26} + rotated + + sourceColorRect + {{2,2},{90,72}} + sourceSize + {128,128} + + 304.png.pvr.png + + frame + {{144,2},{68,140}} + offset + {-28,56} + rotated + + sourceColorRect + {{2,2},{68,140}} + sourceSize + {128,256} + + 305.png.pvr.png + + frame + {{144,72},{68,126}} + offset + {-28,63} + rotated + + sourceColorRect + {{2,2},{68,126}} + sourceSize + {128,256} + + 310.png.pvr.png + + frame + {{256,390},{40,78}} + offset + {-10,23} + rotated + + sourceColorRect + {{2,2},{40,78}} + sourceSize + {64,128} + + 311.png.pvr.png + + frame + {{2,358},{52,80}} + offset + {-5,23} + rotated + + sourceColorRect + {{1,1},{52,80}} + sourceSize + {64,128} + + 312.png.pvr.png + + frame + {{338,386},{42,78}} + offset + {-10,23} + rotated + + sourceColorRect + {{1,2},{42,78}} + sourceSize + {64,128} + + 313.png.pvr.png + + frame + {{94,228},{86,66}} + offset + {-19,30} + rotated + + sourceColorRect + {{2,1},{86,66}} + sourceSize + {128,128} + + 314.png.pvr.png + + frame + {{2,78},{100,66}} + offset + {-12,30} + rotated + + sourceColorRect + {{2,1},{100,66}} + sourceSize + {128,128} + + 315.png.pvr.png + + frame + {{2,146},{76,90}} + offset + {-24,18} + rotated + + sourceColorRect + {{2,1},{76,90}} + sourceSize + {128,128} + + 320.png.pvr.png + + frame + {{158,474},{44,74}} + offset + {-9,25} + rotated + + sourceColorRect + {{1,2},{44,74}} + sourceSize + {64,128} + + 321.png.pvr.png + + frame + {{76,628},{48,70}} + offset + {-7,27} + rotated + + sourceColorRect + {{1,2},{48,70}} + sourceSize + {64,128} + + 322.png.pvr.png + + frame + {{240,432},{46,74}} + offset + {-8,26} + rotated + + sourceColorRect + {{1,1},{46,74}} + sourceSize + {64,128} + + 323.png.pvr.png + + frame + {{272,172},{90,68}} + offset + {-17,29} + rotated + + sourceColorRect + {{2,1},{90,68}} + sourceSize + {128,128} + + 324.png.pvr.png + + frame + {{414,74},{70,92}} + offset + {-27,17} + rotated + + sourceColorRect + {{2,1},{70,92}} + sourceSize + {128,128} + + 325.png.pvr.png + + frame + {{414,2},{70,94}} + offset + {-27,15} + rotated + + sourceColorRect + {{2,2},{70,94}} + sourceSize + {128,128} + + 330.png.pvr.png + + frame + {{74,678},{44,70}} + offset + {-9,27} + rotated + + sourceColorRect + {{1,2},{44,70}} + sourceSize + {64,128} + + 331.png.pvr.png + + frame + {{72,772},{50,66}} + offset + {-5,29} + rotated + + sourceColorRect + {{2,2},{50,66}} + sourceSize + {64,128} + + 332.png.pvr.png + + frame + {{372,640},{46,68}} + offset + {-8,29} + rotated + + sourceColorRect + {{1,1},{46,68}} + sourceSize + {64,128} + + 333.png.pvr.png + + frame + {{94,296},{80,80}} + offset + {-22,23} + rotated + + sourceColorRect + {{2,1},{80,80}} + sourceSize + {128,128} + + 334.png.pvr.png + + frame + {{380,146},{100,88}} + offset + {-12,18} + rotated + + sourceColorRect + {{2,2},{100,88}} + sourceSize + {128,128} + + 335.png.pvr.png + + frame + {{272,84},{106,86}} + offset + {-10,19} + rotated + + sourceColorRect + {{1,2},{106,86}} + sourceSize + {128,128} + + 340.png.pvr.png + + frame + {{378,592},{46,70}} + offset + {-7,28} + rotated + + sourceColorRect + {{2,1},{46,70}} + sourceSize + {64,128} + + 341.png.pvr.png + + frame + {{458,494},{52,66}} + offset + {-5,30} + rotated + + sourceColorRect + {{1,1},{52,66}} + sourceSize + {64,128} + + 342.png.pvr.png + + frame + {{360,736},{40,64}} + offset + {-10,30} + rotated + + sourceColorRect + {{2,2},{40,64}} + sourceSize + {64,128} + + 343.png.pvr.png + + frame + {{104,142},{90,84}} + offset + {-17,20} + rotated + + sourceColorRect + {{2,2},{90,84}} + sourceSize + {128,128} + + 344.png.pvr.png + + frame + {{2,2},{74,140}} + offset + {-25,57} + rotated + + sourceColorRect + {{2,1},{74,140}} + sourceSize + {128,256} + + 345.png.pvr.png + + frame + {{286,2},{80,126}} + offset + {-22,63} + rotated + + sourceColorRect + {{2,2},{80,126}} + sourceSize + {128,256} + + + metadata + + format + 2 + realTextureFileName + yw.png + size + {512,1024} + smartupdate + $TexturePacker:SmartUpdate:d0150d6a2d44b4353dbb11142054b07c$ + textureFileName + yw.png + + + diff --git a/cc_moba/assets/resources/yw.plist.meta b/cc_moba/assets/resources/yw.plist.meta new file mode 100644 index 0000000..827337c --- /dev/null +++ b/cc_moba/assets/resources/yw.plist.meta @@ -0,0 +1,1992 @@ +{ + "ver": "1.2.4", + "uuid": "b14e329d-1c45-4c7f-a5b5-54aa95ba867d", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "size": { + "width": 512, + "height": 1024 + }, + "type": "Texture Packer", + "subMetas": { + "100.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d74cca58-899a-4bba-bc67-c2dfc836fb01", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 28, + "trimX": 148, + "trimY": 672, + "width": 46, + "height": 70, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "101.png.pvr.png": { + "ver": "1.0.3", + "uuid": "1769b838-e6e9-4a9e-b229-841816b156b8", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 28, + "trimX": 222, + "trimY": 646, + "width": 46, + "height": 70, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "102.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d3248523-0523-441a-b5e4-5ebd1a41893c", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 28, + "trimX": 300, + "trimY": 606, + "width": 46, + "height": 70, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "103.png.pvr.png": { + "ver": "1.0.3", + "uuid": "32f3c5ac-c55f-4276-9833-0ebcfd31e3dc", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 28, + "trimX": 142, + "trimY": 768, + "width": 46, + "height": 68, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "104.png.pvr.png": { + "ver": "1.0.3", + "uuid": "8c5bab09-aaad-4428-a9b3-03e991e0f141", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 28, + "trimX": 216, + "trimY": 742, + "width": 46, + "height": 68, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "105.png.pvr.png": { + "ver": "1.0.3", + "uuid": "fed61545-1636-4b68-8a4e-0f48b304e1b7", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 28, + "trimX": 290, + "trimY": 702, + "width": 46, + "height": 68, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "110.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c75f1d1f-3331-42dc-b72d-1791069ec9ef", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 24, + "trimX": 176, + "trimY": 370, + "width": 46, + "height": 78, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "111.png.pvr.png": { + "ver": "1.0.3", + "uuid": "517d97e9-095d-41a0-a03c-c2d4d91390c1", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 24, + "trimX": 258, + "trimY": 342, + "width": 46, + "height": 78, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "112.png.pvr.png": { + "ver": "1.0.3", + "uuid": "fe91e37c-4673-493b-a050-fd7f4855c276", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 24, + "trimX": 428, + "trimY": 348, + "width": 46, + "height": 78, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "113.png.pvr.png": { + "ver": "1.0.3", + "uuid": "181c5a4a-f6bc-494a-b2bc-aeb4b86e5474", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 24, + "trimX": 348, + "trimY": 338, + "width": 46, + "height": 78, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "114.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e4b58ef3-cc2c-4379-a241-ef4c968b54ba", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 24, + "trimX": 2, + "trimY": 468, + "width": 46, + "height": 76, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "115.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3d817016-96b5-4d44-a3bf-a31104a33bc6", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -8, + "offsetY": 24, + "trimX": 430, + "trimY": 300, + "width": 46, + "height": 78, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "120.png.pvr.png": { + "ver": "1.0.3", + "uuid": "26e3bba5-a93b-4ca5-9a60-4073ac53b3c9", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -9, + "offsetY": 25, + "trimX": 234, + "trimY": 480, + "width": 44, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "121.png.pvr.png": { + "ver": "1.0.3", + "uuid": "25a6d217-0a4b-4e7f-af75-c9bcb52d0d18", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -9, + "offsetY": 25, + "trimX": 412, + "trimY": 448, + "width": 44, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "122.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ff8e67bd-7e2b-489f-9b1c-25a226ab6d70", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -9, + "offsetY": 25, + "trimX": 2, + "trimY": 516, + "width": 44, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "123.png.pvr.png": { + "ver": "1.0.3", + "uuid": "cb0d2ead-4804-475d-893c-e536c9156dff", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -9, + "offsetY": 25, + "trimX": 78, + "trimY": 534, + "width": 42, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "124.png.pvr.png": { + "ver": "1.0.3", + "uuid": "657cc39a-41b0-4e00-a309-eca7291babae", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -9, + "offsetY": 25, + "trimX": 156, + "trimY": 520, + "width": 42, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "125.png.pvr.png": { + "ver": "1.0.3", + "uuid": "88a98a0f-7aad-47ab-ba23-85e53e85b309", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -9, + "offsetY": 25, + "trimX": 80, + "trimY": 488, + "width": 44, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "130.png.pvr.png": { + "ver": "1.0.3", + "uuid": "59282459-a225-4a67-baf0-065778de351a", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 27, + "trimX": 76, + "trimY": 578, + "width": 48, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "131.png.pvr.png": { + "ver": "1.0.3", + "uuid": "8ca0a6f7-0135-4d68-ace4-81da6a01b1a2", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 27, + "trimX": 378, + "trimY": 542, + "width": 48, + "height": 70, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "132.png.pvr.png": { + "ver": "1.0.3", + "uuid": "db00bc32-c0a5-4304-8e83-3f242afa5a8e", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 27, + "trimX": 2, + "trimY": 670, + "width": 48, + "height": 70, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "133.png.pvr.png": { + "ver": "1.0.3", + "uuid": "81c238e8-70a4-4962-93f5-e3a0361c5987", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 27, + "trimX": 154, + "trimY": 564, + "width": 48, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "134.png.pvr.png": { + "ver": "1.0.3", + "uuid": "dd660c8d-ef62-402b-ab35-a9fc11b45278", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 27, + "trimX": 384, + "trimY": 494, + "width": 46, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "135.png.pvr.png": { + "ver": "1.0.3", + "uuid": "122bebf3-e299-459b-ba83-800773d9f528", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 27, + "trimX": 232, + "trimY": 526, + "width": 48, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "140.png.pvr.png": { + "ver": "1.0.3", + "uuid": "21f414e6-5a26-41c0-bf62-b3c56c5c7868", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 28, + "trimX": 364, + "trimY": 688, + "width": 46, + "height": 68, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "141.png.pvr.png": { + "ver": "1.0.3", + "uuid": "febbea8f-dba9-4207-b020-8544d3bb64fe", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 28, + "trimX": 72, + "trimY": 724, + "width": 46, + "height": 68, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "142.png.pvr.png": { + "ver": "1.0.3", + "uuid": "cfc40346-2c52-4a35-9e9f-7ff127e5714f", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 28, + "trimX": 146, + "trimY": 720, + "width": 46, + "height": 68, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "143.png.pvr.png": { + "ver": "1.0.3", + "uuid": "5279fc18-613b-41b5-8333-eadfb0e3749e", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 28, + "trimX": 220, + "trimY": 694, + "width": 46, + "height": 68, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "144.png.pvr.png": { + "ver": "1.0.3", + "uuid": "606a89c6-8f91-4656-a79c-3cb34088436d", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 28, + "trimX": 294, + "trimY": 654, + "width": 46, + "height": 68, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "145.png.pvr.png": { + "ver": "1.0.3", + "uuid": "0dba7af8-e385-4a52-a676-9a86bb32edef", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 28, + "trimX": 442, + "trimY": 676, + "width": 46, + "height": 68, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "200.png.pvr.png": { + "ver": "1.0.3", + "uuid": "508ee8de-ca75-4e89-9f9a-ab7fd3ca1f50", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -6, + "offsetY": 29, + "trimX": 2, + "trimY": 788, + "width": 48, + "height": 66, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "201.png.pvr.png": { + "ver": "1.0.3", + "uuid": "8bc2a6f3-801d-4e43-a46d-3dd7d20b59cd", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 30, + "trimX": 434, + "trimY": 724, + "width": 50, + "height": 64, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "202.png.pvr.png": { + "ver": "1.0.3", + "uuid": "1d90cf47-60ac-4ac5-8d3c-faea0047c19b", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 4, + "trimX": 426, + "trimY": 776, + "width": 48, + "height": 52, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "203.png.pvr.png": { + "ver": "1.0.3", + "uuid": "45793e99-e8cf-4013-b317-0c4d4d30cc91", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 0, + "trimX": 450, + "trimY": 626, + "width": 48, + "height": 60, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "204.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a0b438dd-54fd-4f0b-94cf-97a6da341631", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -6, + "offsetY": 3, + "trimX": 70, + "trimY": 824, + "width": 48, + "height": 56, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "205.png.pvr.png": { + "ver": "1.0.3", + "uuid": "9c97244d-07c1-45ec-92b2-e9c679a1c0dc", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -6, + "offsetY": 5, + "trimX": 2, + "trimY": 838, + "width": 48, + "height": 52, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "210.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e5e63a1c-fcec-4ca2-b2dd-34b76248a9f7", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 31, + "trimX": 286, + "trimY": 750, + "width": 58, + "height": 62, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "211.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ef2abf76-961e-4444-ab97-b272d36886dd", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 32, + "trimX": 450, + "trimY": 562, + "width": 60, + "height": 62, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "212.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3c4e7632-3a5c-4c1a-89dd-f06f71e22ea7", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -31, + "offsetY": 32, + "trimX": 448, + "trimY": 236, + "width": 62, + "height": 62, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "213.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d835dcf1-a1c1-4110-8fa4-06e113fafe17", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 27, + "trimX": 150, + "trimY": 614, + "width": 56, + "height": 70, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "214.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e2234048-ad01-4876-8cd2-2eadc371cb3b", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 31, + "trimX": 212, + "trimY": 790, + "width": 52, + "height": 62, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "215.png.pvr.png": { + "ver": "1.0.3", + "uuid": "83a1b612-b103-426c-a877-ab3368af8f06", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -3, + "offsetY": 2, + "trimX": 140, + "trimY": 816, + "width": 56, + "height": 56, + "rawWidth": 64, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "220.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4711b16a-420e-4659-ab8e-9682008dc9b7", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -28, + "offsetY": 29, + "trimX": 2, + "trimY": 720, + "width": 68, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "221.png.pvr.png": { + "ver": "1.0.3", + "uuid": "affbf475-4bda-49f4-bcd4-cbd5e590d09d", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -28, + "offsetY": 27, + "trimX": 306, + "trimY": 534, + "width": 70, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "222.png.pvr.png": { + "ver": "1.0.3", + "uuid": "d1aeb1ff-65b7-44cc-b03e-a6cd895555af", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -29, + "offsetY": 27, + "trimX": 228, + "trimY": 576, + "width": 68, + "height": 70, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "223.png.pvr.png": { + "ver": "1.0.3", + "uuid": "5f481d15-89cf-4db1-a215-88b379a57838", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -30, + "offsetY": 26, + "trimX": 196, + "trimY": 142, + "width": 64, + "height": 74, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "224.png.pvr.png": { + "ver": "1.0.3", + "uuid": "6500d033-caee-41b3-a2df-9f4536deb56c", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -2, + "offsetY": 27, + "trimX": 2, + "trimY": 562, + "width": 58, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "225.png.pvr.png": { + "ver": "1.0.3", + "uuid": "341a6182-ba07-4abf-8f49-cd9a41b5c883", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 26, + "trimX": 196, + "trimY": 208, + "width": 60, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "230.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ff57a539-cf13-49cf-8bce-efe56ee513f4", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": 23, + "trimX": 2, + "trimY": 298, + "width": 58, + "height": 80, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "231.png.pvr.png": { + "ver": "1.0.3", + "uuid": "9ae835b5-b81f-4ec0-bc7b-46c79a5eb3f1", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -4, + "offsetY": 26, + "trimX": 310, + "trimY": 480, + "width": 52, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "232.png.pvr.png": { + "ver": "1.0.3", + "uuid": "de97847d-2477-46ea-bbea-9b6fe27a525b", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -3, + "offsetY": 25, + "trimX": 162, + "trimY": 418, + "width": 54, + "height": 76, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "233.png.pvr.png": { + "ver": "1.0.3", + "uuid": "2b43d71b-f982-4538-9040-de0a68eaf2ae", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -4, + "offsetY": 25, + "trimX": 2, + "trimY": 412, + "width": 54, + "height": 76, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "234.png.pvr.png": { + "ver": "1.0.3", + "uuid": "2e4ff7c7-a3d3-4146-b040-b6aa0618f82c", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -4, + "offsetY": 25, + "trimX": 84, + "trimY": 378, + "width": 54, + "height": 76, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "235.png.pvr.png": { + "ver": "1.0.3", + "uuid": "2247ba8b-24e2-4ef8-8f6c-c318fb42b044", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": 22, + "trimX": 364, + "trimY": 236, + "width": 58, + "height": 82, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "240.png.pvr.png": { + "ver": "1.0.3", + "uuid": "adcef2c0-227f-4fbf-b47d-5f40c3d64198", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -6, + "offsetY": 21, + "trimX": 182, + "trimY": 270, + "width": 48, + "height": 82, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "241.png.pvr.png": { + "ver": "1.0.3", + "uuid": "5f0e63ad-a566-4491-84d4-c52c96768684", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 25, + "trimX": 418, + "trimY": 396, + "width": 50, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "242.png.pvr.png": { + "ver": "1.0.3", + "uuid": "71250cc8-9e20-4612-9a4b-be8258a5b9ec", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 22, + "trimX": 176, + "trimY": 320, + "width": 48, + "height": 80, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "243.png.pvr.png": { + "ver": "1.0.3", + "uuid": "92be94a0-3635-4dc4-b8f0-dfc3afc47577", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 21, + "trimX": 272, + "trimY": 242, + "width": 48, + "height": 82, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "244.png.pvr.png": { + "ver": "1.0.3", + "uuid": "58101e79-f30f-4e51-9a60-07562427a9ca", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -6, + "offsetY": 25, + "trimX": 336, + "trimY": 430, + "width": 48, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "245.png.pvr.png": { + "ver": "1.0.3", + "uuid": "7af1d3a8-ef88-462f-80e4-643b36ee7b5a", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -6, + "offsetY": 23, + "trimX": 266, + "trimY": 292, + "width": 48, + "height": 80, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "300.png.pvr.png": { + "ver": "1.0.3", + "uuid": "b61cd481-a46f-4e43-b247-d03f60c31917", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 26, + "trimX": 2, + "trimY": 622, + "width": 46, + "height": 72, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "301.png.pvr.png": { + "ver": "1.0.3", + "uuid": "5f2b798b-2183-4493-af29-ab5ad090a472", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 24, + "trimX": 80, + "trimY": 434, + "width": 52, + "height": 76, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "302.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a3e3ac1b-5e3b-4c74-93ff-402909dd8ba2", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -10, + "offsetY": 22, + "trimX": 348, + "trimY": 296, + "width": 40, + "height": 80, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "303.png.pvr.png": { + "ver": "1.0.3", + "uuid": "fa22e9ff-c6c8-4c59-8c24-45445c255126", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -17, + "offsetY": 26, + "trimX": 2, + "trimY": 224, + "width": 90, + "height": 72, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "304.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3ac1f0b3-884b-442e-a312-71afcbc446c2", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -28, + "offsetY": 56, + "trimX": 144, + "trimY": 2, + "width": 68, + "height": 140, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "305.png.pvr.png": { + "ver": "1.0.3", + "uuid": "259302bc-af26-4da7-8ea8-513a6981fc64", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -28, + "offsetY": 63, + "trimX": 144, + "trimY": 72, + "width": 68, + "height": 126, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "310.png.pvr.png": { + "ver": "1.0.3", + "uuid": "400b8ec1-4c36-49fb-9b86-05dd3aaf09b5", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -10, + "offsetY": 23, + "trimX": 256, + "trimY": 390, + "width": 40, + "height": 78, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "311.png.pvr.png": { + "ver": "1.0.3", + "uuid": "6c8eb667-fdc3-429a-b8b0-a51ee714ce8b", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 23, + "trimX": 2, + "trimY": 358, + "width": 52, + "height": 80, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "312.png.pvr.png": { + "ver": "1.0.3", + "uuid": "cb7cd927-3995-4485-bd61-6c7c4096e2a9", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -10, + "offsetY": 23, + "trimX": 338, + "trimY": 386, + "width": 42, + "height": 78, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "313.png.pvr.png": { + "ver": "1.0.3", + "uuid": "bc7fc858-7ff0-41bf-9d53-ba646edd6824", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -19, + "offsetY": 30, + "trimX": 94, + "trimY": 228, + "width": 86, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "314.png.pvr.png": { + "ver": "1.0.3", + "uuid": "a0c5dcd4-4970-4c01-984d-04b2fbf6b2d8", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -12, + "offsetY": 30, + "trimX": 2, + "trimY": 78, + "width": 100, + "height": 66, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "315.png.pvr.png": { + "ver": "1.0.3", + "uuid": "fdb50d64-3949-4332-84c7-a05836a3097c", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -24, + "offsetY": 18, + "trimX": 2, + "trimY": 146, + "width": 76, + "height": 90, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "320.png.pvr.png": { + "ver": "1.0.3", + "uuid": "1d5e7dbc-a360-4fff-bdc2-e3fcedd8fd8c", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -9, + "offsetY": 25, + "trimX": 158, + "trimY": 474, + "width": 44, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "321.png.pvr.png": { + "ver": "1.0.3", + "uuid": "bf0b4cff-26d7-4df1-8b67-8f4a2ecc74bd", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 27, + "trimX": 76, + "trimY": 628, + "width": 48, + "height": 70, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "322.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ee4a7a36-0621-441a-86c2-2e366650dc25", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -8, + "offsetY": 26, + "trimX": 240, + "trimY": 432, + "width": 46, + "height": 74, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "323.png.pvr.png": { + "ver": "1.0.3", + "uuid": "9143518f-0643-49a4-96ee-be649657395d", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -17, + "offsetY": 29, + "trimX": 272, + "trimY": 172, + "width": 90, + "height": 68, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "324.png.pvr.png": { + "ver": "1.0.3", + "uuid": "6e61c58a-638d-4b99-b0a7-b4d1da84a849", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -27, + "offsetY": 17, + "trimX": 414, + "trimY": 74, + "width": 70, + "height": 92, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "325.png.pvr.png": { + "ver": "1.0.3", + "uuid": "3cf93d5f-bd2d-40f0-a82f-2cd0bd5d4b7e", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -27, + "offsetY": 15, + "trimX": 414, + "trimY": 2, + "width": 70, + "height": 94, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "330.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c7e1cdb0-71c9-45a8-a21c-a06cf53c67ce", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -9, + "offsetY": 27, + "trimX": 74, + "trimY": 678, + "width": 44, + "height": 70, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "331.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ea018ab9-d062-4491-8b8f-ff0d2bf1ef19", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -5, + "offsetY": 29, + "trimX": 72, + "trimY": 772, + "width": 50, + "height": 66, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "332.png.pvr.png": { + "ver": "1.0.3", + "uuid": "4ff3d5b2-f33f-4a35-841f-1422fbf6f524", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -8, + "offsetY": 29, + "trimX": 372, + "trimY": 640, + "width": 46, + "height": 68, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "333.png.pvr.png": { + "ver": "1.0.3", + "uuid": "8781d65a-ae94-4302-8030-461893ea9dd3", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -22, + "offsetY": 23, + "trimX": 94, + "trimY": 296, + "width": 80, + "height": 80, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "334.png.pvr.png": { + "ver": "1.0.3", + "uuid": "ce4fb67f-ba5c-46b9-9b8f-67b1833db55c", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -12, + "offsetY": 18, + "trimX": 380, + "trimY": 146, + "width": 100, + "height": 88, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "335.png.pvr.png": { + "ver": "1.0.3", + "uuid": "801b6a78-1b68-4f27-a28c-cac4921b862b", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -10, + "offsetY": 19, + "trimX": 272, + "trimY": 84, + "width": 106, + "height": 86, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "340.png.pvr.png": { + "ver": "1.0.3", + "uuid": "c53b4667-4289-451b-9402-884a0199cdd1", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -7, + "offsetY": 28, + "trimX": 378, + "trimY": 592, + "width": 46, + "height": 70, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "341.png.pvr.png": { + "ver": "1.0.3", + "uuid": "e0fb33b2-7fe3-422f-ad95-f52f51c292cd", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -5, + "offsetY": 30, + "trimX": 458, + "trimY": 494, + "width": 52, + "height": 66, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "342.png.pvr.png": { + "ver": "1.0.3", + "uuid": "321c61de-7c71-4dfb-8d36-87a87d87f64d", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -10, + "offsetY": 30, + "trimX": 360, + "trimY": 736, + "width": 40, + "height": 64, + "rawWidth": 64, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "343.png.pvr.png": { + "ver": "1.0.3", + "uuid": "7a8d5493-0d97-4611-a305-75f51f940c8d", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -17, + "offsetY": 20, + "trimX": 104, + "trimY": 142, + "width": 90, + "height": 84, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "344.png.pvr.png": { + "ver": "1.0.3", + "uuid": "9bd04e5a-61aa-4bfd-8928-665590ddfa99", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -25, + "offsetY": 57, + "trimX": 2, + "trimY": 2, + "width": 74, + "height": 140, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "345.png.pvr.png": { + "ver": "1.0.3", + "uuid": "15f1944b-3887-445d-8a1a-db9c150256e7", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -22, + "offsetY": 63, + "trimX": 286, + "trimY": 2, + "width": 80, + "height": 126, + "rawWidth": 128, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/resources/yw.png b/cc_moba/assets/resources/yw.png new file mode 100644 index 0000000..9cbf613 Binary files /dev/null and b/cc_moba/assets/resources/yw.png differ diff --git a/cc_moba/assets/resources/yw.png.meta b/cc_moba/assets/resources/yw.png.meta new file mode 100644 index 0000000..e901aea --- /dev/null +++ b/cc_moba/assets/resources/yw.png.meta @@ -0,0 +1,30 @@ +{ + "ver": "1.0.0", + "uuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "subMetas": { + "yw": { + "ver": "1.0.3", + "uuid": "cb9bea71-2e5b-433e-b531-f23bc1c4eb9a", + "rawTextureUuid": "4bb7a1bd-b66c-4095-a2bf-72ea650e0fc9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 68, + "trimX": 2, + "trimY": 2, + "width": 508, + "height": 884, + "rawWidth": 512, + "rawHeight": 1024, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/cc_moba/assets/xiaoxiao.fire b/cc_moba/assets/xiaoxiao.fire new file mode 100644 index 0000000..b5006ff --- /dev/null +++ b/cc_moba/assets/xiaoxiao.fire @@ -0,0 +1,15174 @@ +[ + { + "__type__": "cc.SceneAsset", + "_name": "", + "_objFlags": 0, + "_rawFiles": null, + "scene": { + "__id__": 1 + } + }, + { + "__type__": "cc.Scene", + "_name": "", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": null, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 322 + }, + { + "__id__": 38 + }, + { + "__id__": 317 + }, + { + "__id__": 326 + }, + { + "__id__": 342 + }, + { + "__id__": 35 + }, + { + "__id__": 346 + }, + { + "__id__": 352 + }, + { + "__id__": 297 + }, + { + "__id__": 357 + }, + { + "__id__": 371 + }, + { + "__id__": 378 + } + ], + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "2366f3b6-28bb-4920-a824-a5a391045a87" + }, + { + "__type__": "cc.Node", + "_name": "Canvas", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 1 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 960, + "height": 640 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 480, + "y": 320 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "3c576u7AtJMyIui+HGfBiSF", + "_active": true, + "_components": [ + { + "__id__": 3 + }, + { + "__id__": 4 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Canvas", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_designResolution": { + "__type__": "cc.Size", + "width": 960, + "height": 640 + }, + "_fitWidth": false, + "_fitHeight": true + }, + { + "__type__": "b1420lF9dFOhL4Hzy0KHvYP", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "map": { + "__id__": 5 + }, + "socket": { + "__id__": 32 + }, + "equip": null + }, + { + "__type__": "cc.Node", + "_name": "map4", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 1 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 3200, + "height": 3200 + }, + "_children": [ + { + "__id__": 6 + }, + { + "__id__": 8 + }, + { + "__id__": 62 + }, + { + "__id__": 77 + }, + { + "__id__": 90 + }, + { + "__id__": 91 + }, + { + "__id__": 32 + }, + { + "__id__": 288 + }, + { + "__id__": 290 + }, + { + "__id__": 292 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "26ccbaBqOFMgZrr7oILOXCG", + "_active": true, + "_components": [ + { + "__id__": 294 + }, + { + "__id__": 295 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "land", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 3200, + "height": 3200 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "e06aayTd8NAsJxtI/0Geodj", + "_active": true, + "_components": [ + { + "__id__": 7 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.TiledLayer", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 6 + }, + "_enabled": true + }, + { + "__type__": "cc.Node", + "_name": "hero", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 62, + "height": 80 + }, + "_children": [ + { + "__id__": 9 + }, + { + "__id__": 13 + }, + { + "__id__": 18 + }, + { + "__id__": 20 + }, + { + "__id__": 22 + }, + { + "__id__": 27 + }, + { + "__id__": 29 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -136, + "y": 392 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "0c456mI9A1Exr+iVU3njLs/", + "_active": true, + "_components": [ + { + "__id__": 31 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "actornode", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 8 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 88, + "height": 68 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.7, + "_scaleY": 0.7, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "faa143y/LVNEa2HL7gE5HMG", + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + }, + { + "__id__": 12 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "f819869e-e791-4a72-9a6f-abdb130d0943" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": { + "__uuid__": "fd41d6cf-8d57-452d-bc0d-ccb46b1c937b" + } + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_defaultClip": { + "__uuid__": "3823d7bb-25be-477a-ac94-e4b245848efb" + }, + "_clips": [ + { + "__uuid__": "3823d7bb-25be-477a-ac94-e4b245848efb" + }, + { + "__uuid__": "9b139300-141a-4776-b573-cd6cf6188dc5" + }, + { + "__uuid__": "51b51309-a8c1-4f07-a5f2-1090f35b23f4" + }, + { + "__uuid__": "a811f10d-6ed1-4dfc-b212-037f3014df13" + }, + { + "__uuid__": "4540b9b8-f27c-4d1a-abc4-e2eff694fdc1" + }, + { + "__uuid__": "e91b018f-7fd7-4276-9e24-47aeba8d7dce" + }, + { + "__uuid__": "66892253-49af-48f5-9310-ca65276010c8" + }, + { + "__uuid__": "2ad010d6-522b-49f3-91eb-f33ccf094d1a" + }, + { + "__uuid__": "faed4592-bc04-418c-9126-687c27535ac7" + }, + { + "__uuid__": "0a05e14b-3209-4e84-a87d-19f03ed9c920" + }, + { + "__uuid__": "321bc8d0-c5f0-45b9-b425-69d410fb168e" + }, + { + "__uuid__": "2ac501fc-ef23-49fe-b8c7-f5e551b8599e" + }, + { + "__uuid__": "43ee7663-a231-4dbd-be7e-d515c1ff23db" + }, + { + "__uuid__": "9d9b1c47-77e7-4205-bec8-a47477c109fb" + }, + { + "__uuid__": "048817dc-acf5-435a-804a-01d275e4ab9f" + } + ], + "playOnLoad": true + }, + { + "__type__": "bd628y8PlhCK4BJYzMkmmI2", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "heronode": { + "__id__": 8 + } + }, + { + "__type__": "cc.Node", + "_name": "hpbar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 8 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 15 + }, + "_children": [ + { + "__id__": 14 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.4, + "_scaleY": 0.4, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 30.1 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "0833dsbIH9IYY17uBnf42xe", + "_active": true, + "_components": [ + { + "__id__": 16 + }, + { + "__id__": 17 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "bar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 12, + "g": 121, + "b": 10, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 13 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 99, + "height": 15 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -50, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "6001dSmahVMsaevrI2MzcGD", + "_active": true, + "_components": [ + { + "__id__": 15 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 14 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "67e68bc9-dad5-4ad9-a2d8-7e03d458e32f" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "88e79fd5-96b4-4a77-a1f4-312467171014" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.ProgressBar", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_N$barSprite": { + "__id__": 15 + }, + "_N$mode": 0, + "_N$totalLength": 100, + "_N$progress": 0.99, + "_N$reverse": false + }, + { + "__type__": "cc.Node", + "_name": "heroname", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 6, + "g": 54, + "b": 31, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 8 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 90, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 59.2 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "bb9877qw4BDSahckAwDoduu", + "_active": true, + "_components": [ + { + "__id__": 19 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 18 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "麦迪文", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "hurt", + "_objFlags": 0, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 8 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 33.37, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 61 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "d1247Kc42pLFYT14g4B5PWA", + "_active": true, + "_components": [ + { + "__id__": 21 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 20 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "50", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "lvbar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 8 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 30, + "height": 30 + }, + "_children": [ + { + "__id__": 23 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -36.5, + "y": 29.3 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "e5c16UrJTxJ/I0hxld2gV+z", + "_active": true, + "_components": [ + { + "__id__": 25 + }, + { + "__id__": 26 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "bar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 22 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 30, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -15, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "af0feox+UhF3KoRI0HpUoT3", + "_active": true, + "_components": [ + { + "__id__": 24 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 23 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "050cd0f9-97b4-4528-814b-44f6760f304a" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 2, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_fillStart": 0.25, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 22 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "c3e8c1b6-e21a-47e7-ae29-162c967aae9b" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.ProgressBar", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 22 + }, + "_enabled": true, + "_N$barSprite": { + "__id__": 24 + }, + "_N$mode": 2, + "_N$totalLength": 1, + "_N$progress": 0, + "_N$reverse": true + }, + { + "__type__": "cc.Node", + "_name": "lvlab", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 2, + "g": 2, + "b": 2, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 8 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 6, + "height": 10 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -35.8, + "y": 29.5 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "4596b5IsrhOk7KcbGj8BBk2", + "_active": true, + "_components": [ + { + "__id__": 28 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 27 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 10, + "_lineHeight": 10, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "1", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "cy1", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 8 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "eb1690pZD1LGKw7jO0oWpdp", + "_active": false, + "_components": [ + { + "__id__": 30 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_custom": false, + "_file": { + "__uuid__": "b2687ac4-099e-403c-a192-ff477686f4f5" + }, + "_srcBlendFactor": 770, + "_dstBlendFactor": 1, + "playOnLoad": true, + "_autoRemoveOnFinish": false, + "_totalParticles": 200, + "_duration": -1, + "_emissionRate": 999.999985098839, + "_life": 0.20000000298023224, + "_lifeVar": 0.5, + "_startColor": { + "__type__": "cc.Color", + "r": 202.705078125, + "g": 200.9204050898552, + "b": 86.0790990293026, + "a": 163.19999635219574 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 229.49999392032623, + "g": 255, + "b": 173.40000182390213, + "a": 198.89999270439148 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 173.6108449101448, + "g": 161.9067433476448, + "b": 19.6728515625, + "a": 214.19999331235886 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 107.09999665617943, + "g": 249.900004863739, + "b": 249.900004863739, + "a": 188.7000024318695 + }, + "_angle": 360, + "_angleVar": 360, + "_startSize": 3.369999885559082, + "_startSizeVar": 50, + "_endSize": 30.31999969482422, + "_endSizeVar": 0, + "_startSpin": -47.369998931884766, + "_startSpinVar": 0, + "_endSpin": -47.369998931884766, + "_endSpinVar": -142.11000061035156, + "_sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_posVar": { + "__type__": "cc.Vec2", + "x": 7, + "y": 7 + }, + "_positionType": 0, + "_emitterMode": 0, + "_gravity": { + "__type__": "cc.Vec2", + "x": 0.25, + "y": 0.8600000143051147 + }, + "_speed": 0, + "_speedVar": 190.7899932861328, + "_tangentialAccel": -92.11000061035156, + "_tangentialAccelVar": 65.79000091552734, + "_radialAccel": -671.0499877929688, + "_radialAccelVar": 65.79000091552734, + "_rotationIsDir": false, + "_startRadius": 100, + "_startRadiusVar": 0, + "_endRadius": 0, + "_endRadiusVar": 0, + "_rotatePerS": 0, + "_rotatePerSVar": 0, + "_N$preview": true + }, + { + "__type__": "b6a7drvz8dA9KRioeVtFvXa", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 8 + }, + "_enabled": true, + "actiontype": "1", + "actionstatus": null, + "direct": "1", + "speed": 1, + "arf": 0, + "hittarget": null, + "oldaction": null, + "uid": 1, + "lasttime": 0, + "namestr": "", + "hittick": 0, + "socket": { + "__id__": 32 + }, + "smallpoint": { + "__id__": 34 + }, + "map": { + "__id__": 5 + }, + "hurtlabel": { + "__id__": 20 + }, + "namelabel": null, + "actornode": null, + "hpbar": { + "__id__": 13 + }, + "attrba": { + "__id__": 38 + }, + "expbar": { + "__id__": 22 + }, + "lvlab": { + "__id__": 27 + }, + "cy1": { + "__id__": 29 + }, + "hp": 6060, + "hpmax": 6060, + "attackvalue": 170, + "def": 10, + "lookrange": 300, + "str": 24, + "min": 9, + "exp": 0, + "lv": 0, + "scale": 0.7, + "equips": [] + }, + { + "__type__": "cc.Node", + "_name": "web", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "4234b6bU0lOnrQjPPD3nugl", + "_active": true, + "_components": [ + { + "__id__": 33 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "12396O1wzRAO5fNW5Ehigr8", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 32 + }, + "_enabled": true, + "ws": null, + "uid": null, + "ticks": [], + "maxtick": 0, + "map": { + "__id__": 5 + } + }, + { + "__type__": "cc.Node", + "_name": "selfpint", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 7, + "g": 238, + "b": 16, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 35 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 11.11, + "height": 40 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -55, + "y": 39 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "c30e6W6KmNMSqErqJvv4sUb", + "_active": true, + "_components": [ + { + "__id__": 37 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "smallmaproot", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 1 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_children": [ + { + "__id__": 34 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 10, + "y": 10 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "764a0vZAIlKT7d4jrQoJ5/c", + "_active": true, + "_components": [ + { + "__id__": 36 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 35 + }, + "_enabled": true, + "isAlignOnce": false, + "_alignFlags": 12, + "_left": 10, + "_right": 0, + "_top": 0, + "_bottom": 10, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_originalWidth": 0, + "_originalHeight": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 34 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": ".", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "attrroot", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 3, + "g": 43, + "b": 71, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 1 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1, + "height": 1 + }, + "_children": [ + { + "__id__": 39 + }, + { + "__id__": 42 + }, + { + "__id__": 44 + }, + { + "__id__": 46 + }, + { + "__id__": 49 + }, + { + "__id__": 51 + }, + { + "__id__": 53 + }, + { + "__id__": 56 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 95, + "y": 530 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "35e0dh8N2RLC7TPWzK3QQMb", + "_active": true, + "_components": [ + { + "__id__": 58 + }, + { + "__id__": 59 + }, + { + "__id__": 60 + }, + { + "__id__": 61 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "hit", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 38 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 32, + "height": 32 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -42.9, + "y": 71.8 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "86f5cHh55VFYLcS3WHCs0f/", + "_active": true, + "_components": [ + { + "__id__": 40 + }, + { + "__id__": 41 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 39 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "57f7a1fa-cc95-4c68-a947-5ec573c5855b" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "9ba26zMCIBLMICG5FEtOD2r", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 39 + }, + "_enabled": true + }, + { + "__type__": "cc.Node", + "_name": "attack", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 224, + "g": 241, + "b": 224, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 38 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 33.37, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -27, + "y": 71 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "03e055hU1tLvLxDOTGEugGI", + "_active": true, + "_components": [ + { + "__id__": 43 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 42 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "10", + "_N$horizontalAlign": 0, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "def", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 238, + "g": 229, + "b": 229, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 38 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 33.37, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -25.7, + "y": 37 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "430aak/fs9Kv5jOxt+SSdNa", + "_active": true, + "_components": [ + { + "__id__": 45 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 44 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "20", + "_N$horizontalAlign": 0, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "defsprite", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 38 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 32, + "height": 32 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -42.9, + "y": 36.5 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "8c0f5RKwBhJga0DPVxGVmDC", + "_active": true, + "_components": [ + { + "__id__": 47 + }, + { + "__id__": 48 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 46 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "3b0d10e6-7d07-4172-888c-53eaa100bef3" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "9ba26zMCIBLMICG5FEtOD2r", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 46 + }, + "_enabled": true + }, + { + "__type__": "cc.Node", + "_name": "hp", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 241, + "g": 219, + "b": 219, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 38 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 33.37, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -27.1, + "y": 4 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "516a962JHVILJkG0zGmoUDr", + "_active": true, + "_components": [ + { + "__id__": 50 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 49 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "20", + "_N$horizontalAlign": 0, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "str", + "_objFlags": 0, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 38 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 90, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -63, + "y": -34 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "2894bV9tWZK/6Kgn6/IR55W", + "_active": true, + "_components": [ + { + "__id__": 52 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 51 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "力量:", + "_N$horizontalAlign": 0, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "hpsprite", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 38 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 32, + "height": 32 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -44.2, + "y": 0.6 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "454ceACU3RP8oFMVeY5bNSm", + "_active": true, + "_components": [ + { + "__id__": 54 + }, + { + "__id__": 55 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 53 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "8cad37ab-f664-42e0-90d7-2234fa985958" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "9ba26zMCIBLMICG5FEtOD2r", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 53 + }, + "_enabled": true + }, + { + "__type__": "cc.Node", + "_name": "minjie", + "_objFlags": 0, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 38 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 90, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -63, + "y": -71 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "bdb4e90mqFINpJVNn6nNO1Q", + "_active": true, + "_components": [ + { + "__id__": 57 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 56 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "敏捷:", + "_N$horizontalAlign": 0, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 38 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "9bbda31e-ad49-43c9-aaf2-f7d9896bac69" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 38 + }, + "_enabled": true, + "_layoutSize": { + "__type__": "cc.Size", + "width": 1, + "height": 1 + }, + "_resize": 0, + "_N$layoutType": 0, + "_N$cellSize": { + "__type__": "cc.Size", + "width": 40, + "height": 40 + }, + "_N$startAxis": 0, + "_N$padding": 0, + "_N$spacingX": 0, + "_N$spacingY": 0, + "_N$verticalDirection": 1, + "_N$horizontalDirection": 0 + }, + { + "__type__": "21268STn8dLS6WtHIN/GlEw", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 38 + }, + "_enabled": true, + "attack": { + "__id__": 42 + }, + "def": { + "__id__": 44 + }, + "hp": { + "__id__": 49 + }, + "strong": { + "__id__": 51 + }, + "minjie": { + "__id__": 56 + } + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 38 + }, + "_enabled": true, + "isAlignOnce": false, + "_alignFlags": 9, + "_left": 94.5, + "_right": 0, + "_top": 109.5, + "_bottom": 430, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_originalWidth": 0, + "_originalHeight": 200 + }, + { + "__type__": "cc.Node", + "_name": "monster", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 62, + "height": 80 + }, + "_children": [ + { + "__id__": 63 + }, + { + "__id__": 67 + }, + { + "__id__": 72 + }, + { + "__id__": 74 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -200, + "y": 582 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "d17f9tjMfRE5qEwhfcW2SeR", + "_active": true, + "_components": [ + { + "__id__": 76 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "actornode", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 62 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 78, + "height": 76 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.7, + "_scaleY": 0.7, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "cb8cfPiSJ1EfKROU5TLHIz3", + "_active": true, + "_components": [ + { + "__id__": 64 + }, + { + "__id__": 65 + }, + { + "__id__": 66 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 63 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "3c614a2c-a519-4d4f-b6b7-882083a1d9c9" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": { + "__uuid__": "910f9dea-12a3-4df7-84bf-361907871717" + } + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 63 + }, + "_enabled": true, + "_defaultClip": null, + "_clips": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + "playOnLoad": false + }, + { + "__type__": "7f887eXD/tHULvvZiybIxdj", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 63 + }, + "_enabled": true, + "heronode": { + "__id__": 62 + } + }, + { + "__type__": "cc.Node", + "_name": "hpbar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 62 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 15 + }, + "_children": [ + { + "__id__": 68 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.4, + "_scaleY": 0.4, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 36.8 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "38a301pvk1C+6+mWyBjjmSW", + "_active": true, + "_components": [ + { + "__id__": 70 + }, + { + "__id__": 71 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "bar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 12, + "g": 121, + "b": 10, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 67 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 99, + "height": 15 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -50, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "ea115l6qChG1b8pnQNUzeLI", + "_active": true, + "_components": [ + { + "__id__": 69 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 68 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "67e68bc9-dad5-4ad9-a2d8-7e03d458e32f" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 67 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "88e79fd5-96b4-4a77-a1f4-312467171014" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.ProgressBar", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 67 + }, + "_enabled": true, + "_N$barSprite": { + "__id__": 69 + }, + "_N$mode": 0, + "_N$totalLength": 100, + "_N$progress": 0.99, + "_N$reverse": false + }, + { + "__type__": "cc.Node", + "_name": "heroname", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 6, + "g": 54, + "b": 31, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 62 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 90, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 59.2 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "e4db9rHrQ5H+rJdznd/lQCK", + "_active": true, + "_components": [ + { + "__id__": 73 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 72 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "麦迪文", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "hurt", + "_objFlags": 0, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 62 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 33.37, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -1709, + "y": -918 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "04301EKfptD54nJL10cvg1K", + "_active": true, + "_components": [ + { + "__id__": 75 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 74 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "50", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "6549bA1EsdEk5TKmQX8hpeJ", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 62 + }, + "_enabled": true, + "actiontype": "1", + "actionstatus": null, + "direct": "2", + "speed": 0.6, + "arf": 0, + "hittarget": null, + "oldaction": null, + "uid": 0, + "lasttime": 0, + "namestr": "", + "hittick": 0, + "initx": 0, + "inity": 0, + "hurtlabel": { + "__id__": 74 + }, + "socket": { + "__id__": 32 + }, + "map": { + "__id__": 5 + }, + "namelabel": { + "__id__": 72 + }, + "actornode": { + "__id__": 63 + }, + "hpbar": { + "__id__": 67 + }, + "attrba": { + "__id__": 38 + }, + "hp": 400, + "hpmax": 400, + "attackvalue": 40, + "def": 2, + "lookrange": 200, + "str": 24, + "min": 9, + "ciptype": "xueren", + "scale": 0.7 + }, + { + "__type__": "cc.Node", + "_name": "itemlist", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_children": [ + { + "__id__": 78 + }, + { + "__id__": 82 + }, + { + "__id__": 86 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "530678EBMpPaKLAZfQe+NJJ", + "_active": true, + "_components": [], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "143", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 77 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 75, + "height": 75 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.5, + "_scaleY": 0.5, + "_position": { + "__type__": "cc.Vec2", + "x": 1510, + "y": 600 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "8c7d8+XzsRHkITJ5g/TbxWC", + "_active": true, + "_components": [ + { + "__id__": 79 + }, + { + "__id__": 80 + }, + { + "__id__": 81 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 78 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "d66b929c-d538-4d49-92bf-d673363a55d4" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "d5cebbqVeJE57l42V7Bx6K3", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 78 + }, + "_enabled": true, + "map": { + "__id__": 5 + }, + "itemlist": { + "__id__": 77 + }, + "socket": null, + "uid": 143, + "gid": 1, + "maptype": "equip", + "hp": 0, + "attr": 0, + "def": 0, + "min": 0, + "str": 0, + "xixue": 0, + "baoji": 0, + "shanbi": 0, + "yisu": 0, + "gongsu": 0, + "desc": "", + "equipname": "", + "lv": 1 + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 78 + }, + "_enabled": true, + "transition": 0, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "duration": 0.1, + "pressedSprite": null, + "hoverSprite": null, + "clickEvents": [], + "_N$interactable": true, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 214, + "g": 214, + "b": 214, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 78 + } + }, + { + "__type__": "cc.Node", + "_name": "197", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 77 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 75, + "height": 75 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.5, + "_scaleY": 0.5, + "_position": { + "__type__": "cc.Vec2", + "x": 1627, + "y": 600 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "4293ehlAmdF3JPdt0i1trEl", + "_active": true, + "_components": [ + { + "__id__": 83 + }, + { + "__id__": 84 + }, + { + "__id__": 85 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 82 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "eb099fc5-9049-4204-a43b-ee54245ee515" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "d5cebbqVeJE57l42V7Bx6K3", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 82 + }, + "_enabled": true, + "map": { + "__id__": 5 + }, + "itemlist": { + "__id__": 77 + }, + "socket": null, + "uid": 197, + "gid": 2, + "maptype": "equip", + "hp": 0, + "attr": 0, + "def": 0, + "min": 0, + "str": 0, + "xixue": 0, + "baoji": 0, + "shanbi": 0, + "yisu": 0, + "gongsu": 0, + "desc": "", + "equipname": "1", + "lv": 1 + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 82 + }, + "_enabled": true, + "transition": 0, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "duration": 0.1, + "pressedSprite": null, + "hoverSprite": null, + "clickEvents": [], + "_N$interactable": true, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 214, + "g": 214, + "b": 214, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 82 + } + }, + { + "__type__": "cc.Node", + "_name": "204", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 77 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 75, + "height": 75 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.5, + "_scaleY": 0.5, + "_position": { + "__type__": "cc.Vec2", + "x": 1627, + "y": 1515 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "aab643BdStM2aMh0uJNIKQK", + "_active": true, + "_components": [ + { + "__id__": 87 + }, + { + "__id__": 88 + }, + { + "__id__": 89 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 86 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "bc309455-833a-4701-8b06-c9ad02257119" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "d5cebbqVeJE57l42V7Bx6K3", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 86 + }, + "_enabled": true, + "map": { + "__id__": 5 + }, + "itemlist": { + "__id__": 77 + }, + "socket": null, + "uid": 204, + "gid": 3, + "maptype": "equip", + "hp": 0, + "attr": 0, + "def": 0, + "min": 0, + "str": 0, + "xixue": 0, + "baoji": 0, + "shanbi": 0, + "yisu": 0, + "gongsu": 0, + "desc": "", + "equipname": "1", + "lv": 1 + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 86 + }, + "_enabled": true, + "transition": 0, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "duration": 0.1, + "pressedSprite": null, + "hoverSprite": null, + "clickEvents": [], + "_N$interactable": true, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 214, + "g": 214, + "b": 214, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 86 + } + }, + { + "__type__": "cc.Node", + "_name": "herolist", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "80adc6bdqtBlKRzA6I0bZkA", + "_active": true, + "_components": [], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "monsterlist", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_children": [ + { + "__id__": 92 + }, + { + "__id__": 107 + }, + { + "__id__": 122 + }, + { + "__id__": 137 + }, + { + "__id__": 152 + }, + { + "__id__": 167 + }, + { + "__id__": 182 + }, + { + "__id__": 197 + }, + { + "__id__": 212 + }, + { + "__id__": 227 + }, + { + "__id__": 242 + }, + { + "__id__": 257 + }, + { + "__id__": 272 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "41837VKMrlI5ZK27zejWXAa", + "_active": true, + "_components": [ + { + "__id__": 287 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "monster", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 91 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 62, + "height": 80 + }, + "_children": [ + { + "__id__": 93 + }, + { + "__id__": 97 + }, + { + "__id__": 102 + }, + { + "__id__": 104 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 1769.5, + "y": 947.5 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "664855LaEhJxKAGvQNaa2Sz", + "_active": true, + "_components": [ + { + "__id__": 106 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "actornode", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 92 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 78, + "height": 76 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.7, + "_scaleY": 0.7, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "1b7e92Q8HVFF64/H8Hi8DA8", + "_active": true, + "_components": [ + { + "__id__": 94 + }, + { + "__id__": 95 + }, + { + "__id__": 96 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 93 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "3c614a2c-a519-4d4f-b6b7-882083a1d9c9" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": { + "__uuid__": "910f9dea-12a3-4df7-84bf-361907871717" + } + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 93 + }, + "_enabled": true, + "_defaultClip": { + "__uuid__": "52c60e0c-5d4a-415b-abf0-94dd135a7a94" + }, + "_clips": [ + { + "__uuid__": "8cfab687-b79e-4af0-9220-4aa7dcd83393" + }, + { + "__uuid__": "52c60e0c-5d4a-415b-abf0-94dd135a7a94" + }, + { + "__uuid__": "b840d92b-4bd3-42ff-89c6-4a858be1027d" + }, + { + "__uuid__": "a4bbfa4e-4ec7-4a14-8948-d7e20ba540f6" + }, + { + "__uuid__": "7532cde0-bbcf-4e9a-a855-8ebdcb36b687" + }, + { + "__uuid__": "f17b56ef-d0d9-42fc-b270-7395232c301e" + }, + { + "__uuid__": "a58d4bef-cdd6-4ff1-b941-2cc19c8a2056" + }, + { + "__uuid__": "4d8dc775-3aa3-4994-bba8-6ad6d3996655" + }, + { + "__uuid__": "d8724798-d194-476d-a975-8ac283cdf498" + }, + { + "__uuid__": "ce609dd7-6ee2-448e-b475-934af3571ed0" + }, + { + "__uuid__": "a4277d13-d005-4ced-ba2f-72472ea3c386" + }, + { + "__uuid__": "b5cd5056-173b-4d37-97b4-d67290d40b25" + }, + { + "__uuid__": "73f3db3b-b8e9-454a-9061-4bb463c21e94" + }, + { + "__uuid__": "aca52b1a-0767-4c57-a59f-ebcebddfa944" + }, + null + ], + "playOnLoad": true + }, + { + "__type__": "7f887eXD/tHULvvZiybIxdj", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 93 + }, + "_enabled": true, + "heronode": { + "__id__": 92 + } + }, + { + "__type__": "cc.Node", + "_name": "hpbar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 92 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 15 + }, + "_children": [ + { + "__id__": 98 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.4, + "_scaleY": 0.4, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 36.8 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "624b2uqojtBKaIqC99YoMeF", + "_active": true, + "_components": [ + { + "__id__": 100 + }, + { + "__id__": 101 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "bar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 12, + "g": 121, + "b": 10, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 97 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 99, + "height": 15 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -50, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "4f6c6xYv6dBVbpM6FJDVPlI", + "_active": true, + "_components": [ + { + "__id__": 99 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 98 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "67e68bc9-dad5-4ad9-a2d8-7e03d458e32f" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 97 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "88e79fd5-96b4-4a77-a1f4-312467171014" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.ProgressBar", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 97 + }, + "_enabled": true, + "_N$barSprite": { + "__id__": 99 + }, + "_N$mode": 0, + "_N$totalLength": 100, + "_N$progress": 0.99, + "_N$reverse": false + }, + { + "__type__": "cc.Node", + "_name": "heroname", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 6, + "g": 54, + "b": 31, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 92 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 90, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 59.2 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "f1dd7E/3b5EPagRUQlfMGri", + "_active": true, + "_components": [ + { + "__id__": 103 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 102 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "麦迪文", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "hurt", + "_objFlags": 0, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 92 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 33.37, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -1709, + "y": -918 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "f0ccabxSpdE7ZF5fP9Tlg49", + "_active": true, + "_components": [ + { + "__id__": 105 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 104 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "50", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "6549bA1EsdEk5TKmQX8hpeJ", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 92 + }, + "_enabled": true, + "actiontype": "1", + "actionstatus": null, + "direct": "2", + "speed": 0.6, + "arf": 0, + "hittarget": null, + "oldaction": null, + "uid": 0, + "lasttime": 0, + "namestr": "", + "hittick": 0, + "initx": 0, + "inity": 0, + "hurtlabel": { + "__id__": 104 + }, + "socket": { + "__id__": 32 + }, + "map": { + "__id__": 5 + }, + "namelabel": { + "__id__": 102 + }, + "actornode": { + "__id__": 93 + }, + "hpbar": { + "__id__": 97 + }, + "attrba": { + "__id__": 38 + }, + "hp": 400, + "hpmax": 400, + "attackvalue": 40, + "def": 2, + "lookrange": 200, + "str": 24, + "min": 9, + "ciptype": "doushi", + "scale": 0.7 + }, + { + "__type__": "cc.Node", + "_name": "monster", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 91 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 62, + "height": 80 + }, + "_children": [ + { + "__id__": 108 + }, + { + "__id__": 112 + }, + { + "__id__": 117 + }, + { + "__id__": 119 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 1698, + "y": 908 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "7a7bdZ8tgpCq4fJ1gA2BFAz", + "_active": true, + "_components": [ + { + "__id__": 121 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "actornode", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 107 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 78, + "height": 76 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.7, + "_scaleY": 0.7, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "efa05C6rfdEKLob+eproRQx", + "_active": true, + "_components": [ + { + "__id__": 109 + }, + { + "__id__": 110 + }, + { + "__id__": 111 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 108 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "3c614a2c-a519-4d4f-b6b7-882083a1d9c9" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": { + "__uuid__": "910f9dea-12a3-4df7-84bf-361907871717" + } + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 108 + }, + "_enabled": true, + "_defaultClip": { + "__uuid__": "52c60e0c-5d4a-415b-abf0-94dd135a7a94" + }, + "_clips": [ + { + "__uuid__": "8cfab687-b79e-4af0-9220-4aa7dcd83393" + }, + { + "__uuid__": "52c60e0c-5d4a-415b-abf0-94dd135a7a94" + }, + { + "__uuid__": "b840d92b-4bd3-42ff-89c6-4a858be1027d" + }, + { + "__uuid__": "a4bbfa4e-4ec7-4a14-8948-d7e20ba540f6" + }, + { + "__uuid__": "7532cde0-bbcf-4e9a-a855-8ebdcb36b687" + }, + { + "__uuid__": "f17b56ef-d0d9-42fc-b270-7395232c301e" + }, + { + "__uuid__": "a58d4bef-cdd6-4ff1-b941-2cc19c8a2056" + }, + { + "__uuid__": "4d8dc775-3aa3-4994-bba8-6ad6d3996655" + }, + { + "__uuid__": "d8724798-d194-476d-a975-8ac283cdf498" + }, + { + "__uuid__": "ce609dd7-6ee2-448e-b475-934af3571ed0" + }, + { + "__uuid__": "a4277d13-d005-4ced-ba2f-72472ea3c386" + }, + { + "__uuid__": "b5cd5056-173b-4d37-97b4-d67290d40b25" + }, + { + "__uuid__": "73f3db3b-b8e9-454a-9061-4bb463c21e94" + }, + { + "__uuid__": "aca52b1a-0767-4c57-a59f-ebcebddfa944" + }, + null + ], + "playOnLoad": true + }, + { + "__type__": "7f887eXD/tHULvvZiybIxdj", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 108 + }, + "_enabled": true, + "heronode": { + "__id__": 107 + } + }, + { + "__type__": "cc.Node", + "_name": "hpbar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 107 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 15 + }, + "_children": [ + { + "__id__": 113 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.4, + "_scaleY": 0.4, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 36.8 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "6eec0PgFqpK0K3a+pCmAtYu", + "_active": true, + "_components": [ + { + "__id__": 115 + }, + { + "__id__": 116 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "bar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 12, + "g": 121, + "b": 10, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 112 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 99, + "height": 15 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -50, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "e67d1exsKtLyYI3BLlo4lyh", + "_active": true, + "_components": [ + { + "__id__": 114 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 113 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "67e68bc9-dad5-4ad9-a2d8-7e03d458e32f" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 112 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "88e79fd5-96b4-4a77-a1f4-312467171014" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.ProgressBar", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 112 + }, + "_enabled": true, + "_N$barSprite": { + "__id__": 114 + }, + "_N$mode": 0, + "_N$totalLength": 100, + "_N$progress": 0.99, + "_N$reverse": false + }, + { + "__type__": "cc.Node", + "_name": "heroname", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 6, + "g": 54, + "b": 31, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 107 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 90, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 59.2 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "de7c4hxEjNKh5ZS7ZskOAHi", + "_active": true, + "_components": [ + { + "__id__": 118 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 117 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "麦迪文", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "hurt", + "_objFlags": 0, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 107 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 33.37, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -1709, + "y": -918 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "209f3aWsxpAB4OsZbA29rEJ", + "_active": true, + "_components": [ + { + "__id__": 120 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 119 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "50", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "6549bA1EsdEk5TKmQX8hpeJ", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 107 + }, + "_enabled": true, + "actiontype": "1", + "actionstatus": null, + "direct": "2", + "speed": 0.6, + "arf": 0, + "hittarget": null, + "oldaction": null, + "uid": 0, + "lasttime": 0, + "namestr": "", + "hittick": 0, + "initx": 0, + "inity": 0, + "hurtlabel": { + "__id__": 119 + }, + "socket": { + "__id__": 32 + }, + "map": { + "__id__": 5 + }, + "namelabel": { + "__id__": 117 + }, + "actornode": { + "__id__": 108 + }, + "hpbar": { + "__id__": 112 + }, + "attrba": { + "__id__": 38 + }, + "hp": 400, + "hpmax": 400, + "attackvalue": 40, + "def": 2, + "lookrange": 200, + "str": 24, + "min": 9, + "ciptype": "doushi", + "scale": 0.7 + }, + { + "__type__": "cc.Node", + "_name": "monster", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 91 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 62, + "height": 80 + }, + "_children": [ + { + "__id__": 123 + }, + { + "__id__": 127 + }, + { + "__id__": 132 + }, + { + "__id__": 134 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 1884, + "y": 2906 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "9613bN7xFhIsapWP4fFGT5g", + "_active": true, + "_components": [ + { + "__id__": 136 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "actornode", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 122 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 78, + "height": 76 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.7, + "_scaleY": 0.7, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "ef010AKE3VNapa0banvvH8I", + "_active": true, + "_components": [ + { + "__id__": 124 + }, + { + "__id__": 125 + }, + { + "__id__": 126 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 123 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "3c614a2c-a519-4d4f-b6b7-882083a1d9c9" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": { + "__uuid__": "910f9dea-12a3-4df7-84bf-361907871717" + } + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 123 + }, + "_enabled": true, + "_defaultClip": { + "__uuid__": "52c60e0c-5d4a-415b-abf0-94dd135a7a94" + }, + "_clips": [ + { + "__uuid__": "8cfab687-b79e-4af0-9220-4aa7dcd83393" + }, + { + "__uuid__": "52c60e0c-5d4a-415b-abf0-94dd135a7a94" + }, + { + "__uuid__": "b840d92b-4bd3-42ff-89c6-4a858be1027d" + }, + { + "__uuid__": "a4bbfa4e-4ec7-4a14-8948-d7e20ba540f6" + }, + { + "__uuid__": "7532cde0-bbcf-4e9a-a855-8ebdcb36b687" + }, + { + "__uuid__": "f17b56ef-d0d9-42fc-b270-7395232c301e" + }, + { + "__uuid__": "a58d4bef-cdd6-4ff1-b941-2cc19c8a2056" + }, + { + "__uuid__": "4d8dc775-3aa3-4994-bba8-6ad6d3996655" + }, + { + "__uuid__": "d8724798-d194-476d-a975-8ac283cdf498" + }, + { + "__uuid__": "ce609dd7-6ee2-448e-b475-934af3571ed0" + }, + { + "__uuid__": "a4277d13-d005-4ced-ba2f-72472ea3c386" + }, + { + "__uuid__": "b5cd5056-173b-4d37-97b4-d67290d40b25" + }, + { + "__uuid__": "73f3db3b-b8e9-454a-9061-4bb463c21e94" + }, + { + "__uuid__": "aca52b1a-0767-4c57-a59f-ebcebddfa944" + }, + null + ], + "playOnLoad": true + }, + { + "__type__": "7f887eXD/tHULvvZiybIxdj", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 123 + }, + "_enabled": true, + "heronode": { + "__id__": 122 + } + }, + { + "__type__": "cc.Node", + "_name": "hpbar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 122 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 15 + }, + "_children": [ + { + "__id__": 128 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.4, + "_scaleY": 0.4, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 36.8 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "532f6PNG51L/oVflP1XARfX", + "_active": true, + "_components": [ + { + "__id__": 130 + }, + { + "__id__": 131 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "bar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 12, + "g": 121, + "b": 10, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 127 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 99, + "height": 15 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -50, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "01a5exV4VdIDIMWmjkaBu5Z", + "_active": true, + "_components": [ + { + "__id__": 129 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 128 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "67e68bc9-dad5-4ad9-a2d8-7e03d458e32f" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 127 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "88e79fd5-96b4-4a77-a1f4-312467171014" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.ProgressBar", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 127 + }, + "_enabled": true, + "_N$barSprite": { + "__id__": 129 + }, + "_N$mode": 0, + "_N$totalLength": 100, + "_N$progress": 0.99, + "_N$reverse": false + }, + { + "__type__": "cc.Node", + "_name": "heroname", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 6, + "g": 54, + "b": 31, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 122 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 90, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 59.2 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "529a5fokq5Job/z1jftxtpC", + "_active": true, + "_components": [ + { + "__id__": 133 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 132 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "麦迪文", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "hurt", + "_objFlags": 0, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 122 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 33.37, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -1709, + "y": -918 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "8d659D/rqhMj5tAVTBvqYLL", + "_active": true, + "_components": [ + { + "__id__": 135 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 134 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "50", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "6549bA1EsdEk5TKmQX8hpeJ", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 122 + }, + "_enabled": true, + "actiontype": "1", + "actionstatus": null, + "direct": "2", + "speed": 0.6, + "arf": 0, + "hittarget": null, + "oldaction": null, + "uid": 0, + "lasttime": 0, + "namestr": "", + "hittick": 0, + "initx": 0, + "inity": 0, + "hurtlabel": { + "__id__": 134 + }, + "socket": { + "__id__": 32 + }, + "map": { + "__id__": 5 + }, + "namelabel": { + "__id__": 132 + }, + "actornode": { + "__id__": 123 + }, + "hpbar": { + "__id__": 127 + }, + "attrba": { + "__id__": 38 + }, + "hp": 400, + "hpmax": 400, + "attackvalue": 40, + "def": 2, + "lookrange": 200, + "str": 24, + "min": 9, + "ciptype": "doushi", + "scale": 0.7 + }, + { + "__type__": "cc.Node", + "_name": "monster", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 91 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 62, + "height": 80 + }, + "_children": [ + { + "__id__": 138 + }, + { + "__id__": 142 + }, + { + "__id__": 147 + }, + { + "__id__": 149 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 1967, + "y": 2846 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "213c3lINi9BSbEFURpABDDi", + "_active": true, + "_components": [ + { + "__id__": 151 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "actornode", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 137 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 78, + "height": 76 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.7, + "_scaleY": 0.7, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "b3a31679/ZOYYl3iakz0DTB", + "_active": true, + "_components": [ + { + "__id__": 139 + }, + { + "__id__": 140 + }, + { + "__id__": 141 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 138 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "3c614a2c-a519-4d4f-b6b7-882083a1d9c9" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": { + "__uuid__": "910f9dea-12a3-4df7-84bf-361907871717" + } + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 138 + }, + "_enabled": true, + "_defaultClip": { + "__uuid__": "52c60e0c-5d4a-415b-abf0-94dd135a7a94" + }, + "_clips": [ + { + "__uuid__": "8cfab687-b79e-4af0-9220-4aa7dcd83393" + }, + { + "__uuid__": "52c60e0c-5d4a-415b-abf0-94dd135a7a94" + }, + { + "__uuid__": "b840d92b-4bd3-42ff-89c6-4a858be1027d" + }, + { + "__uuid__": "a4bbfa4e-4ec7-4a14-8948-d7e20ba540f6" + }, + { + "__uuid__": "7532cde0-bbcf-4e9a-a855-8ebdcb36b687" + }, + { + "__uuid__": "f17b56ef-d0d9-42fc-b270-7395232c301e" + }, + { + "__uuid__": "a58d4bef-cdd6-4ff1-b941-2cc19c8a2056" + }, + { + "__uuid__": "4d8dc775-3aa3-4994-bba8-6ad6d3996655" + }, + { + "__uuid__": "d8724798-d194-476d-a975-8ac283cdf498" + }, + { + "__uuid__": "ce609dd7-6ee2-448e-b475-934af3571ed0" + }, + { + "__uuid__": "a4277d13-d005-4ced-ba2f-72472ea3c386" + }, + { + "__uuid__": "b5cd5056-173b-4d37-97b4-d67290d40b25" + }, + { + "__uuid__": "73f3db3b-b8e9-454a-9061-4bb463c21e94" + }, + { + "__uuid__": "aca52b1a-0767-4c57-a59f-ebcebddfa944" + }, + null + ], + "playOnLoad": true + }, + { + "__type__": "7f887eXD/tHULvvZiybIxdj", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 138 + }, + "_enabled": true, + "heronode": { + "__id__": 137 + } + }, + { + "__type__": "cc.Node", + "_name": "hpbar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 137 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 15 + }, + "_children": [ + { + "__id__": 143 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.4, + "_scaleY": 0.4, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 36.8 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "69aadftUQJFy65jFgKi7egp", + "_active": true, + "_components": [ + { + "__id__": 145 + }, + { + "__id__": 146 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "bar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 12, + "g": 121, + "b": 10, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 142 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 99, + "height": 15 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -50, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "3e70cJomQJA57bxBSv0nq9l", + "_active": true, + "_components": [ + { + "__id__": 144 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 143 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "67e68bc9-dad5-4ad9-a2d8-7e03d458e32f" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 142 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "88e79fd5-96b4-4a77-a1f4-312467171014" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.ProgressBar", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 142 + }, + "_enabled": true, + "_N$barSprite": { + "__id__": 144 + }, + "_N$mode": 0, + "_N$totalLength": 100, + "_N$progress": 0.99, + "_N$reverse": false + }, + { + "__type__": "cc.Node", + "_name": "heroname", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 6, + "g": 54, + "b": 31, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 137 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 90, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 59.2 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "9c9c0FMAlBE7JctKRUJEVSZ", + "_active": true, + "_components": [ + { + "__id__": 148 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 147 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "麦迪文", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "hurt", + "_objFlags": 0, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 137 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 33.37, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -1709, + "y": -918 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "8416dTXyLpKvZBgVIgbmjsV", + "_active": true, + "_components": [ + { + "__id__": 150 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 149 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "50", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "6549bA1EsdEk5TKmQX8hpeJ", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 137 + }, + "_enabled": true, + "actiontype": "1", + "actionstatus": null, + "direct": "2", + "speed": 0.6, + "arf": 0, + "hittarget": null, + "oldaction": null, + "uid": 0, + "lasttime": 0, + "namestr": "", + "hittick": 0, + "initx": 0, + "inity": 0, + "hurtlabel": { + "__id__": 149 + }, + "socket": { + "__id__": 32 + }, + "map": { + "__id__": 5 + }, + "namelabel": { + "__id__": 147 + }, + "actornode": { + "__id__": 138 + }, + "hpbar": { + "__id__": 142 + }, + "attrba": { + "__id__": 38 + }, + "hp": 400, + "hpmax": 400, + "attackvalue": 40, + "def": 2, + "lookrange": 200, + "str": 24, + "min": 9, + "ciptype": "doushi", + "scale": 0.7 + }, + { + "__type__": "cc.Node", + "_name": "monster", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 91 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 62, + "height": 80 + }, + "_children": [ + { + "__id__": 153 + }, + { + "__id__": 157 + }, + { + "__id__": 162 + }, + { + "__id__": 164 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 965, + "y": 2906 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "d244cWprIxDdqgu5wqeg5b3", + "_active": true, + "_components": [ + { + "__id__": 166 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "actornode", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 152 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 78, + "height": 76 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.7, + "_scaleY": 0.7, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "c6af0VhXLJLPJNPcyMx240x", + "_active": true, + "_components": [ + { + "__id__": 154 + }, + { + "__id__": 155 + }, + { + "__id__": 156 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 153 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "3c614a2c-a519-4d4f-b6b7-882083a1d9c9" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": { + "__uuid__": "910f9dea-12a3-4df7-84bf-361907871717" + } + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 153 + }, + "_enabled": true, + "_defaultClip": { + "__uuid__": "52c60e0c-5d4a-415b-abf0-94dd135a7a94" + }, + "_clips": [ + { + "__uuid__": "8cfab687-b79e-4af0-9220-4aa7dcd83393" + }, + { + "__uuid__": "52c60e0c-5d4a-415b-abf0-94dd135a7a94" + }, + { + "__uuid__": "b840d92b-4bd3-42ff-89c6-4a858be1027d" + }, + { + "__uuid__": "a4bbfa4e-4ec7-4a14-8948-d7e20ba540f6" + }, + { + "__uuid__": "7532cde0-bbcf-4e9a-a855-8ebdcb36b687" + }, + { + "__uuid__": "f17b56ef-d0d9-42fc-b270-7395232c301e" + }, + { + "__uuid__": "a58d4bef-cdd6-4ff1-b941-2cc19c8a2056" + }, + { + "__uuid__": "4d8dc775-3aa3-4994-bba8-6ad6d3996655" + }, + { + "__uuid__": "d8724798-d194-476d-a975-8ac283cdf498" + }, + { + "__uuid__": "ce609dd7-6ee2-448e-b475-934af3571ed0" + }, + { + "__uuid__": "a4277d13-d005-4ced-ba2f-72472ea3c386" + }, + { + "__uuid__": "b5cd5056-173b-4d37-97b4-d67290d40b25" + }, + { + "__uuid__": "73f3db3b-b8e9-454a-9061-4bb463c21e94" + }, + { + "__uuid__": "aca52b1a-0767-4c57-a59f-ebcebddfa944" + }, + null + ], + "playOnLoad": true + }, + { + "__type__": "7f887eXD/tHULvvZiybIxdj", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 153 + }, + "_enabled": true, + "heronode": { + "__id__": 152 + } + }, + { + "__type__": "cc.Node", + "_name": "hpbar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 152 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 15 + }, + "_children": [ + { + "__id__": 158 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.4, + "_scaleY": 0.4, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 36.8 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "d7f1ebi/CdDhYrcAbJQ3DT3", + "_active": true, + "_components": [ + { + "__id__": 160 + }, + { + "__id__": 161 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "bar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 12, + "g": 121, + "b": 10, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 157 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 99, + "height": 15 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -50, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "4499bM0ucRNJqGeTiZXu6Wr", + "_active": true, + "_components": [ + { + "__id__": 159 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 158 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "67e68bc9-dad5-4ad9-a2d8-7e03d458e32f" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 157 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "88e79fd5-96b4-4a77-a1f4-312467171014" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.ProgressBar", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 157 + }, + "_enabled": true, + "_N$barSprite": { + "__id__": 159 + }, + "_N$mode": 0, + "_N$totalLength": 100, + "_N$progress": 0.99, + "_N$reverse": false + }, + { + "__type__": "cc.Node", + "_name": "heroname", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 6, + "g": 54, + "b": 31, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 152 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 90, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 59.2 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "c5320uxvmtG+ZTwbJboLjh/", + "_active": true, + "_components": [ + { + "__id__": 163 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 162 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "麦迪文", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "hurt", + "_objFlags": 0, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 152 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 33.37, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -1709, + "y": -918 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "c7998z4bJFOGKoyZ8Mu/v3I", + "_active": true, + "_components": [ + { + "__id__": 165 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 164 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "50", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "6549bA1EsdEk5TKmQX8hpeJ", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 152 + }, + "_enabled": true, + "actiontype": "1", + "actionstatus": null, + "direct": "2", + "speed": 0.6, + "arf": 0, + "hittarget": null, + "oldaction": null, + "uid": 0, + "lasttime": 0, + "namestr": "", + "hittick": 0, + "initx": 0, + "inity": 0, + "hurtlabel": { + "__id__": 164 + }, + "socket": { + "__id__": 32 + }, + "map": { + "__id__": 5 + }, + "namelabel": { + "__id__": 162 + }, + "actornode": { + "__id__": 153 + }, + "hpbar": { + "__id__": 157 + }, + "attrba": { + "__id__": 38 + }, + "hp": 400, + "hpmax": 400, + "attackvalue": 40, + "def": 2, + "lookrange": 200, + "str": 24, + "min": 9, + "ciptype": "doushi", + "scale": 0.7 + }, + { + "__type__": "cc.Node", + "_name": "monster", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 91 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 62, + "height": 80 + }, + "_children": [ + { + "__id__": 168 + }, + { + "__id__": 172 + }, + { + "__id__": 177 + }, + { + "__id__": 179 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 1015, + "y": 2876 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "9eb3dXBMpNBb6HvTlLd2n4k", + "_active": true, + "_components": [ + { + "__id__": 181 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "actornode", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 167 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 78, + "height": 76 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.7, + "_scaleY": 0.7, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "b559dveV9xNlI4YNOmYwL2Q", + "_active": true, + "_components": [ + { + "__id__": 169 + }, + { + "__id__": 170 + }, + { + "__id__": 171 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 168 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "3c614a2c-a519-4d4f-b6b7-882083a1d9c9" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": { + "__uuid__": "910f9dea-12a3-4df7-84bf-361907871717" + } + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 168 + }, + "_enabled": true, + "_defaultClip": { + "__uuid__": "52c60e0c-5d4a-415b-abf0-94dd135a7a94" + }, + "_clips": [ + { + "__uuid__": "8cfab687-b79e-4af0-9220-4aa7dcd83393" + }, + { + "__uuid__": "52c60e0c-5d4a-415b-abf0-94dd135a7a94" + }, + { + "__uuid__": "b840d92b-4bd3-42ff-89c6-4a858be1027d" + }, + { + "__uuid__": "a4bbfa4e-4ec7-4a14-8948-d7e20ba540f6" + }, + { + "__uuid__": "7532cde0-bbcf-4e9a-a855-8ebdcb36b687" + }, + { + "__uuid__": "f17b56ef-d0d9-42fc-b270-7395232c301e" + }, + { + "__uuid__": "a58d4bef-cdd6-4ff1-b941-2cc19c8a2056" + }, + { + "__uuid__": "4d8dc775-3aa3-4994-bba8-6ad6d3996655" + }, + { + "__uuid__": "d8724798-d194-476d-a975-8ac283cdf498" + }, + { + "__uuid__": "ce609dd7-6ee2-448e-b475-934af3571ed0" + }, + { + "__uuid__": "a4277d13-d005-4ced-ba2f-72472ea3c386" + }, + { + "__uuid__": "b5cd5056-173b-4d37-97b4-d67290d40b25" + }, + { + "__uuid__": "73f3db3b-b8e9-454a-9061-4bb463c21e94" + }, + { + "__uuid__": "aca52b1a-0767-4c57-a59f-ebcebddfa944" + }, + null + ], + "playOnLoad": true + }, + { + "__type__": "7f887eXD/tHULvvZiybIxdj", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 168 + }, + "_enabled": true, + "heronode": { + "__id__": 167 + } + }, + { + "__type__": "cc.Node", + "_name": "hpbar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 167 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 15 + }, + "_children": [ + { + "__id__": 173 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.4, + "_scaleY": 0.4, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 36.8 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "33a7chUD+RBWYgcvGEvjoYX", + "_active": true, + "_components": [ + { + "__id__": 175 + }, + { + "__id__": 176 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "bar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 12, + "g": 121, + "b": 10, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 172 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 99, + "height": 15 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -50, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "38e5aO5uuZL7KHUNlOculcg", + "_active": true, + "_components": [ + { + "__id__": 174 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 173 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "67e68bc9-dad5-4ad9-a2d8-7e03d458e32f" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 172 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "88e79fd5-96b4-4a77-a1f4-312467171014" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.ProgressBar", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 172 + }, + "_enabled": true, + "_N$barSprite": { + "__id__": 174 + }, + "_N$mode": 0, + "_N$totalLength": 100, + "_N$progress": 0.99, + "_N$reverse": false + }, + { + "__type__": "cc.Node", + "_name": "heroname", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 6, + "g": 54, + "b": 31, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 167 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 90, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 59.2 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "61f14BYKExMk4o+gCtv19Zy", + "_active": true, + "_components": [ + { + "__id__": 178 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 177 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "麦迪文", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "hurt", + "_objFlags": 0, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 167 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 33.37, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -1709, + "y": -918 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "faf60bJ0gJCf4ABwPUwx0+x", + "_active": true, + "_components": [ + { + "__id__": 180 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 179 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "50", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "6549bA1EsdEk5TKmQX8hpeJ", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 167 + }, + "_enabled": true, + "actiontype": "1", + "actionstatus": null, + "direct": "2", + "speed": 0.6, + "arf": 0, + "hittarget": null, + "oldaction": null, + "uid": 0, + "lasttime": 0, + "namestr": "", + "hittick": 0, + "initx": 0, + "inity": 0, + "hurtlabel": { + "__id__": 179 + }, + "socket": { + "__id__": 32 + }, + "map": { + "__id__": 5 + }, + "namelabel": { + "__id__": 177 + }, + "actornode": { + "__id__": 168 + }, + "hpbar": { + "__id__": 172 + }, + "attrba": { + "__id__": 38 + }, + "hp": 400, + "hpmax": 400, + "attackvalue": 40, + "def": 2, + "lookrange": 200, + "str": 24, + "min": 9, + "ciptype": "doushi", + "scale": 0.7 + }, + { + "__type__": "cc.Node", + "_name": "monster", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 91 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 62, + "height": 80 + }, + "_children": [ + { + "__id__": 183 + }, + { + "__id__": 187 + }, + { + "__id__": 192 + }, + { + "__id__": 194 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 197, + "y": 2888 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "88eaatdyLVLj6TEO8fgDT/k", + "_active": true, + "_components": [ + { + "__id__": 196 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "actornode", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 182 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 78, + "height": 76 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.7, + "_scaleY": 0.7, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "48249vJaeFMXI5wKeZrZy8q", + "_active": true, + "_components": [ + { + "__id__": 184 + }, + { + "__id__": 185 + }, + { + "__id__": 186 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 183 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "3c614a2c-a519-4d4f-b6b7-882083a1d9c9" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": { + "__uuid__": "910f9dea-12a3-4df7-84bf-361907871717" + } + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 183 + }, + "_enabled": true, + "_defaultClip": { + "__uuid__": "52c60e0c-5d4a-415b-abf0-94dd135a7a94" + }, + "_clips": [ + { + "__uuid__": "8cfab687-b79e-4af0-9220-4aa7dcd83393" + }, + { + "__uuid__": "52c60e0c-5d4a-415b-abf0-94dd135a7a94" + }, + { + "__uuid__": "b840d92b-4bd3-42ff-89c6-4a858be1027d" + }, + { + "__uuid__": "a4bbfa4e-4ec7-4a14-8948-d7e20ba540f6" + }, + { + "__uuid__": "7532cde0-bbcf-4e9a-a855-8ebdcb36b687" + }, + { + "__uuid__": "f17b56ef-d0d9-42fc-b270-7395232c301e" + }, + { + "__uuid__": "a58d4bef-cdd6-4ff1-b941-2cc19c8a2056" + }, + { + "__uuid__": "4d8dc775-3aa3-4994-bba8-6ad6d3996655" + }, + { + "__uuid__": "d8724798-d194-476d-a975-8ac283cdf498" + }, + { + "__uuid__": "ce609dd7-6ee2-448e-b475-934af3571ed0" + }, + { + "__uuid__": "a4277d13-d005-4ced-ba2f-72472ea3c386" + }, + { + "__uuid__": "b5cd5056-173b-4d37-97b4-d67290d40b25" + }, + { + "__uuid__": "73f3db3b-b8e9-454a-9061-4bb463c21e94" + }, + { + "__uuid__": "aca52b1a-0767-4c57-a59f-ebcebddfa944" + }, + null + ], + "playOnLoad": true + }, + { + "__type__": "7f887eXD/tHULvvZiybIxdj", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 183 + }, + "_enabled": true, + "heronode": { + "__id__": 182 + } + }, + { + "__type__": "cc.Node", + "_name": "hpbar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 182 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 15 + }, + "_children": [ + { + "__id__": 188 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.4, + "_scaleY": 0.4, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 36.8 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "261eet4rf1Ge6ceKzoVeEP3", + "_active": true, + "_components": [ + { + "__id__": 190 + }, + { + "__id__": 191 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "bar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 12, + "g": 121, + "b": 10, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 187 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 99, + "height": 15 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -50, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "1d0af/YheNNf7hgS0udtZPh", + "_active": true, + "_components": [ + { + "__id__": 189 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 188 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "67e68bc9-dad5-4ad9-a2d8-7e03d458e32f" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 187 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "88e79fd5-96b4-4a77-a1f4-312467171014" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.ProgressBar", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 187 + }, + "_enabled": true, + "_N$barSprite": { + "__id__": 189 + }, + "_N$mode": 0, + "_N$totalLength": 100, + "_N$progress": 0.99, + "_N$reverse": false + }, + { + "__type__": "cc.Node", + "_name": "heroname", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 6, + "g": 54, + "b": 31, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 182 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 90, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 59.2 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "9dcd8eC2Z5OYIh8jq9DUWR6", + "_active": true, + "_components": [ + { + "__id__": 193 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 192 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "麦迪文", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "hurt", + "_objFlags": 0, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 182 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 33.37, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -1709, + "y": -918 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "a59ecqepnBOwY/o+VG3FxJO", + "_active": true, + "_components": [ + { + "__id__": 195 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 194 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "50", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "6549bA1EsdEk5TKmQX8hpeJ", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 182 + }, + "_enabled": true, + "actiontype": "1", + "actionstatus": null, + "direct": "2", + "speed": 0.6, + "arf": 0, + "hittarget": null, + "oldaction": null, + "uid": 0, + "lasttime": 0, + "namestr": "", + "hittick": 0, + "initx": 0, + "inity": 0, + "hurtlabel": { + "__id__": 194 + }, + "socket": { + "__id__": 32 + }, + "map": { + "__id__": 5 + }, + "namelabel": { + "__id__": 192 + }, + "actornode": { + "__id__": 183 + }, + "hpbar": { + "__id__": 187 + }, + "attrba": { + "__id__": 38 + }, + "hp": 400, + "hpmax": 400, + "attackvalue": 40, + "def": 2, + "lookrange": 200, + "str": 24, + "min": 9, + "ciptype": "doushi", + "scale": 0.7 + }, + { + "__type__": "cc.Node", + "_name": "monster", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 91 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 62, + "height": 80 + }, + "_children": [ + { + "__id__": 198 + }, + { + "__id__": 202 + }, + { + "__id__": 207 + }, + { + "__id__": 209 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 233, + "y": 2826 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "5658cpx49RJhrd7CPRSoxe9", + "_active": true, + "_components": [ + { + "__id__": 211 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "actornode", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 197 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 78, + "height": 76 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.7, + "_scaleY": 0.7, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "ba33bzp205JEYEscCloMPhM", + "_active": true, + "_components": [ + { + "__id__": 199 + }, + { + "__id__": 200 + }, + { + "__id__": 201 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 198 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "3c614a2c-a519-4d4f-b6b7-882083a1d9c9" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": { + "__uuid__": "910f9dea-12a3-4df7-84bf-361907871717" + } + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 198 + }, + "_enabled": true, + "_defaultClip": { + "__uuid__": "52c60e0c-5d4a-415b-abf0-94dd135a7a94" + }, + "_clips": [ + { + "__uuid__": "8cfab687-b79e-4af0-9220-4aa7dcd83393" + }, + { + "__uuid__": "52c60e0c-5d4a-415b-abf0-94dd135a7a94" + }, + { + "__uuid__": "b840d92b-4bd3-42ff-89c6-4a858be1027d" + }, + { + "__uuid__": "a4bbfa4e-4ec7-4a14-8948-d7e20ba540f6" + }, + { + "__uuid__": "7532cde0-bbcf-4e9a-a855-8ebdcb36b687" + }, + { + "__uuid__": "f17b56ef-d0d9-42fc-b270-7395232c301e" + }, + { + "__uuid__": "a58d4bef-cdd6-4ff1-b941-2cc19c8a2056" + }, + { + "__uuid__": "4d8dc775-3aa3-4994-bba8-6ad6d3996655" + }, + { + "__uuid__": "d8724798-d194-476d-a975-8ac283cdf498" + }, + { + "__uuid__": "ce609dd7-6ee2-448e-b475-934af3571ed0" + }, + { + "__uuid__": "a4277d13-d005-4ced-ba2f-72472ea3c386" + }, + { + "__uuid__": "b5cd5056-173b-4d37-97b4-d67290d40b25" + }, + { + "__uuid__": "73f3db3b-b8e9-454a-9061-4bb463c21e94" + }, + { + "__uuid__": "aca52b1a-0767-4c57-a59f-ebcebddfa944" + }, + null + ], + "playOnLoad": true + }, + { + "__type__": "7f887eXD/tHULvvZiybIxdj", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 198 + }, + "_enabled": true, + "heronode": { + "__id__": 197 + } + }, + { + "__type__": "cc.Node", + "_name": "hpbar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 197 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 15 + }, + "_children": [ + { + "__id__": 203 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.4, + "_scaleY": 0.4, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 36.8 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "476d20ushBLjJFvrQdkzS92", + "_active": true, + "_components": [ + { + "__id__": 205 + }, + { + "__id__": 206 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "bar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 12, + "g": 121, + "b": 10, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 202 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 99, + "height": 15 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -50, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "dad2aj25DdIQb98OJeMdVhv", + "_active": true, + "_components": [ + { + "__id__": 204 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 203 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "67e68bc9-dad5-4ad9-a2d8-7e03d458e32f" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 202 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "88e79fd5-96b4-4a77-a1f4-312467171014" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.ProgressBar", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 202 + }, + "_enabled": true, + "_N$barSprite": { + "__id__": 204 + }, + "_N$mode": 0, + "_N$totalLength": 100, + "_N$progress": 0.99, + "_N$reverse": false + }, + { + "__type__": "cc.Node", + "_name": "heroname", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 6, + "g": 54, + "b": 31, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 197 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 90, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 59.2 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "98be8Oh+ZBJFb6y765xN/xq", + "_active": true, + "_components": [ + { + "__id__": 208 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 207 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "麦迪文", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "hurt", + "_objFlags": 0, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 197 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 33.37, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -1709, + "y": -918 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "f0cbbXeZCtGrq9O9ek97nNn", + "_active": true, + "_components": [ + { + "__id__": 210 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 209 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "50", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "6549bA1EsdEk5TKmQX8hpeJ", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 197 + }, + "_enabled": true, + "actiontype": "1", + "actionstatus": null, + "direct": "2", + "speed": 0.6, + "arf": 0, + "hittarget": null, + "oldaction": null, + "uid": 0, + "lasttime": 0, + "namestr": "", + "hittick": 0, + "initx": 0, + "inity": 0, + "hurtlabel": { + "__id__": 209 + }, + "socket": { + "__id__": 32 + }, + "map": { + "__id__": 5 + }, + "namelabel": { + "__id__": 207 + }, + "actornode": { + "__id__": 198 + }, + "hpbar": { + "__id__": 202 + }, + "attrba": { + "__id__": 38 + }, + "hp": 400, + "hpmax": 400, + "attackvalue": 40, + "def": 2, + "lookrange": 200, + "str": 24, + "min": 9, + "ciptype": "doushi", + "scale": 0.7 + }, + { + "__type__": "cc.Node", + "_name": "monster", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 91 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 62, + "height": 80 + }, + "_children": [ + { + "__id__": 213 + }, + { + "__id__": 217 + }, + { + "__id__": 222 + }, + { + "__id__": 224 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 233, + "y": 1781 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "088cdjjFlpLzItgyhSkzMf2", + "_active": true, + "_components": [ + { + "__id__": 226 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "actornode", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 212 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 78, + "height": 76 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.7, + "_scaleY": 0.7, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "ee16cQEsoxOjLoSFLklRo2D", + "_active": true, + "_components": [ + { + "__id__": 214 + }, + { + "__id__": 215 + }, + { + "__id__": 216 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 213 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "3c614a2c-a519-4d4f-b6b7-882083a1d9c9" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": { + "__uuid__": "910f9dea-12a3-4df7-84bf-361907871717" + } + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 213 + }, + "_enabled": true, + "_defaultClip": { + "__uuid__": "52c60e0c-5d4a-415b-abf0-94dd135a7a94" + }, + "_clips": [ + { + "__uuid__": "8cfab687-b79e-4af0-9220-4aa7dcd83393" + }, + { + "__uuid__": "52c60e0c-5d4a-415b-abf0-94dd135a7a94" + }, + { + "__uuid__": "b840d92b-4bd3-42ff-89c6-4a858be1027d" + }, + { + "__uuid__": "a4bbfa4e-4ec7-4a14-8948-d7e20ba540f6" + }, + { + "__uuid__": "7532cde0-bbcf-4e9a-a855-8ebdcb36b687" + }, + { + "__uuid__": "f17b56ef-d0d9-42fc-b270-7395232c301e" + }, + { + "__uuid__": "a58d4bef-cdd6-4ff1-b941-2cc19c8a2056" + }, + { + "__uuid__": "4d8dc775-3aa3-4994-bba8-6ad6d3996655" + }, + { + "__uuid__": "d8724798-d194-476d-a975-8ac283cdf498" + }, + { + "__uuid__": "ce609dd7-6ee2-448e-b475-934af3571ed0" + }, + { + "__uuid__": "a4277d13-d005-4ced-ba2f-72472ea3c386" + }, + { + "__uuid__": "b5cd5056-173b-4d37-97b4-d67290d40b25" + }, + { + "__uuid__": "73f3db3b-b8e9-454a-9061-4bb463c21e94" + }, + { + "__uuid__": "aca52b1a-0767-4c57-a59f-ebcebddfa944" + }, + null + ], + "playOnLoad": true + }, + { + "__type__": "7f887eXD/tHULvvZiybIxdj", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 213 + }, + "_enabled": true, + "heronode": { + "__id__": 212 + } + }, + { + "__type__": "cc.Node", + "_name": "hpbar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 212 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 15 + }, + "_children": [ + { + "__id__": 218 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.4, + "_scaleY": 0.4, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 36.8 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "739e03dFQVO/6omTOGMXA8Q", + "_active": true, + "_components": [ + { + "__id__": 220 + }, + { + "__id__": 221 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "bar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 12, + "g": 121, + "b": 10, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 217 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 99, + "height": 15 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -50, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "966f0vdMohBU44VD46RAjGA", + "_active": true, + "_components": [ + { + "__id__": 219 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 218 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "67e68bc9-dad5-4ad9-a2d8-7e03d458e32f" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 217 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "88e79fd5-96b4-4a77-a1f4-312467171014" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.ProgressBar", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 217 + }, + "_enabled": true, + "_N$barSprite": { + "__id__": 219 + }, + "_N$mode": 0, + "_N$totalLength": 100, + "_N$progress": 0.99, + "_N$reverse": false + }, + { + "__type__": "cc.Node", + "_name": "heroname", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 6, + "g": 54, + "b": 31, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 212 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 90, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 59.2 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "6735fVITpNOIaVHGZk4n9u4", + "_active": true, + "_components": [ + { + "__id__": 223 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 222 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "麦迪文", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "hurt", + "_objFlags": 0, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 212 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 33.37, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -1709, + "y": -918 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "5414ch3izxIHaGaru908ux3", + "_active": true, + "_components": [ + { + "__id__": 225 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 224 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "50", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "6549bA1EsdEk5TKmQX8hpeJ", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 212 + }, + "_enabled": true, + "actiontype": "1", + "actionstatus": null, + "direct": "2", + "speed": 0.6, + "arf": 0, + "hittarget": null, + "oldaction": null, + "uid": 0, + "lasttime": 0, + "namestr": "", + "hittick": 0, + "initx": 0, + "inity": 0, + "hurtlabel": { + "__id__": 224 + }, + "socket": { + "__id__": 32 + }, + "map": { + "__id__": 5 + }, + "namelabel": { + "__id__": 222 + }, + "actornode": { + "__id__": 213 + }, + "hpbar": { + "__id__": 217 + }, + "attrba": { + "__id__": 38 + }, + "hp": 400, + "hpmax": 400, + "attackvalue": 40, + "def": 2, + "lookrange": 200, + "str": 24, + "min": 9, + "ciptype": "doushi", + "scale": 0.7 + }, + { + "__type__": "cc.Node", + "_name": "monster", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 91 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 62, + "height": 80 + }, + "_children": [ + { + "__id__": 228 + }, + { + "__id__": 232 + }, + { + "__id__": 237 + }, + { + "__id__": 239 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 420, + "y": 760 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "b7e77TnNk9Gu7NwMkenuuHE", + "_active": true, + "_components": [ + { + "__id__": 241 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "actornode", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 227 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 78, + "height": 76 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.7, + "_scaleY": 0.7, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "965baaDqvxNSbhD6qldfGux", + "_active": true, + "_components": [ + { + "__id__": 229 + }, + { + "__id__": 230 + }, + { + "__id__": 231 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 228 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "3c614a2c-a519-4d4f-b6b7-882083a1d9c9" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": { + "__uuid__": "910f9dea-12a3-4df7-84bf-361907871717" + } + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 228 + }, + "_enabled": true, + "_defaultClip": { + "__uuid__": "52c60e0c-5d4a-415b-abf0-94dd135a7a94" + }, + "_clips": [ + { + "__uuid__": "8cfab687-b79e-4af0-9220-4aa7dcd83393" + }, + { + "__uuid__": "52c60e0c-5d4a-415b-abf0-94dd135a7a94" + }, + { + "__uuid__": "b840d92b-4bd3-42ff-89c6-4a858be1027d" + }, + { + "__uuid__": "a4bbfa4e-4ec7-4a14-8948-d7e20ba540f6" + }, + { + "__uuid__": "7532cde0-bbcf-4e9a-a855-8ebdcb36b687" + }, + { + "__uuid__": "f17b56ef-d0d9-42fc-b270-7395232c301e" + }, + { + "__uuid__": "a58d4bef-cdd6-4ff1-b941-2cc19c8a2056" + }, + { + "__uuid__": "4d8dc775-3aa3-4994-bba8-6ad6d3996655" + }, + { + "__uuid__": "d8724798-d194-476d-a975-8ac283cdf498" + }, + { + "__uuid__": "ce609dd7-6ee2-448e-b475-934af3571ed0" + }, + { + "__uuid__": "a4277d13-d005-4ced-ba2f-72472ea3c386" + }, + { + "__uuid__": "b5cd5056-173b-4d37-97b4-d67290d40b25" + }, + { + "__uuid__": "73f3db3b-b8e9-454a-9061-4bb463c21e94" + }, + { + "__uuid__": "aca52b1a-0767-4c57-a59f-ebcebddfa944" + }, + null + ], + "playOnLoad": true + }, + { + "__type__": "7f887eXD/tHULvvZiybIxdj", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 228 + }, + "_enabled": true, + "heronode": { + "__id__": 227 + } + }, + { + "__type__": "cc.Node", + "_name": "hpbar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 227 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 15 + }, + "_children": [ + { + "__id__": 233 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.4, + "_scaleY": 0.4, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 36.8 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "87dd8FEDrRHb4qLSsbkW6Bo", + "_active": true, + "_components": [ + { + "__id__": 235 + }, + { + "__id__": 236 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "bar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 12, + "g": 121, + "b": 10, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 232 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 99, + "height": 15 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -50, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "5108fNJXzhIw67U6s5uPg4o", + "_active": true, + "_components": [ + { + "__id__": 234 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 233 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "67e68bc9-dad5-4ad9-a2d8-7e03d458e32f" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 232 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "88e79fd5-96b4-4a77-a1f4-312467171014" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.ProgressBar", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 232 + }, + "_enabled": true, + "_N$barSprite": { + "__id__": 234 + }, + "_N$mode": 0, + "_N$totalLength": 100, + "_N$progress": 0.99, + "_N$reverse": false + }, + { + "__type__": "cc.Node", + "_name": "heroname", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 6, + "g": 54, + "b": 31, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 227 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 90, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 59.2 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "aa87dbt/XpLqKOtC1k/TR0c", + "_active": true, + "_components": [ + { + "__id__": 238 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 237 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "麦迪文", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "hurt", + "_objFlags": 0, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 227 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 33.37, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -1709, + "y": -918 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "aee6bkF7O5DA4BFLB5kecIq", + "_active": true, + "_components": [ + { + "__id__": 240 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 239 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "50", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "6549bA1EsdEk5TKmQX8hpeJ", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 227 + }, + "_enabled": true, + "actiontype": "1", + "actionstatus": null, + "direct": "2", + "speed": 0.6, + "arf": 0, + "hittarget": null, + "oldaction": null, + "uid": 0, + "lasttime": 0, + "namestr": "", + "hittick": 0, + "initx": 0, + "inity": 0, + "hurtlabel": { + "__id__": 239 + }, + "socket": { + "__id__": 32 + }, + "map": { + "__id__": 5 + }, + "namelabel": { + "__id__": 237 + }, + "actornode": { + "__id__": 228 + }, + "hpbar": { + "__id__": 232 + }, + "attrba": { + "__id__": 38 + }, + "hp": 400, + "hpmax": 400, + "attackvalue": 40, + "def": 2, + "lookrange": 200, + "str": 24, + "min": 9, + "ciptype": "doushi", + "scale": 0.7 + }, + { + "__type__": "cc.Node", + "_name": "monster", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 91 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 62, + "height": 80 + }, + "_children": [ + { + "__id__": 243 + }, + { + "__id__": 247 + }, + { + "__id__": 252 + }, + { + "__id__": 254 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 420, + "y": 221 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "1601f7YEKNPIqzKQ5bB7B70", + "_active": true, + "_components": [ + { + "__id__": 256 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "actornode", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 242 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 78, + "height": 76 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.7, + "_scaleY": 0.7, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "6029fo3RfVJwq/x1iqWlK7x", + "_active": true, + "_components": [ + { + "__id__": 244 + }, + { + "__id__": 245 + }, + { + "__id__": 246 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 243 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "3c614a2c-a519-4d4f-b6b7-882083a1d9c9" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": { + "__uuid__": "910f9dea-12a3-4df7-84bf-361907871717" + } + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 243 + }, + "_enabled": true, + "_defaultClip": { + "__uuid__": "52c60e0c-5d4a-415b-abf0-94dd135a7a94" + }, + "_clips": [ + { + "__uuid__": "8cfab687-b79e-4af0-9220-4aa7dcd83393" + }, + { + "__uuid__": "52c60e0c-5d4a-415b-abf0-94dd135a7a94" + }, + { + "__uuid__": "b840d92b-4bd3-42ff-89c6-4a858be1027d" + }, + { + "__uuid__": "a4bbfa4e-4ec7-4a14-8948-d7e20ba540f6" + }, + { + "__uuid__": "7532cde0-bbcf-4e9a-a855-8ebdcb36b687" + }, + { + "__uuid__": "f17b56ef-d0d9-42fc-b270-7395232c301e" + }, + { + "__uuid__": "a58d4bef-cdd6-4ff1-b941-2cc19c8a2056" + }, + { + "__uuid__": "4d8dc775-3aa3-4994-bba8-6ad6d3996655" + }, + { + "__uuid__": "d8724798-d194-476d-a975-8ac283cdf498" + }, + { + "__uuid__": "ce609dd7-6ee2-448e-b475-934af3571ed0" + }, + { + "__uuid__": "a4277d13-d005-4ced-ba2f-72472ea3c386" + }, + { + "__uuid__": "b5cd5056-173b-4d37-97b4-d67290d40b25" + }, + { + "__uuid__": "73f3db3b-b8e9-454a-9061-4bb463c21e94" + }, + { + "__uuid__": "aca52b1a-0767-4c57-a59f-ebcebddfa944" + }, + null + ], + "playOnLoad": true + }, + { + "__type__": "7f887eXD/tHULvvZiybIxdj", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 243 + }, + "_enabled": true, + "heronode": { + "__id__": 242 + } + }, + { + "__type__": "cc.Node", + "_name": "hpbar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 242 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 15 + }, + "_children": [ + { + "__id__": 248 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.4, + "_scaleY": 0.4, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 36.8 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "41c95j+CulHSYy5tjhnfT8Z", + "_active": true, + "_components": [ + { + "__id__": 250 + }, + { + "__id__": 251 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "bar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 12, + "g": 121, + "b": 10, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 247 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 99, + "height": 15 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -50, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "6ce4dkKShVIuajTq64spZuY", + "_active": true, + "_components": [ + { + "__id__": 249 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 248 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "67e68bc9-dad5-4ad9-a2d8-7e03d458e32f" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 247 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "88e79fd5-96b4-4a77-a1f4-312467171014" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.ProgressBar", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 247 + }, + "_enabled": true, + "_N$barSprite": { + "__id__": 249 + }, + "_N$mode": 0, + "_N$totalLength": 100, + "_N$progress": 0.99, + "_N$reverse": false + }, + { + "__type__": "cc.Node", + "_name": "heroname", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 6, + "g": 54, + "b": 31, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 242 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 90, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 59.2 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "7256dARlpFLprcWufHg9qW7", + "_active": true, + "_components": [ + { + "__id__": 253 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 252 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "麦迪文", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "hurt", + "_objFlags": 0, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 242 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 33.37, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -1709, + "y": -918 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "68b20bMH3hEDYJrE6xYHukr", + "_active": true, + "_components": [ + { + "__id__": 255 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 254 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "50", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "6549bA1EsdEk5TKmQX8hpeJ", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 242 + }, + "_enabled": true, + "actiontype": "1", + "actionstatus": null, + "direct": "2", + "speed": 0.6, + "arf": 0, + "hittarget": null, + "oldaction": null, + "uid": 0, + "lasttime": 0, + "namestr": "", + "hittick": 0, + "initx": 0, + "inity": 0, + "hurtlabel": { + "__id__": 254 + }, + "socket": { + "__id__": 32 + }, + "map": { + "__id__": 5 + }, + "namelabel": { + "__id__": 252 + }, + "actornode": { + "__id__": 243 + }, + "hpbar": { + "__id__": 247 + }, + "attrba": { + "__id__": 38 + }, + "hp": 400, + "hpmax": 400, + "attackvalue": 40, + "def": 2, + "lookrange": 200, + "str": 24, + "min": 9, + "ciptype": "doushi", + "scale": 0.7 + }, + { + "__type__": "cc.Node", + "_name": "monster", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 91 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 62, + "height": 80 + }, + "_children": [ + { + "__id__": 258 + }, + { + "__id__": 262 + }, + { + "__id__": 267 + }, + { + "__id__": 269 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 1516, + "y": 150 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "d769ff9eLVGnZjqIH3zswry", + "_active": true, + "_components": [ + { + "__id__": 271 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "actornode", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 257 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 78, + "height": 76 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.7, + "_scaleY": 0.7, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "b813aI0xx1BE4GOB9JrZgb+", + "_active": true, + "_components": [ + { + "__id__": 259 + }, + { + "__id__": 260 + }, + { + "__id__": 261 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 258 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "3c614a2c-a519-4d4f-b6b7-882083a1d9c9" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": { + "__uuid__": "910f9dea-12a3-4df7-84bf-361907871717" + } + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 258 + }, + "_enabled": true, + "_defaultClip": { + "__uuid__": "52c60e0c-5d4a-415b-abf0-94dd135a7a94" + }, + "_clips": [ + { + "__uuid__": "8cfab687-b79e-4af0-9220-4aa7dcd83393" + }, + { + "__uuid__": "52c60e0c-5d4a-415b-abf0-94dd135a7a94" + }, + { + "__uuid__": "b840d92b-4bd3-42ff-89c6-4a858be1027d" + }, + { + "__uuid__": "a4bbfa4e-4ec7-4a14-8948-d7e20ba540f6" + }, + { + "__uuid__": "7532cde0-bbcf-4e9a-a855-8ebdcb36b687" + }, + { + "__uuid__": "f17b56ef-d0d9-42fc-b270-7395232c301e" + }, + { + "__uuid__": "a58d4bef-cdd6-4ff1-b941-2cc19c8a2056" + }, + { + "__uuid__": "4d8dc775-3aa3-4994-bba8-6ad6d3996655" + }, + { + "__uuid__": "d8724798-d194-476d-a975-8ac283cdf498" + }, + { + "__uuid__": "ce609dd7-6ee2-448e-b475-934af3571ed0" + }, + { + "__uuid__": "a4277d13-d005-4ced-ba2f-72472ea3c386" + }, + { + "__uuid__": "b5cd5056-173b-4d37-97b4-d67290d40b25" + }, + { + "__uuid__": "73f3db3b-b8e9-454a-9061-4bb463c21e94" + }, + { + "__uuid__": "aca52b1a-0767-4c57-a59f-ebcebddfa944" + }, + null + ], + "playOnLoad": true + }, + { + "__type__": "7f887eXD/tHULvvZiybIxdj", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 258 + }, + "_enabled": true, + "heronode": { + "__id__": 257 + } + }, + { + "__type__": "cc.Node", + "_name": "hpbar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 257 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 15 + }, + "_children": [ + { + "__id__": 263 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.4, + "_scaleY": 0.4, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 36.8 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "89bec8ADRlG+42ksCCKWyKy", + "_active": true, + "_components": [ + { + "__id__": 265 + }, + { + "__id__": 266 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "bar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 12, + "g": 121, + "b": 10, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 262 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 99, + "height": 15 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -50, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "01677Ltaj9Fw54EAIe6sbYC", + "_active": true, + "_components": [ + { + "__id__": 264 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 263 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "67e68bc9-dad5-4ad9-a2d8-7e03d458e32f" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 262 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "88e79fd5-96b4-4a77-a1f4-312467171014" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.ProgressBar", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 262 + }, + "_enabled": true, + "_N$barSprite": { + "__id__": 264 + }, + "_N$mode": 0, + "_N$totalLength": 100, + "_N$progress": 0.99, + "_N$reverse": false + }, + { + "__type__": "cc.Node", + "_name": "heroname", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 6, + "g": 54, + "b": 31, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 257 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 90, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 59.2 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "9b2607vfRBJs4vDMHDodZ8U", + "_active": true, + "_components": [ + { + "__id__": 268 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 267 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "麦迪文", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "hurt", + "_objFlags": 0, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 257 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 33.37, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -1709, + "y": -918 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "deff7JPz3RNBJtP72pdEMgo", + "_active": true, + "_components": [ + { + "__id__": 270 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 269 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "50", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "6549bA1EsdEk5TKmQX8hpeJ", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 257 + }, + "_enabled": true, + "actiontype": "1", + "actionstatus": null, + "direct": "2", + "speed": 0.6, + "arf": 0, + "hittarget": null, + "oldaction": null, + "uid": 0, + "lasttime": 0, + "namestr": "", + "hittick": 0, + "initx": 0, + "inity": 0, + "hurtlabel": { + "__id__": 269 + }, + "socket": { + "__id__": 32 + }, + "map": { + "__id__": 5 + }, + "namelabel": { + "__id__": 267 + }, + "actornode": { + "__id__": 258 + }, + "hpbar": { + "__id__": 262 + }, + "attrba": { + "__id__": 38 + }, + "hp": 400, + "hpmax": 400, + "attackvalue": 40, + "def": 2, + "lookrange": 200, + "str": 24, + "min": 9, + "ciptype": "doushi", + "scale": 0.7 + }, + { + "__type__": "cc.Node", + "_name": "monster", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 91 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 62, + "height": 80 + }, + "_children": [ + { + "__id__": 273 + }, + { + "__id__": 277 + }, + { + "__id__": 282 + }, + { + "__id__": 284 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 2570, + "y": 432 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "2518ejuq6BOopAH5ELRISup", + "_active": true, + "_components": [ + { + "__id__": 286 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "actornode", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 272 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 78, + "height": 76 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.7, + "_scaleY": 0.7, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "66c44t8MIhD6L/KLdL89L57", + "_active": true, + "_components": [ + { + "__id__": 274 + }, + { + "__id__": 275 + }, + { + "__id__": 276 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 273 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "3c614a2c-a519-4d4f-b6b7-882083a1d9c9" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": { + "__uuid__": "910f9dea-12a3-4df7-84bf-361907871717" + } + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 273 + }, + "_enabled": true, + "_defaultClip": { + "__uuid__": "52c60e0c-5d4a-415b-abf0-94dd135a7a94" + }, + "_clips": [ + { + "__uuid__": "8cfab687-b79e-4af0-9220-4aa7dcd83393" + }, + { + "__uuid__": "52c60e0c-5d4a-415b-abf0-94dd135a7a94" + }, + { + "__uuid__": "b840d92b-4bd3-42ff-89c6-4a858be1027d" + }, + { + "__uuid__": "a4bbfa4e-4ec7-4a14-8948-d7e20ba540f6" + }, + { + "__uuid__": "7532cde0-bbcf-4e9a-a855-8ebdcb36b687" + }, + { + "__uuid__": "f17b56ef-d0d9-42fc-b270-7395232c301e" + }, + { + "__uuid__": "a58d4bef-cdd6-4ff1-b941-2cc19c8a2056" + }, + { + "__uuid__": "4d8dc775-3aa3-4994-bba8-6ad6d3996655" + }, + { + "__uuid__": "d8724798-d194-476d-a975-8ac283cdf498" + }, + { + "__uuid__": "ce609dd7-6ee2-448e-b475-934af3571ed0" + }, + { + "__uuid__": "a4277d13-d005-4ced-ba2f-72472ea3c386" + }, + { + "__uuid__": "b5cd5056-173b-4d37-97b4-d67290d40b25" + }, + { + "__uuid__": "73f3db3b-b8e9-454a-9061-4bb463c21e94" + }, + { + "__uuid__": "aca52b1a-0767-4c57-a59f-ebcebddfa944" + }, + null + ], + "playOnLoad": true + }, + { + "__type__": "7f887eXD/tHULvvZiybIxdj", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 273 + }, + "_enabled": true, + "heronode": { + "__id__": 272 + } + }, + { + "__type__": "cc.Node", + "_name": "hpbar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 272 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 15 + }, + "_children": [ + { + "__id__": 278 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 0.4, + "_scaleY": 0.4, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 36.8 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "6f127YZqPZCRpw5YWqJn9qq", + "_active": true, + "_components": [ + { + "__id__": 280 + }, + { + "__id__": 281 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "bar", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 12, + "g": 121, + "b": 10, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 277 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 99, + "height": 15 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -50, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "90146DYQqtMboAPRPhAZ0m0", + "_active": true, + "_components": [ + { + "__id__": 279 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 278 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "67e68bc9-dad5-4ad9-a2d8-7e03d458e32f" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 277 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "88e79fd5-96b4-4a77-a1f4-312467171014" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.ProgressBar", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 277 + }, + "_enabled": true, + "_N$barSprite": { + "__id__": 279 + }, + "_N$mode": 0, + "_N$totalLength": 100, + "_N$progress": 0.99, + "_N$reverse": false + }, + { + "__type__": "cc.Node", + "_name": "heroname", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 6, + "g": 54, + "b": 31, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 272 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 90, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 59.2 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "569e18e5y5EvZ/zQHqtTd8V", + "_active": true, + "_components": [ + { + "__id__": 283 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 282 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "麦迪文", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "hurt", + "_objFlags": 0, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 272 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 33.37, + "height": 30 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -1709, + "y": -918 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "3cbbewlehxBHImB8e6KgAQy", + "_active": true, + "_components": [ + { + "__id__": 285 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 284 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "50", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "6549bA1EsdEk5TKmQX8hpeJ", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 272 + }, + "_enabled": true, + "actiontype": "1", + "actionstatus": null, + "direct": "2", + "speed": 0.6, + "arf": 0, + "hittarget": null, + "oldaction": null, + "uid": 0, + "lasttime": 0, + "namestr": "", + "hittick": 0, + "initx": 0, + "inity": 0, + "hurtlabel": { + "__id__": 284 + }, + "socket": { + "__id__": 32 + }, + "map": { + "__id__": 5 + }, + "namelabel": { + "__id__": 282 + }, + "actornode": { + "__id__": 273 + }, + "hpbar": { + "__id__": 277 + }, + "attrba": { + "__id__": 38 + }, + "hp": 400, + "hpmax": 400, + "attackvalue": 40, + "def": 2, + "lookrange": 200, + "str": 24, + "min": 9, + "ciptype": "doushi", + "scale": 0.7 + }, + { + "__type__": "67378pKgAROzYIzJFIRsiAT", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 91 + }, + "_enabled": true, + "map": { + "__id__": 5 + }, + "monster": { + "__id__": 62 + } + }, + { + "__type__": "cc.Node", + "_name": "actor", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 3200, + "height": 3200 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "a1c8dVteTRFI5ipHI8XO1Uh", + "_active": true, + "_components": [ + { + "__id__": 289 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.TiledLayer", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 288 + }, + "_enabled": true + }, + { + "__type__": "cc.Node", + "_name": "plant", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 3200, + "height": 3200 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "9f14fA+Rf1LuaNtCrOUYIFP", + "_active": true, + "_components": [ + { + "__id__": 291 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.TiledLayer", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 290 + }, + "_enabled": true + }, + { + "__type__": "cc.Node", + "_name": "pass_dot", + "_objFlags": 0, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 36, + "height": 35 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 127, + "y": 295 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "75579Dk1KFG86mtPGcqBt1R", + "_active": true, + "_components": [ + { + "__id__": 293 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 292 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "884dab8a-37b9-4829-99d7-a208dde30ac1" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.TiledMap", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_tmxFile": { + "__uuid__": "751fe82c-dc0d-44f3-b4e0-4a5cf212dd0b" + } + }, + { + "__type__": "94676hRSvJBFYlsklMOH6/E", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "socket": { + "__id__": 32 + }, + "loading": { + "__id__": 296 + }, + "hero": { + "__id__": 8 + }, + "time": { + "__id__": 317 + }, + "heroself": null, + "herolist": { + "__id__": 90 + }, + "monsterlist": { + "__id__": 91 + }, + "dt": 0, + "curtick": 0, + "animationspeed": 1, + "ticklist": [], + "maxtick": 0, + "uid": 0 + }, + { + "__type__": "cc.Node", + "_name": "loading", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 35, + "g": 31, + "b": 213, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 297 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 102.3, + "height": 40 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 171, + "y": -187 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "2d93f4LgVZOqZ+F8XfZ7uCq", + "_active": false, + "_components": [ + { + "__id__": 316 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "login", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 245, + "g": 240, + "b": 240, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 1 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1400, + "height": 640 + }, + "_children": [ + { + "__id__": 298 + }, + { + "__id__": 296 + }, + { + "__id__": 300 + }, + { + "__id__": 306 + }, + { + "__id__": 308 + }, + { + "__id__": 310 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 480, + "y": 320 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "e4859ez585C3JY3R6yWSMzu", + "_active": false, + "_components": [ + { + "__id__": 312 + }, + { + "__id__": 313 + }, + { + "__id__": 314 + }, + { + "__id__": 315 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "title", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 12, + "g": 12, + "b": 14, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 297 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 240, + "height": 60 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -5, + "y": 233 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "29a473NZ5hJob7YEmVz+kGv", + "_active": true, + "_components": [ + { + "__id__": 299 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 298 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 60, + "_lineHeight": 60, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "南极肉搏", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "start", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 297 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 250, + "height": 100 + }, + "_children": [ + { + "__id__": 301 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 174, + "y": -191 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "a0380fiZ3dGqKbxcxCEIUpy", + "_active": true, + "_components": [ + { + "__id__": 303 + }, + { + "__id__": 304 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "Label", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 300 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 50 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 3 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "06797zhqQZLToVvZ52/Bkht", + "_active": true, + "_components": [ + { + "__id__": 302 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 301 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": false, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "开始游戏", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 1 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 300 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "7edbbac5-01fb-426f-8610-0544dbf81cc8" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 300 + }, + "_enabled": true, + "transition": 2, + "pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "duration": 0.1, + "pressedSprite": { + "__uuid__": "09370396-2114-4830-ab80-2c3ca4fd736a" + }, + "hoverSprite": { + "__uuid__": "09370396-2114-4830-ab80-2c3ca4fd736a" + }, + "clickEvents": [ + { + "__id__": 305 + } + ], + "_N$interactable": true, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$normalSprite": { + "__uuid__": "7edbbac5-01fb-426f-8610-0544dbf81cc8" + }, + "_N$disabledSprite": { + "__uuid__": "7edbbac5-01fb-426f-8610-0544dbf81cc8" + }, + "_N$target": { + "__id__": 300 + } + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 297 + }, + "component": "login", + "handler": "load" + }, + { + "__type__": "cc.Node", + "_name": "name", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 297 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 250, + "height": 60 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 172, + "y": -77 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "482c0PhDCBHKqsWLPkBC9lS", + "_active": true, + "_components": [ + { + "__id__": 307 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.EditBox", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 306 + }, + "_enabled": true, + "_useOriginalSize": false, + "_string": "", + "editingDidBegan": [], + "textChanged": [], + "editingDidEnded": [], + "_N$backgroundImage": { + "__uuid__": "67e68bc9-dad5-4ad9-a2d8-7e03d458e32f" + }, + "_N$returnType": 0, + "_N$inputFlag": 3, + "_N$inputMode": 6, + "_N$fontSize": 40, + "_N$lineHeight": 40, + "_N$fontColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_N$placeholder": "输入玩家名", + "_N$placeholderFontSize": 36, + "_N$placeholderFontColor": { + "__type__": "cc.Color", + "r": 127.5, + "g": 127.5, + "b": 127.5, + "a": 255 + }, + "_N$maxLength": 8 + }, + { + "__type__": "cc.Node", + "_name": "jieshao", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 54, + "g": 51, + "b": 187, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 297 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 360, + "height": 160 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 189, + "y": 51 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "85faal21SJAn4h9rs/wO2qa", + "_active": true, + "_components": [ + { + "__id__": 309 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 308 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "山岭巨人的肉搏竞技\n,最终的胜者将获得\n挑战肉山王的机会\n", + "_N$horizontalAlign": 0, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "x", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 297 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 331, + "height": 375 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -270, + "y": -53 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "dd8e5QVzPpD0ZeyU38vIksY", + "_active": true, + "_components": [ + { + "__id__": 311 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 310 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "9d941b26-2b7b-4c46-953c-fe5ae6d075f6" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 297 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "9bbda31e-ad49-43c9-aaf2-f7d9896bac69" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 297 + }, + "_enabled": true, + "_layoutSize": { + "__type__": "cc.Size", + "width": 1400, + "height": 640 + }, + "_resize": 0, + "_N$layoutType": 0, + "_N$cellSize": { + "__type__": "cc.Size", + "width": 40, + "height": 40 + }, + "_N$startAxis": 0, + "_N$padding": 0, + "_N$spacingX": 0, + "_N$spacingY": 0, + "_N$verticalDirection": 1, + "_N$horizontalDirection": 0 + }, + { + "__type__": "84273Nzz9BCw585kvcNDVNw", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 297 + }, + "_enabled": true, + "socket": { + "__id__": 32 + }, + "namelabel": { + "__id__": 306 + } + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 297 + }, + "_enabled": true, + "isAlignOnce": false, + "_alignFlags": 16, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_originalWidth": 0, + "_originalHeight": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 296 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "100%", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "time", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 8, + "g": 8, + "b": 8, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 1 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 40 + }, + "_children": [ + { + "__id__": 318 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 480, + "y": 599 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "58b67sBAVJCNoptmgOmAvdZ", + "_active": true, + "_components": [ + { + "__id__": 320 + }, + { + "__id__": 321 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 317 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 63, + "height": 67 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -81, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "80856G5IANDbLXPNquO/025", + "_active": true, + "_components": [ + { + "__id__": 319 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 318 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "1e0cd132-4525-43a7-9ac0-efd191ee8ee4" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 317 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 317 + }, + "_enabled": true, + "isAlignOnce": false, + "_alignFlags": 17, + "_left": 351, + "_right": 369, + "_top": 21, + "_bottom": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_originalWidth": 240, + "_originalHeight": 0 + }, + { + "__type__": "cc.Node", + "_name": "attr", + "_objFlags": 0, + "_opacity": 100, + "_color": { + "__type__": "cc.Color", + "r": 59, + "g": 56, + "b": 56, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 1 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 1 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 110, + "height": 120 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 75.7, + "y": 630 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "a8ba2hoVCdIm53yypwDj5OH", + "_active": true, + "_components": [ + { + "__id__": 323 + }, + { + "__id__": 324 + }, + { + "__id__": 325 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 322 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "9bbda31e-ad49-43c9-aaf2-f7d9896bac69" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 322 + }, + "_enabled": true, + "_layoutSize": { + "__type__": "cc.Size", + "width": 110, + "height": 120 + }, + "_resize": 0, + "_N$layoutType": 0, + "_N$cellSize": { + "__type__": "cc.Size", + "width": 40, + "height": 40 + }, + "_N$startAxis": 0, + "_N$padding": 0, + "_N$spacingX": 0, + "_N$spacingY": 0, + "_N$verticalDirection": 1, + "_N$horizontalDirection": 0 + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 322 + }, + "_enabled": true, + "isAlignOnce": false, + "_alignFlags": 9, + "_left": 20.700000000000003, + "_right": 0, + "_top": 10, + "_bottom": 430, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_originalWidth": 0, + "_originalHeight": 200 + }, + { + "__type__": "cc.Node", + "_name": "equips", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 1 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_children": [ + { + "__id__": 327 + }, + { + "__id__": 331 + }, + { + "__id__": 333 + }, + { + "__id__": 337 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 319, + "y": 21 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "b1d6b9pH81KMJJQ86YHlGDO", + "_active": true, + "_components": [ + { + "__id__": 341 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "equip_frame_blue1", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 326 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 86, + "height": 86 + }, + "_children": [ + { + "__id__": 328 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 44, + "y": 48 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "2de45yepbBHwLEDfHkFAHgc", + "_active": true, + "_components": [ + { + "__id__": 330 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "equip_frame_blue1", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 327 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 86, + "height": 86 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "e85barUje1JVpMkfiYfAi+e", + "_active": true, + "_components": [ + { + "__id__": 329 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 328 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "187015ec-f3d4-4abe-8fad-ce8d537619b8" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 327 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "187015ec-f3d4-4abe-8fad-ce8d537619b8" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Node", + "_name": "equip_frame_blue2", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 326 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 86, + "height": 86 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 247, + "y": 48 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "1bdb8E6H7ZDYoPx5D3Rsxxd", + "_active": true, + "_components": [ + { + "__id__": 332 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 331 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "187015ec-f3d4-4abe-8fad-ce8d537619b8" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Node", + "_name": "equip_frame_blue3", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 326 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 86, + "height": 86 + }, + "_children": [ + { + "__id__": 334 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 146, + "y": 48 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "3c6d9ncSgdPlI2GhOVZ9tm/", + "_active": true, + "_components": [ + { + "__id__": 336 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "equip_frame_blue3", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 333 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 86, + "height": 86 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "a659epP/VZN460jvFjACWp+", + "_active": true, + "_components": [ + { + "__id__": 335 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 334 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "187015ec-f3d4-4abe-8fad-ce8d537619b8" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 333 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "187015ec-f3d4-4abe-8fad-ce8d537619b8" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Node", + "_name": "equip_frame_blue4", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 326 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 86, + "height": 86 + }, + "_children": [ + { + "__id__": 338 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 349, + "y": 48 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "6882bQy2yhASZ9S187nqg5V", + "_active": true, + "_components": [ + { + "__id__": 340 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "equip_frame_blue4", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 337 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 86, + "height": 86 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "4e304y913hBvKvvnzpWkwWO", + "_active": true, + "_components": [ + { + "__id__": 339 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 338 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "187015ec-f3d4-4abe-8fad-ce8d537619b8" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 337 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "187015ec-f3d4-4abe-8fad-ce8d537619b8" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 326 + }, + "_enabled": true, + "isAlignOnce": false, + "_alignFlags": 12, + "_left": 319, + "_right": 0, + "_top": 0, + "_bottom": 21, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_originalWidth": 0, + "_originalHeight": 0 + }, + { + "__type__": "cc.Node", + "_name": "smallmap", + "_objFlags": 0, + "_opacity": 100, + "_color": { + "__type__": "cc.Color", + "r": 3, + "g": 43, + "b": 71, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 1 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 160, + "height": 160 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 10, + "y": 10 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "db718eCs0NCvagBvHzf/MNm", + "_active": true, + "_components": [ + { + "__id__": 343 + }, + { + "__id__": 344 + }, + { + "__id__": 345 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 342 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "9bbda31e-ad49-43c9-aaf2-f7d9896bac69" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 342 + }, + "_enabled": true, + "_layoutSize": { + "__type__": "cc.Size", + "width": 160, + "height": 160 + }, + "_resize": 0, + "_N$layoutType": 0, + "_N$cellSize": { + "__type__": "cc.Size", + "width": 40, + "height": 40 + }, + "_N$startAxis": 0, + "_N$padding": 0, + "_N$spacingX": 0, + "_N$spacingY": 0, + "_N$verticalDirection": 1, + "_N$horizontalDirection": 0 + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 342 + }, + "_enabled": true, + "isAlignOnce": false, + "_alignFlags": 12, + "_left": 10, + "_right": 0, + "_top": 0, + "_bottom": 10, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_originalWidth": 0, + "_originalHeight": 0 + }, + { + "__type__": "cc.Node", + "_name": "rank_one", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 151, + "g": 170, + "b": 238, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 1 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 130, + "height": 25 + }, + "_children": [ + { + "__id__": 347 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 826.6, + "y": 677.5 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "6e0217ZTmVBtbX7sbE3/Nee", + "_active": true, + "_components": [ + { + "__id__": 350 + }, + { + "__id__": 351 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "content", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 346 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 77.85, + "height": 20 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 13.000000000000057, + "y": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "29aa1p3nslOLqUq2AUnCv+q", + "_active": true, + "_components": [ + { + "__id__": 348 + }, + { + "__id__": 349 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 347 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 20, + "_lineHeight": 20, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "1.aaa:20", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 347 + }, + "_enabled": true, + "isAlignOnce": false, + "_alignFlags": 8, + "_left": 13.000000000000057, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_originalWidth": 0, + "_originalHeight": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 346 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "bbe13169-49a2-41bd-9631-f25b26214960" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 346 + }, + "_enabled": true, + "_layoutSize": { + "__type__": "cc.Size", + "width": 130, + "height": 25 + }, + "_resize": 0, + "_N$layoutType": 0, + "_N$cellSize": { + "__type__": "cc.Size", + "width": 40, + "height": 40 + }, + "_N$startAxis": 0, + "_N$padding": 0, + "_N$spacingX": 0, + "_N$spacingY": 0, + "_N$verticalDirection": 1, + "_N$horizontalDirection": 0 + }, + { + "__type__": "cc.Node", + "_name": "rank", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 167, + "g": 167, + "b": 167, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 1 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 130, + "height": 50 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 881.4, + "y": 572.6 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "047dblmD/xLCKrcPW7a8J74", + "_active": true, + "_components": [ + { + "__id__": 353 + }, + { + "__id__": 354 + }, + { + "__id__": 355 + }, + { + "__id__": 356 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 352 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "bbe13169-49a2-41bd-9631-f25b26214960" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 352 + }, + "_enabled": true, + "_layoutSize": { + "__type__": "cc.Size", + "width": 130, + "height": 50 + }, + "_resize": 1, + "_N$layoutType": 0, + "_N$cellSize": { + "__type__": "cc.Size", + "width": 40, + "height": 40 + }, + "_N$startAxis": 0, + "_N$padding": 0, + "_N$spacingX": 0, + "_N$spacingY": 0, + "_N$verticalDirection": 1, + "_N$horizontalDirection": 0 + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 352 + }, + "_enabled": true, + "isAlignOnce": false, + "_alignFlags": 33, + "_left": 0, + "_right": 13.600000000000009, + "_top": 42.39999999999995, + "_bottom": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_originalWidth": 0, + "_originalHeight": 0 + }, + { + "__type__": "5c789JZlORBnb2JQS7plsCO", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 352 + }, + "_enabled": true, + "ranklist": [], + "rankui": null, + "rankuione": null + }, + { + "__type__": "cc.Node", + "_name": "itemdesc", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 167, + "g": 167, + "b": 167, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 1 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.42, + "y": 0.73 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 310.81, + "height": 216 + }, + "_children": [ + { + "__id__": 358 + }, + { + "__id__": 360 + }, + { + "__id__": 362 + }, + { + "__id__": 364 + }, + { + "__id__": 367 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -410, + "y": 360 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "43bc3qRzcNGmaGgri7b8JFF", + "_active": true, + "_components": [ + { + "__id__": 369 + }, + { + "__id__": 370 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "namelabel", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 236, + "g": 242, + "b": 245, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 357 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 168.89, + "height": 42 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -115, + "y": 21 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "684ac0k3tJBm5Iepkf8vNiI", + "_active": true, + "_components": [ + { + "__id__": 359 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 358 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 40, + "_lineHeight": 42, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "单刀(1级)", + "_N$horizontalAlign": 0, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 195, + "g": 224, + "b": 17, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 357 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 297.81, + "height": 42 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -116, + "y": -26 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "2fe5fFdXLpJwqhSPD2+IMim", + "_active": true, + "_components": [ + { + "__id__": 361 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 360 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 40, + "_lineHeight": 42, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "属性: ", + "_N$horizontalAlign": 0, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "shuxing", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 357 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 1 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 152.81, + "height": 60 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -111, + "y": -53 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "546edWtsbRHYoK9HH64NITt", + "_active": true, + "_components": [ + { + "__id__": 363 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 362 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 25, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "增加10点敏捷\n增加50点速度", + "_N$horizontalAlign": 0, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "desc", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 252, + "g": 15, + "b": 58, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 357 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 1 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 125, + "height": 50 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -109, + "y": -108 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "50ab3ldKXBEvIcAJflqRjwS", + "_active": true, + "_components": [ + { + "__id__": 365 + }, + { + "__id__": 366 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 364 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 25, + "_lineHeight": 50, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "肉山的小刀", + "_N$horizontalAlign": 0, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 364 + }, + "_enabled": true, + "isAlignOnce": false, + "_alignFlags": 0, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": -0.8000000000000114, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_originalWidth": 0, + "_originalHeight": 0 + }, + { + "__type__": "cc.Node", + "_name": "tmp", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 357 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 40 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -129, + "y": 38 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "659df7sBvlCPJcXeQXge9YQ", + "_active": true, + "_components": [ + { + "__id__": 368 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 367 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 357 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "bbe13169-49a2-41bd-9631-f25b26214960" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 357 + }, + "_enabled": true, + "_layoutSize": { + "__type__": "cc.Size", + "width": 310.81, + "height": 216 + }, + "_resize": 1, + "_N$layoutType": 0, + "_N$cellSize": { + "__type__": "cc.Size", + "width": 40, + "height": 40 + }, + "_N$startAxis": 0, + "_N$padding": 0, + "_N$spacingX": 0, + "_N$spacingY": 0, + "_N$verticalDirection": 1, + "_N$horizontalDirection": 0 + }, + { + "__type__": "cc.Node", + "_name": "hpdesc", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 167, + "g": 167, + "b": 167, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 1 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.88, + "y": 0.02 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 134.11, + "height": 46 + }, + "_children": [ + { + "__id__": 372 + }, + { + "__id__": 374 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -279, + "y": 611 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "41ea6W10MRIb4R36EBk3xUd", + "_active": true, + "_components": [ + { + "__id__": 376 + }, + { + "__id__": 377 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "desc", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 252, + "g": 8, + "b": 22, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 371 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 131.11, + "height": 42 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -115, + "y": 20 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "687e24O+mtBkJbV5tkWiW+y", + "_active": true, + "_components": [ + { + "__id__": 373 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 372 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 40, + "_lineHeight": 42, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "攻击力 ", + "_N$horizontalAlign": 0, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "tmp", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 371 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 40 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -118, + "y": 25 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "ffc8eUQPblEspURLXWS5rjV", + "_active": true, + "_components": [ + { + "__id__": 375 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 374 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 371 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "bbe13169-49a2-41bd-9631-f25b26214960" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 371 + }, + "_enabled": true, + "_layoutSize": { + "__type__": "cc.Size", + "width": 134.11, + "height": 46 + }, + "_resize": 1, + "_N$layoutType": 0, + "_N$cellSize": { + "__type__": "cc.Size", + "width": 40, + "height": 40 + }, + "_N$startAxis": 0, + "_N$padding": 0, + "_N$spacingX": 0, + "_N$spacingY": 0, + "_N$verticalDirection": 1, + "_N$horizontalDirection": 0 + }, + { + "__type__": "cc.Node", + "_name": "herodesc", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 167, + "g": 167, + "b": 167, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 1 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.42, + "y": 0.74 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 310.81, + "height": 220 + }, + "_children": [ + { + "__id__": 379 + }, + { + "__id__": 381 + }, + { + "__id__": 383 + }, + { + "__id__": 385 + }, + { + "__id__": 387 + } + ], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": 449, + "y": 485 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "8efcfJmWCZL+qk0MKMcIqtp", + "_active": false, + "_components": [ + { + "__id__": 388 + }, + { + "__id__": 389 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Node", + "_name": "namelabel", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 236, + "g": 242, + "b": 245, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 378 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 168.89, + "height": 42 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -115, + "y": 21 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "1e921iRBQZKEpkt482yEepc", + "_active": true, + "_components": [ + { + "__id__": 380 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 379 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 40, + "_lineHeight": 42, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "单刀(1级)", + "_N$horizontalAlign": 0, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 195, + "g": 224, + "b": 17, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 378 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 297.81, + "height": 42 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -116, + "y": -71 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "946deCFO7lKK5B1avefJph5", + "_active": true, + "_components": [ + { + "__id__": 382 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 381 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 40, + "_lineHeight": 42, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "属性: ", + "_N$horizontalAlign": 0, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "shuxing", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 378 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 1 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 152.81, + "height": 60 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -111, + "y": -102 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "ecd44rOh3lG9rUmJva4CeW/", + "_active": true, + "_components": [ + { + "__id__": 384 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 383 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 25, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "增加10点敏捷\n增加50点速度", + "_N$horizontalAlign": 0, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "tmp", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 378 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 40 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -129, + "y": 38 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "fc7ddN8+7FCfbLMZ+QPfLKx", + "_active": true, + "_components": [ + { + "__id__": 386 + } + ], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 385 + }, + "_enabled": true, + "_useOriginalSize": false, + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_N$string": "", + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$overflow": 0 + }, + { + "__type__": "cc.Node", + "_name": "equipNode", + "_objFlags": 0, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_cascadeOpacityEnabled": true, + "_parent": { + "__id__": 378 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_children": [], + "_rotationX": 0, + "_rotationY": 0, + "_scaleX": 1, + "_scaleY": 1, + "_position": { + "__type__": "cc.Vec2", + "x": -111, + "y": -30 + }, + "_skewX": 0, + "_skewY": 0, + "_localZOrder": 0, + "_globalZOrder": 0, + "_tag": -1, + "_opacityModifyRGB": false, + "_reorderChildDirty": false, + "_id": "b6c87ZVvMNJ+YKQHa2T68SO", + "_active": true, + "_components": [], + "_prefab": null, + "groupIndex": 0 + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 378 + }, + "_enabled": true, + "_spriteFrame": { + "__uuid__": "bbe13169-49a2-41bd-9631-f25b26214960" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_atlas": null + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 378 + }, + "_enabled": true, + "_layoutSize": { + "__type__": "cc.Size", + "width": 310.81, + "height": 220 + }, + "_resize": 1, + "_N$layoutType": 0, + "_N$cellSize": { + "__type__": "cc.Size", + "width": 40, + "height": 40 + }, + "_N$startAxis": 0, + "_N$padding": 0, + "_N$spacingX": 0, + "_N$spacingY": 0, + "_N$verticalDirection": 1, + "_N$horizontalDirection": 0 + } +] \ No newline at end of file diff --git a/cc_moba/assets/xiaoxiao.fire.meta b/cc_moba/assets/xiaoxiao.fire.meta new file mode 100644 index 0000000..ea8e122 --- /dev/null +++ b/cc_moba/assets/xiaoxiao.fire.meta @@ -0,0 +1,5 @@ +{ + "ver": "1.0.0", + "uuid": "2366f3b6-28bb-4920-a824-a5a391045a87", + "subMetas": {} +} \ No newline at end of file diff --git a/cc_moba/creator.d.ts b/cc_moba/creator.d.ts new file mode 100644 index 0000000..7136128 --- /dev/null +++ b/cc_moba/creator.d.ts @@ -0,0 +1,10475 @@ + +/** !#en +The main namespace of Cocos2d-JS, all engine core classes, functions, properties and constants are defined in this namespace. +!#zh +Cocos 引擎的主要命名空间,引擎代码中所有的类,函数,属性和常量都在这个命名空间中定义。 */ +declare module cc { + /** !#en Init Debug setting. + !#zh 设置调试模式。 + */ + export function _initDebugSetting(mode : DebugMode) : void; + /** !#en + Outputs an error message to the Cocos Creator Console (editor) or Web Console (runtime).
+ - In Cocos Creator, error is red.
+ - In Chrome, error have a red icon along with red message text.
+ !#zh + 输出错误消息到 Cocos Creator 编辑器的 Console 或运行时页面端的 Console 中。
+ - 在 Cocos Creator 中,错误信息显示是红色的。
+ - 在 Chrome 中,错误信息有红色的图标以及红色的消息文本。
+ @param obj A JavaScript string containing zero or more substitution strings. + @param subst JavaScript objects with which to replace substitution strings within msg. This gives you additional control over the format of the output. + */ + export function error(obj : Any, subst : Any) : void; + /** !#en + Outputs a warning message to the Cocos Creator Console (editor) or Web Console (runtime). + - In Cocos Creator, warning is yellow. + - In Chrome, warning have a yellow warning icon with the message text. + !#zh + 输出警告消息到 Cocos Creator 编辑器的 Console 或运行时 Web 端的 Console 中。
+ - 在 Cocos Creator 中,警告信息显示是黄色的。
+ - 在 Chrome 中,警告信息有着黄色的图标以及黄色的消息文本。
+ @param obj A JavaScript string containing zero or more substitution strings. + @param subst JavaScript objects with which to replace substitution strings within msg. This gives you additional control over the format of the output. + */ + export function warn(obj : Any, subst : Any) : void; + /** !#en Outputs a message to the Cocos Creator Console (editor) or Web Console (runtime). + !#zh 输出一条消息到 Cocos Creator 编辑器的 Console 或运行时 Web 端的 Console 中。 + @param obj A JavaScript string containing zero or more substitution strings. + @param subst JavaScript objects with which to replace substitution strings within msg. This gives you additional control over the format of the output. + */ + export function log(obj : Any, subst : Any) : void; + /** !#en + Outputs an informational message to the Cocos Creator Console (editor) or Web Console (runtime). + - In Cocos Creator, info is blue. + - In Firefox and Chrome, a small "i" icon is displayed next to these items in the Web Console's log. + !#zh + 输出一条信息消息到 Cocos Creator 编辑器的 Console 或运行时 Web 端的 Console 中。 + - 在 Cocos Creator 中,Info 信息显示是蓝色的。
+ - 在 Firefox 和 Chrome 中,Info 信息有着小 “i” 图标。 + @param obj A JavaScript string containing zero or more substitution strings. + @param subst JavaScript objects with which to replace substitution strings within msg. This gives you additional control over the format of the output. + */ + export function info(obj : any, subst : any) : void; + /** !#en + Creates the speed action which changes the speed of an action, making it take longer (speed > 1) + or less (speed < 1) time.
+ Useful to simulate 'slow motion' or 'fast forward' effect. + !#zh 修改目标动作的速率。 + + @example + ```js + // change the target action speed; + var action = cc.scaleTo(0.2, 1, 0.6); + var newAction = cc.speed(action, 0.5); + ``` + */ + export function speed(action : ActionInterval, speed : number) : Action; + /** !#en Create a follow action which makes its target follows another node. + !#zh 追踪目标节点的位置。 + + @example + ```js + // example + // creates the action with a set boundary + var followAction = cc.follow(targetNode, cc.rect(0, 0, screenWidth * 2 - 100, screenHeight)); + node.runAction(followAction); + + // creates the action with no boundary set + var followAction = cc.follow(targetNode); + node.runAction(followAction); + ``` + */ + export function follow(followedNode : Node, rect : Rect) : Action; + /** !#en Creates an action with a Cardinal Spline array of points and tension. + !#zh 按基数样条曲线轨迹移动到目标位置。 + @param points array of control points + + @example + ```js + //create a cc.CardinalSplineTo + var action1 = cc.cardinalSplineTo(3, array, 0); + ``` + */ + export function cardinalSplineTo(duration : number, points : any[], tension : number) : ActionInterval; + /** !#en Creates an action with a Cardinal Spline array of points and tension. + !#zh 按基数样条曲线轨迹移动指定的距离。 + */ + export function cardinalSplineBy(duration : number, points : any[], tension : number) : ActionInterval; + /** !#en Creates an action with a Cardinal Spline array of points and tension. + !#zh 按 Catmull Rom 样条曲线轨迹移动到目标位置。 + + @example + ```js + var action1 = cc.catmullRomTo(3, array); + ``` + */ + export function catmullRomTo(dt : number, points : any[]) : ActionInterval; + /** !#en Creates an action with a Cardinal Spline array of points and tension. + !#zh 按 Catmull Rom 样条曲线轨迹移动指定的距离。 + + @example + ```js + var action1 = cc.catmullRomBy(3, array); + ``` + */ + export function catmullRomBy(dt : number, points : any[]) : ActionInterval; + /** !#en + Creates the action easing object with the rate parameter.
+ From slow to fast. + !#zh 创建 easeIn 缓动对象,由慢到快。 + + @example + ```js + // example + action.easing(cc.easeIn(3.0)); + ``` + */ + export function easeIn(rate : number) : any; + /** !#en + Creates the action easing object with the rate parameter.
+ From fast to slow. + !#zh 创建 easeOut 缓动对象,由快到慢。 + + @example + ```js + // example + action.easing(cc.easeOut(3.0)); + ``` + */ + export function easeOut(rate : number) : any; + /** !#en + Creates the action easing object with the rate parameter.
+ Slow to fast then to slow. + !#zh 创建 easeInOut 缓动对象,慢到快,然后慢。 + + @example + ```js + //The new usage + action.easing(cc.easeInOut(3.0)); + ``` + */ + export function easeInOut(rate : number) : any; + /** !#en + Creates the action easing object with the rate parameter.
+ Reference easeInExpo:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeExponentialIn 缓动对象。
+ EaseExponentialIn 是按指数函数缓动进入的动作。
+ 参考 easeInExpo:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + // example + action.easing(cc.easeExponentialIn()); + ``` + */ + export function easeExponentialIn() : any; + /** !#en + Creates the action easing object.
+ Reference easeOutExpo:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeExponentialOut 缓动对象。
+ EaseExponentialOut 是按指数函数缓动退出的动作。
+ 参考 easeOutExpo:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + // example + action.easing(cc.easeExponentialOut()); + ``` + */ + export function easeExponentialOut() : any; + /** !#en + Creates an EaseExponentialInOut action easing object.
+ Reference easeInOutExpo:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeExponentialInOut 缓动对象。
+ EaseExponentialInOut 是按指数函数缓动进入并退出的动作。
+ 参考 easeInOutExpo:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + // example + action.easing(cc.easeExponentialInOut()); + ``` + */ + export function easeExponentialInOut() : any; + /** !#en + Creates an EaseSineIn action.
+ Reference easeInSine:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 EaseSineIn 缓动对象。
+ EaseSineIn 是按正弦函数缓动进入的动作。
+ 参考 easeInSine:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + // example + action.easing(cc.easeSineIn()); + ``` + */ + export function easeSineIn() : any; + /** !#en + Creates an EaseSineOut action easing object.
+ Reference easeOutSine:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 EaseSineOut 缓动对象。
+ EaseSineIn 是按正弦函数缓动退出的动作。
+ 参考 easeOutSine:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + // example + action.easing(cc.easeSineOut()); + ``` + */ + export function easeSineOut() : any; + /** !#en + Creates the action easing object.
+ Reference easeInOutSine:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeSineInOut 缓动对象。
+ EaseSineIn 是按正弦函数缓动进入并退出的动作。
+ 参考 easeInOutSine:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + // example + action.easing(cc.easeSineInOut()); + ``` + */ + export function easeSineInOut() : any; + /** !#en + Creates the action easing obejct with the period in radians (default is 0.3).
+ Reference easeInElastic:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeElasticIn 缓动对象。
+ EaseElasticIn 是按弹性曲线缓动进入的动作。
+ 参数 easeInElastic:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + // example + action.easing(cc.easeElasticIn(3.0)); + ``` + */ + export function easeElasticIn(period : number) : any; + /** !#en + Creates the action easing object with the period in radians (default is 0.3).
+ Reference easeOutElastic:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeElasticOut 缓动对象。
+ EaseElasticOut 是按弹性曲线缓动退出的动作。
+ 参考 easeOutElastic:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + // example + action.easing(cc.easeElasticOut(3.0)); + ``` + */ + export function easeElasticOut(period : number) : any; + /** !#en + Creates the action easing object with the period in radians (default is 0.3).
+ Reference easeInOutElastic:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeElasticInOut 缓动对象。
+ EaseElasticInOut 是按弹性曲线缓动进入并退出的动作。
+ 参考 easeInOutElastic:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + // example + action.easing(cc.easeElasticInOut(3.0)); + ``` + */ + export function easeElasticInOut(period : number) : any; + /** !#en + Creates the action easing object.
+ Eased bounce effect at the beginning. + !#zh + 创建 easeBounceIn 缓动对象。
+ EaseBounceIn 是按弹跳动作缓动进入的动作。 + + @example + ```js + // example + action.easing(cc.easeBounceIn()); + ``` + */ + export function easeBounceIn() : any; + /** !#en + Creates the action easing object.
+ Eased bounce effect at the ending. + !#zh + 创建 easeBounceOut 缓动对象。
+ EaseBounceOut 是按弹跳动作缓动退出的动作。 + + @example + ```js + // example + action.easing(cc.easeBounceOut()); + ``` + */ + export function easeBounceOut() : any; + /** !#en + Creates the action easing object.
+ Eased bounce effect at the begining and ending. + !#zh + 创建 easeBounceInOut 缓动对象。
+ EaseBounceInOut 是按弹跳动作缓动进入并退出的动作。 + + @example + ```js + // example + action.easing(cc.easeBounceInOut()); + ``` + */ + export function easeBounceInOut() : any; + /** !#en + Creates the action easing object.
+ In the opposite direction to move slowly, and then accelerated to the right direction. + !#zh + 创建 easeBackIn 缓动对象。
+ easeBackIn 是在相反的方向缓慢移动,然后加速到正确的方向。
+ + @example + ```js + // example + action.easing(cc.easeBackIn()); + ``` + */ + export function easeBackIn() : any; + /** !#en + Creates the action easing object.
+ Fast moving more than the finish, and then slowly back to the finish. + !#zh + 创建 easeBackOut 缓动对象。
+ easeBackOut 快速移动超出目标,然后慢慢回到目标点。 + + @example + ```js + // example + action.easing(cc.easeBackOut()); + ``` + */ + export function easeBackOut() : any; + /** !#en + Creates the action easing object.
+ Begining of cc.EaseBackIn. Ending of cc.EaseBackOut. + !#zh + 创建 easeBackInOut 缓动对象。
+ + @example + ```js + // example + action.easing(cc.easeBackInOut()); + ``` + */ + export function easeBackInOut() : any; + /** !#en + Creates the action easing object.
+ Into the 4 reference point.
+ To calculate the motion curve. + !#zh + 创建 easeBezierAction 缓动对象。
+ EaseBezierAction 是按贝塞尔曲线缓动的动作。 + @param p0 The first bezier parameter + @param p1 The second bezier parameter + @param p2 The third bezier parameter + @param p3 The fourth bezier parameter + + @example + ```js + // example + action.easing(cc.easeBezierAction(0.5, 0.5, 1.0, 1.0)); + ``` + */ + export function easeBezierAction(p0 : number, p1 : number, p2 : number, p3 : number) : any; + /** !#en + Creates the action easing object.
+ Reference easeInQuad:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeQuadraticActionIn 缓动对象。
+ EaseQuadraticIn是按二次函数缓动进入的动作。
+ 参考 easeInQuad:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + //example + action.easing(cc.easeQuadraticActionIn()); + ``` + */ + export function easeQuadraticActionIn() : any; + /** !#en + Creates the action easing object.
+ Reference easeOutQuad:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeQuadraticActionOut 缓动对象。
+ EaseQuadraticOut 是按二次函数缓动退出的动作。
+ 参考 easeOutQuad:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + //example + action.easing(cc.easeQuadraticActionOut()); + ``` + */ + export function easeQuadraticActionOut() : any; + /** !#en + Creates the action easing object.
+ Reference easeInOutQuad:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeQuadraticActionInOut 缓动对象。
+ EaseQuadraticInOut 是按二次函数缓动进入并退出的动作。
+ 参考 easeInOutQuad:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + //example + action.easing(cc.easeQuadraticActionInOut()); + ``` + */ + export function easeQuadraticActionInOut() : any; + /** !#en + Creates the action easing object.
+ Reference easeIntQuart:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeQuarticActionIn 缓动对象。
+ EaseQuarticIn 是按四次函数缓动进入的动作。
+ 参考 easeIntQuart:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + //example + action.easing(cc.easeQuarticActionIn()); + ``` + */ + export function easeQuarticActionIn() : any; + /** !#en + Creates the action easing object.
+ Reference easeOutQuart:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeQuarticActionOut 缓动对象。
+ EaseQuarticOut 是按四次函数缓动退出的动作。
+ 参考 easeOutQuart:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + //example + action.easing(cc.QuarticActionOut()); + ``` + */ + export function easeQuarticActionOut() : any; + /** !#en + Creates the action easing object.
+ Reference easeInOutQuart:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeQuarticActionInOut 缓动对象。
+ EaseQuarticInOut 是按四次函数缓动进入并退出的动作。
+ 参考 easeInOutQuart:http://www.zhihu.com/question/21981571/answer/19925418 + */ + export function easeQuarticActionInOut() : any; + /** !#en + Creates the action easing object.
+ Reference easeInQuint:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeQuinticActionIn 缓动对象。
+ EaseQuinticIn 是按五次函数缓动进的动作。
+ 参考 easeInQuint:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + //example + action.easing(cc.easeQuinticActionIn()); + ``` + */ + export function easeQuinticActionIn() : any; + /** !#en + Creates the action easing object.
+ Reference easeOutQuint:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeQuinticActionOut 缓动对象。
+ EaseQuinticOut 是按五次函数缓动退出的动作 + 参考 easeOutQuint:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + //example + action.easing(cc.easeQuadraticActionOut()); + ``` + */ + export function easeQuinticActionOut() : any; + /** !#en + Creates the action easing object.
+ Reference easeInOutQuint:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeQuinticActionInOut 缓动对象。
+ EaseQuinticInOut是按五次函数缓动进入并退出的动作。
+ 参考 easeInOutQuint:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + //example + action.easing(cc.easeQuinticActionInOut()); + ``` + */ + export function easeQuinticActionInOut() : any; + /** !#en + Creates the action easing object.
+ Reference easeInCirc:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeCircleActionIn 缓动对象。
+ EaseCircleIn是按圆形曲线缓动进入的动作。
+ 参考 easeInCirc:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + //example + action.easing(cc.easeCircleActionIn()); + ``` + */ + export function easeCircleActionIn() : any; + /** !#en + Creates the action easing object.
+ Reference easeOutCirc:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeCircleActionOut 缓动对象。
+ EaseCircleOut是按圆形曲线缓动退出的动作。
+ 参考 easeOutCirc:http://www.zhihu.com/question/21981571/answer/19925418 + */ + export function easeCircleActionOut() : any; + /** !#en + Creates the action easing object.
+ Reference easeInOutCirc:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeCircleActionInOut 缓动对象。
+ EaseCircleInOut 是按圆形曲线缓动进入并退出的动作。
+ 参考 easeInOutCirc:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + //example + action.easing(cc.easeCircleActionInOut()); + ``` + */ + export function easeCircleActionInOut() : any; + /** !#en + Creates the action easing object.
+ Reference easeInCubic:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeCubicActionIn 缓动对象。
+ EaseCubicIn 是按三次函数缓动进入的动作。
+ 参考 easeInCubic:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + //example + action.easing(cc.easeCubicActionIn()); + ``` + */ + export function easeCubicActionIn() : any; + /** !#en + Creates the action easing object.
+ Reference easeOutCubic:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeCubicActionOut 缓动对象。
+ EaseCubicOut 是按三次函数缓动退出的动作。
+ 参考 easeOutCubic:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + //example + action.easing(cc.easeCubicActionOut()); + ``` + */ + export function easeCubicActionOut() : any; + /** !#en + Creates the action easing object.
+ Reference easeInOutCubic:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeCubicActionInOut 缓动对象。
+ EaseCubicInOut是按三次函数缓动进入并退出的动作。
+ 参考 easeInOutCubic:http://www.zhihu.com/question/21981571/answer/19925418 + */ + export function easeCubicActionInOut() : any; + /** !#en Show the Node. + !#zh 立即显示。 + + @example + ```js + // example + var showAction = cc.show(); + ``` + */ + export function show() : ActionInstant; + /** !#en Hide the node. + !#zh 立即隐藏。 + + @example + ```js + // example + var hideAction = cc.hide(); + ``` + */ + export function hide() : ActionInstant; + /** !#en Toggles the visibility of a node. + !#zh 显隐状态切换。 + + @example + ```js + // example + var toggleVisibilityAction = cc.toggleVisibility(); + ``` + */ + export function toggleVisibility() : ActionInstant; + /** !#en Create a RemoveSelf object with a flag indicate whether the target should be cleaned up while removing. + !#zh 从父节点移除自身。 + + @example + ```js + // example + var removeSelfAction = cc.removeSelf(); + ``` + */ + export function removeSelf(isNeedCleanUp : boolean) : ActionInstant; + /** !#en Create a FlipX action to flip or unflip the target. + !#zh X轴翻转。 + @param flip Indicate whether the target should be flipped or not + + @example + ```js + var flipXAction = cc.flipX(true); + ``` + */ + export function flipX(flip : boolean) : ActionInstant; + /** !#en Create a FlipY action to flip or unflip the target. + !#zh Y轴翻转。 + + @example + ```js + var flipYAction = cc.flipY(true); + ``` + */ + export function flipY(flip : boolean) : ActionInstant; + /** !#en Creates a Place action with a position. + !#zh 放置在目标位置。 + + @example + ```js + // example + var placeAction = cc.place(cc.p(200, 200)); + var placeAction = cc.place(200, 200); + ``` + */ + export function place(pos : Vec2|number, y? : number) : ActionInstant; + /** !#en Creates the action with the callback. + !#zh 执行回调函数。 + @param data data for function, it accepts all data types. + + @example + ```js + // example + // CallFunc without data + var finish = cc.callFunc(this.removeSprite, this); + + // CallFunc with data + var finish = cc.callFunc(this.removeFromParentAndCleanup, this._grossini, true); + ``` + */ + export function callFunc(selector : Function, selectorTarget? : any|void, data? : any|void) : ActionInstant; + /** !#en + Helper constructor to create an array of sequenceable actions + The created action will run actions sequentially, one after another. + !#zh 顺序执行动作,创建的动作将按顺序依次运行。 + + @example + ```js + // example + // create sequence with actions + var seq = cc.sequence(act1, act2); + + // create sequence with array + var seq = cc.sequence(actArray); + ``` + */ + export function sequence(tempArray : any[]|FiniteTimeAction) : ActionInterval; + /** !#en Creates a Repeat action. Times is an unsigned integer between 1 and pow(2,30) + !#zh 重复动作,可以按一定次数重复一个动,如果想永远重复一个动作请使用 repeatForever 动作来完成。 + + @example + ```js + // example + var rep = cc.repeat(cc.sequence(jump2, jump1), 5); + ``` + */ + export function repeat(action : FiniteTimeAction, times : number) : ActionInterval; + /** !#en Create a acton which repeat forever + !#zh 永远地重复一个动作,有限次数内重复一个动作请使用 repeat 动作。 + + @example + ```js + // example + var repeat = cc.repeatForever(cc.rotateBy(1.0, 360)); + ``` + */ + export function repeatForever(action : FiniteTimeAction) : ActionInterval; + /** !#en Create a spawn action which runs several actions in parallel. + !#zh 同步执行动作,同步执行一组动作。 + + @example + ```js + // example + var action = cc.spawn(cc.jumpBy(2, cc.p(300, 0), 50, 4), cc.rotateBy(2, 720)); + todo:It should be the direct use new + ``` + */ + export function spawn(tempArray : any[]|FiniteTimeAction) : FiniteTimeAction; + /** !#en + Rotates a Node object to a certain angle by modifying its rotation property.
+ The direction will be decided by the shortest angle. + !#zh 旋转到目标角度,通过逐帧修改它的 rotation 属性,旋转方向将由最短的角度决定。 + @param duration duration in seconds + @param deltaAngleX deltaAngleX in degrees. + @param deltaAngleY deltaAngleY in degrees. + + @example + ```js + // example + var rotateTo = cc.rotateTo(2, 61.0); + ``` + */ + export function rotateTo(duration : number, deltaAngleX : number, deltaAngleY? : number) : ActionInterval; + /** !#en + Rotates a Node object clockwise a number of degrees by modifying its rotation property. + Relative to its properties to modify. + !#zh 旋转指定的角度。 + @param duration duration in seconds + @param deltaAngleX deltaAngleX in degrees + @param deltaAngleY deltaAngleY in degrees + + @example + ```js + // example + var actionBy = cc.rotateBy(2, 360); + ``` + */ + export function rotateBy(duration : number, deltaAngleX : number, deltaAngleY? : number) : ActionInterval; + /** !#en + Moves a Node object x,y pixels by modifying its position property.
+ x and y are relative to the position of the object.
+ Several MoveBy actions can be concurrently called, and the resulting
+ movement will be the sum of individual movements. + !#zh 移动指定的距离。 + @param duration duration in seconds + + @example + ```js + // example + var actionTo = cc.moveBy(2, cc.p(windowSize.width - 40, windowSize.height - 40)); + ``` + */ + export function moveBy(duration : number, deltaPos : Vec2|number, deltaY : number) : ActionInterval; + /** !#en + Moves a Node object to the position x,y. x and y are absolute coordinates by modifying its position property.
+ Several MoveTo actions can be concurrently called, and the resulting
+ movement will be the sum of individual movements. + !#zh 移动到目标位置。 + @param duration duration in seconds + + @example + ```js + // example + var actionBy = cc.moveTo(2, cc.p(80, 80)); + ``` + */ + export function moveTo(duration : number, position : Vec2, y : number) : ActionInterval; + /** !#en + Create a action which skews a Node object to given angles by modifying its skewX and skewY properties. + Changes to the specified value. + !#zh 偏斜到目标角度。 + @param t time in seconds + + @example + ```js + // example + var actionTo = cc.skewTo(2, 37.2, -37.2); + ``` + */ + export function skewTo(t : number, sx : number, sy : number) : ActionInterval; + /** !#en + Skews a Node object by skewX and skewY degrees.
+ Relative to its property modification. + !#zh 偏斜指定的角度。 + @param t time in seconds + @param sx sx skew in degrees for X axis + @param sy sy skew in degrees for Y axis + + @example + ```js + // example + var actionBy = cc.skewBy(2, 0, -90); + ``` + */ + export function skewBy(t : number, sx : number, sy : number) : ActionInterval; + /** !#en + Moves a Node object simulating a parabolic jump movement by modifying it's position property. + Relative to its movement. + !#zh 用跳跃的方式移动指定的距离。 + + @example + ```js + // example + var actionBy = cc.jumpBy(2, cc.p(300, 0), 50, 4); + var actionBy = cc.jumpBy(2, 300, 0, 50, 4); + ``` + */ + export function jumpBy(duration : number, position : Vec2|number, y? : number, height : number, jumps : number) : ActionInterval; + /** !#en + Moves a Node object to a parabolic position simulating a jump movement by modifying its position property.
+ Jump to the specified location. + !#zh 用跳跃的方式移动到目标位置。 + + @example + ```js + // example + var actionTo = cc.jumpTo(2, cc.p(300, 300), 50, 4); + var actionTo = cc.jumpTo(2, 300, 300, 50, 4); + ``` + */ + export function jumpTo(duration : number, position : Vec2|number, y? : number, height : number, jumps : number) : ActionInterval; + /** !#en + An action that moves the target with a cubic Bezier curve by a certain distance. + Relative to its movement. + !#zh 按贝赛尔曲线轨迹移动指定的距离。 + @param t time in seconds + @param c Array of points + + @example + ```js + // example + var bezier = [cc.p(0, windowSize.height / 2), cc.p(300, -windowSize.height / 2), cc.p(300, 100)]; + var bezierForward = cc.bezierBy(3, bezier); + ``` + */ + export function bezierBy(t : number, c : any[]) : ActionInterval; + /** !#en An action that moves the target with a cubic Bezier curve to a destination point. + !#zh 按贝赛尔曲线轨迹移动到目标位置。 + @param c array of points + + @example + ```js + // example + var bezier = [cc.p(0, windowSize.height / 2), cc.p(300, -windowSize.height / 2), cc.p(300, 100)]; + var bezierTo = cc.bezierTo(2, bezier); + ``` + */ + export function bezierTo(t : number, c : any[]) : ActionInterval; + /** !#en Scales a Node object to a zoom factor by modifying it's scale property. + !#zh 将节点大小缩放到指定的倍数。 + @param sx scale parameter in X + @param sy scale parameter in Y, if Null equal to sx + + @example + ```js + // example + // It scales to 0.5 in both X and Y. + var actionTo = cc.scaleTo(2, 0.5); + + // It scales to 0.5 in x and 2 in Y + var actionTo = cc.scaleTo(2, 0.5, 2); + ``` + */ + export function scaleTo(duration : number, sx : number, sy? : number) : ActionInterval; + /** !#en + Scales a Node object a zoom factor by modifying it's scale property. + Relative to its changes. + !#zh 按指定的倍数缩放节点大小。 + @param duration duration in seconds + @param sx sx scale parameter in X + @param sy sy scale parameter in Y, if Null equal to sx + + @example + ```js + // example without sy, it scales by 2 both in X and Y + var actionBy = cc.scaleBy(2, 2); + + //example with sy, it scales by 0.25 in X and 4.5 in Y + var actionBy2 = cc.scaleBy(2, 0.25, 4.5); + ``` + */ + export function scaleBy(duration : number, sx : number, sy? : number|void) : ActionInterval; + /** !#en Blinks a Node object by modifying it's visible property. + !#zh 闪烁(基于透明度)。 + @param duration duration in seconds + @param blinks blinks in times + + @example + ```js + // example + var action = cc.blink(2, 10); + ``` + */ + export function blink(duration : number, blinks : number) : ActionInterval; + /** !#en + Fades an object that implements the cc.RGBAProtocol protocol. + It modifies the opacity from the current value to a custom one. + !#zh 修改透明度到指定值。 + @param opacity 0-255, 0 is transparent + + @example + ```js + // example + var action = cc.fadeTo(1.0, 0); + ``` + */ + export function fadeTo(duration : number, opacity : number) : ActionInterval; + /** !#en Fades In an object that implements the cc.RGBAProtocol protocol. It modifies the opacity from 0 to 255. + !#zh 渐显效果。 + @param duration duration in seconds + + @example + ```js + //example + var action = cc.fadeIn(1.0); + ``` + */ + export function fadeIn(duration : number) : ActionInterval; + /** !#en Fades Out an object that implements the cc.RGBAProtocol protocol. It modifies the opacity from 255 to 0. + !#zh 渐隐效果。 + @param d duration in seconds + + @example + ```js + // example + var action = cc.fadeOut(1.0); + ``` + */ + export function fadeOut(d : number) : ActionInterval; + /** !#en Tints a Node that implements the cc.NodeRGB protocol from current tint to a custom one. + !#zh 修改颜色到指定值。 + @param red 0-255 + @param green 0-255 + @param blue 0-255 + + @example + ```js + // example + var action = cc.tintTo(2, 255, 0, 255); + ``` + */ + export function tintTo(duration : number, red : number, green : number, blue : number) : ActionInterval; + /** !#en + Tints a Node that implements the cc.NodeRGB protocol from current tint to a custom one. + Relative to their own color change. + !#zh 按照指定的增量修改颜色。 + @param duration duration in seconds + + @example + ```js + // example + var action = cc.tintBy(2, -127, -255, -127); + ``` + */ + export function tintBy(duration : number, deltaRed : number, deltaGreen : number, deltaBlue : number) : ActionInterval; + /** !#en Delays the action a certain amount of seconds. + !#en 延迟指定的时间量。 + @param d duration in seconds + + @example + ```js + // example + var delay = cc.delayTime(1); + ``` + */ + export function delayTime(d : number) : ActionInterval; + /** !#en Executes an action in reverse order, from time=duration to time=0. + !#zh 反转目标动作的时间轴。 + + @example + ```js + // example + var reverse = cc.reverseTime(this); + ``` + */ + export function reverseTime(action : FiniteTimeAction) : ActionInterval; + /** !#en Create an action with the specified action and forced target. + !#zh 用已有动作和一个新的目标节点创建动作。 + */ + export function targetedAction(target : Node, action : FiniteTimeAction) : ActionInterval; + /** Constructor + */ + export function HashElement() : void; + /** !#en cc.view is the shared view object. + !#zh cc.view 是全局的视图对象。 */ + export var view : View; + /** !#en Director + !#zh 导演类。 */ + export var director : Director; + /** !#en cc.winSize is the alias object for the size of the current game window. + !#zh cc.winSize 为当前的游戏窗口的大小。 */ + export var winSize : Size; + export var game : Game; + /** Checks whether subclass is child of superclass or equals to superclass + */ + export function isChildClassOf(subclass : Function, superclass : Function) : boolean; + /** !#en Defines a CCClass using the given specification, please see [Class](/en/scripting/class/) for details. + !#zh 定义一个 CCClass,传入参数必须是一个包含类型参数的字面量对象,具体用法请查阅[类型定义](/zh/scripting/class/)。 + + @example + ```js + // define base class + var Node = cc.Class(); + + // define sub class + var Sprite = cc.Class({ + name: 'Sprite', + extends: Node, + ctor: function () { + this.url = ""; + this.id = 0; + }, + + properties { + width: { + default: 128, + type: 'Integer', + tooltip: 'The width of sprite' + }, + height: 128, + size: { + get: function () { + return cc.v2(this.width, this.height); + } + } + }, + + load: function () { + // load this.url + }; + }); + + // instantiate + + var obj = new Sprite(); + obj.url = 'sprite.png'; + obj.load(); + + // define static member + + Sprite.count = 0; + Sprite.getBounds = function (spriteList) { + // ... + }; + ``` + */ + export function Class(options : { name? : string; extends? : Function; ctor? : Function; properties? : any; statics? : any; mixins? : Function[]; editor? : any; update? : Function; lateUpdate? : Function; onLoad? : Function; start? : Function; onEnable? : Function; onDisable? : Function; onDestroy? : Function; onFocusInEditor? : Function; onLostFocusInEditor? : Function; onRestore? : Function; _getLocalBounds? : Function; }) : Function; + /** whether enable accelerometer event + */ + export function setAccelerometerEnabled(isEnable : boolean) : void; + /** set accelerometer interval value + */ + export function setAccelerometerInterval(interval : number) : void; + /** !#en Checks whether the object is non-nil and not yet destroyed. + !#zh 检查该对象是否不为 null 并且尚未销毁。 + + @example + ```js + cc.log(cc.isValid(target)); + ``` + */ + export function isValid(value : any) : boolean; + /** Specify that the input value must be integer in Inspector. + Also used to indicates that the elements in array should be type integer. */ + export var Integer : string; + /** Indicates that the elements in array should be type double. */ + export var Float : string; + /** Indicates that the elements in array should be type boolean. */ + export var Boolean : string; + /** Indicates that the elements in array should be type string. */ + export var String : string; + /** !#en Deserialize json to cc.Asset + !#zh 将 JSON 反序列化为对象实例。 + + 当指定了 target 选项时,如果 target 引用的其它 asset 的 uuid 不变,则不会改变 target 对 asset 的引用, + 也不会将 uuid 保存到 result 对象中。 + @param data the serialized cc.Asset json string or json object. + @param result additional loading result + */ + export function deserialize(data : string|any, result? : Details, options? : any) : any; + /** !#en Clones the object original and returns the clone. + + See [Clone exists Entity](/en/scripting/create-destroy-entities/#instantiate) + + !#zh 复制给定的对象 + + 详细用法可参考[复制已有Entity](/zh/scripting/create-destroy-entities/#instantiate) + + Instantiate 时,function 和 dom 等非可序列化对象会直接保留原有引用,Asset 会直接进行浅拷贝,可序列化类型会进行深拷贝。 + 对于 Entity / Component 等 Scene Object,如果对方也会被一起 Instantiate,则重定向到新的引用,否则保留为原来的引用。 + @param original An existing object that you want to make a copy of. + */ + export function instantiate(original : any) : any; + /** Finds a node by hierarchy path, the path is case-sensitive. + It will traverse the hierarchy by splitting the path using '/' character. + This function will still returns the node even if it is inactive. + It is recommended to not use this function every frame instead cache the result at startup. + */ + export function find(path : string, referenceNode? : Node) : Node; + /** !#en + The convenience method to create a new {{#crossLink "Color/Color:method"}}cc.Color{{/crossLink}} + Alpha channel is optional. Default value is 255. + + !#zh + 通过该方法来创建一个新的 {{#crossLink "Color/Color:method"}}cc.Color{{/crossLink}} 对象。 + Alpha 通道是可选的。默认值是 255。 + + @example + ```js + ----------------------- + // 1. All channels seperately as parameters + var color1 = new cc.Color(255, 255, 255, 255); + // 2. Convert a hex string to a color + var color2 = new cc.Color("#000000"); + // 3. An color object as parameter + var color3 = new cc.Color({r: 255, g: 255, b: 255, a: 255}); + + ``` + */ + export function color(r? : number, g? : number, b? : number, a? : number) : Color; + /** !#en returns true if both ccColor3B are equal. Otherwise it returns false. + !#zh 判断两个颜色对象的 RGB 部分是否相等,不比较透明度。 + + @example + ```js + cc.log(cc.colorEqual(cc.Color.RED, new cc.Color(255, 0, 0))); // true + ``` + */ + export function colorEqual(color1: (r: number, g: number, b: number, a: number) => void, color2: (r: number, g: number, b: number, a: number) => void) : boolean; + /** !#en + convert a string of color for style to Color. + e.g. "#ff06ff" to : cc.color(255,6,255)。 + !#zh 16 进制转换为 Color + + @example + ```js + cc.hexToColor("#FFFF33"); // Color {r: 255, g: 255, b: 51, a: 255}; + ``` + */ + export function hexToColor(hex : string) : Color; + /** !#en + convert Color to a string of color for style. + e.g. cc.color(255,6,255) to : "#ff06ff" + !#zh Color 转换为 16进制。 + + @example + ```js + var color = new cc.Color(255, 6, 255) + cc.colorToHex(color); // #ff06ff; + ``` + */ + export function colorToHex(color: (r: number, g: number, b: number, a: number) => void) : string; + /** !#en + Define an enum type.
+ If a enum item has a value of -1, it will be given an Integer number according to it's order in the list.
+ Otherwise it will use the value specified by user who writes the enum definition. + + !#zh + 定义一个枚举类型。
+ 用户可以把枚举值设为任意的整数,如果设为 -1,系统将会分配为上一个枚举值 + 1。 + @param obj a JavaScript literal object containing enum names and values + + @example + ```js + var WrapMode = cc.Enum({ + Repeat: -1, + Clamp: -1 + }); + + // Texture.WrapMode.Repeat == 0 + // Texture.WrapMode.Clamp == 1 + // Texture.WrapMode[0] == "Repeat" + // Texture.WrapMode[1] == "Clamp" + + var FlagType = cc.Enum({ + Flag1: 1, + Flag2: 2, + Flag3: 4, + Flag4: 8, + }); + + var AtlasSizeList = cc.Enum({ + 128: 128, + 256: 256, + 512: 512, + 1024: 1024, + }); + ``` + */ + export function Enum(obj : any) : any; + /** !#en Returns opposite of Vec2. + !#zh 返回相反的向量。 + + @example + ```js + cc.pNeg(cc.v2(10, 10));// Vec2 {x: -10, y: -10}; + ``` + */ + export function pNeg(point : Vec2) : Vec2; + /** !#en Calculates sum of two points. + !#zh 返回两个向量的和。 + + @example + ```js + cc.pAdd(cc.v2(1, 1), cc.v2(2, 2));// Vec2 {x: 3, y: 3}; + ``` + */ + export function pAdd(v1 : Vec2, v2 : Vec2) : Vec2; + /** !#en Calculates difference of two points. + !#zh 返回两个向量的差。 + + @example + ```js + cc.pSub(cc.v2(20, 20), cc.v2(5, 5)); // Vec2 {x: 15, y: 15}; + ``` + */ + export function pSub(v1 : Vec2, v2 : Vec2) : Vec2; + /** !#en Returns point multiplied by given factor. + !#zh 向量缩放。 + + @example + ```js + cc.pMult(cc.v2(5, 5), 4); // Vec2 {x: 20, y: 20}; + ``` + */ + export function pMult(point : Vec2, floatVar : number) : Vec2; + /** !#en Calculates midpoint between two points. + !#zh 两个向量之间的中心点。 + + @example + ```js + cc.pMidpoint(cc.v2(10, 10), cc.v2(5, 5)); // Vec2 {x: 7.5, y: 7.5}; + ``` + */ + export function pMidpoint(v1 : Vec2, v2 : Vec2) : Vec2; + /** !#en Calculates dot product of two points. + !#zh 两个向量之间进行点乘。 + + @example + ```js + cc.pDot(cc.v2(20, 20), cc.v2(5, 5)); // 200; + ``` + */ + export function pDot(v1 : Vec2, v2 : Vec2) : number; + /** !#en Calculates cross product of two points. + !#zh 两个向量之间进行叉乘。 + + @example + ```js + cc.pCross(cc.v2(20, 20), cc.v2(5, 5)); // 0; + ``` + */ + export function pCross(v1 : Vec2, v2 : Vec2) : number; + /** !#en Calculates perpendicular of v, rotated 90 degrees counter-clockwise -- cross(v, perp(v)) greater than 0. + !#zh 返回逆时针旋转 90 度后的新向量。 + + @example + ```js + cc.pPerp(cc.v2(20, 20)); // Vec2 {x: -20, y: 20}; + ``` + */ + export function pPerp(point : Vec2) : Vec2; + /** !#en Calculates perpendicular of v, rotated 90 degrees clockwise -- cross(v, rperp(v)) smaller than 0. + !#zh 将指定向量顺时针旋转 90 度并返回。 + + @example + ```js + cc.pRPerp(cc.v2(20, 20)); // Vec2 {x: 20, y: -20}; + ``` + */ + export function pRPerp(point : Vec2) : Vec2; + /** !#en Calculates the projection of v1 over v2. + !#zh 返回 v1 在 v2 上的投影向量。 + + @example + ```js + var v1 = cc.v2(20, 20); + var v2 = cc.v2(5, 5); + cc.pProject(v1, v2); // Vec2 {x: 20, y: 20}; + ``` + */ + export function pProject(v1 : Vec2, v2 : Vec2) : Vec2; + /** !#en Calculates the square length of a cc.Vec2 (not calling sqrt() ). + !#zh 返回指定向量长度的平方。 + + @example + ```js + cc.pLengthSQ(cc.v2(20, 20)); // 800; + ``` + */ + export function pLengthSQ(v : Vec2) : number; + /** !#en Calculates the square distance between two points (not calling sqrt() ). + !#zh 返回两个点之间距离的平方。 + + @example + ```js + var point1 = cc.v2(20, 20); + var point2 = cc.v2(5, 5); + cc.pDistanceSQ(point1, point2); // 450; + ``` + */ + export function pDistanceSQ(point1 : Vec2, point2 : Vec2) : number; + /** !#en Calculates distance between point an origin. + !#zh 返回指定向量的长度. + + @example + ```js + cc.pLength(cc.v2(20, 20)); // 28.284271247461902; + ``` + */ + export function pLength(v : Vec2) : number; + /** !#en Calculates the distance between two points. + !#zh 返回指定 2 个向量之间的距离。 + + @example + ```js + var v1 = cc.v2(20, 20); + var v2 = cc.v2(5, 5); + cc.pDistance(v1, v2); // 21.213203435596427; + ``` + */ + export function pDistance(v1 : Vec2, v2 : Vec2) : number; + /** !#en Returns this vector with a magnitude of 1. + !#zh 返回一个长度为 1 的标准化过后的向量。 + + @example + ```js + cc.pNormalize(cc.v2(20, 20)); // Vec2 {x: 0.7071067811865475, y: 0.7071067811865475}; + ``` + */ + export function pNormalize(v : Vec2) : Vec2; + /** !#en Converts radians to a normalized vector. + !#zh 将弧度转换为一个标准化后的向量,返回坐标 x = cos(a) , y = sin(a)。 + + @example + ```js + cc.pForAngle(20); // Vec2 {x: 0.40808206181339196, y: 0.9129452507276277}; + ``` + */ + export function pForAngle(a : number) : Vec2; + /** !#en Converts a vector to radians. + !#zh 返回指定向量的弧度。 + + @example + ```js + cc.pToAngle(cc.v2(20, 20)); // 0.7853981633974483; + ``` + */ + export function pToAngle(v : Vec2) : number; + /** !#en Clamp a value between from and to. + !#zh + 限定浮点数的最大最小值。
+ 数值大于 max_inclusive 则返回 max_inclusive。
+ 数值小于 min_inclusive 则返回 min_inclusive。
+ 否则返回自身。 + + @example + ```js + var v1 = cc.clampf(20, 0, 20); // 20; + var v2 = cc.clampf(-1, 0, 20); // 0; + var v3 = cc.clampf(10, 0, 20); // 10; + ``` + */ + export function clampf(value : number, min_inclusive : number, max_inclusive : number) : number; + /** !#en Clamp a value between 0 and 1. + !#zh 限定浮点数的取值范围为 0 ~ 1 之间。 + + @example + ```js + var v1 = cc.clampf(20); // 1; + var v2 = cc.clampf(-1); // 0; + var v3 = cc.clampf(0.5); // 0.5; + ``` + */ + export function clamp01(value : number) : number; + /** !#en Clamp a point between from and to. + !#zh + 返回指定限制区域后的向量。
+ 向量大于 max_inclusive 则返回 max_inclusive。
+ 向量小于 min_inclusive 则返回 min_inclusive。
+ 否则返回自身。 + + @example + ```js + var min_inclusive = cc.v2(0, 0); + var max_inclusive = cc.v2(20, 20); + var v1 = cc.pClamp(cc.v2(20, 20), min_inclusive, max_inclusive); // Vec2 {x: 20, y: 20}; + var v2 = cc.pClamp(cc.v2(0, 0), min_inclusive, max_inclusive); // Vec2 {x: 0, y: 0}; + var v3 = cc.pClamp(cc.v2(10, 10), min_inclusive, max_inclusive); // Vec2 {x: 10, y: 10}; + ``` + */ + export function pClamp(p : Vec2, min_inclusive : Vec2, max_inclusive : Vec2) : Vec2; + /** !#en Quickly convert cc.Size to a cc.Vec2. + !#zh 快速转换 cc.Size 为 cc.Vec2。 + + @example + ```js + cc.pFromSize(new cc.size(20, 20)); // Vec2 {x: 20, y: 20}; + ``` + */ + export function pFromSize(s : Size) : Vec2; + /** !#en + Run a math operation function on each point component
+ Math.abs, Math.fllor, Math.ceil, Math.round. + !#zh 通过运行指定的数学运算函数来计算指定的向量。 + + @example + ```js + cc.pCompOp(cc.p(-10, -10), Math.abs); // Vec2 {x: 10, y: 10}; + ``` + */ + export function pCompOp(p : Vec2, opFunc : Function) : Vec2; + /** !#en + Linear Interpolation between two points a and b.
+ alpha == 0 ? a
+ alpha == 1 ? b
+ otherwise a value between a..b. + !#zh + 两个点 A 和 B 之间的线性插值。
+ alpha == 0 ? a
+ alpha == 1 ? b
+ 否则这个数值在 a ~ b 之间。 + + @example + ```js + cc.pLerp(cc.v2(20, 20), cc.v2(5, 5), 0.5); // Vec2 {x: 12.5, y: 12.5}; + ``` + */ + export function pLerp(a : Vec2, b : Vec2, alpha : number) : Vec2; + /** !#en TODO + !#zh + 近似判断两个点是否相等。
+ 判断 2 个向量是否在指定数值的范围之内,如果在则返回 true,反之则返回 false。 + + @example + ```js + var a = cc.v2(20, 20); + var b = cc.v2(5, 5); + var b1 = cc.pFuzzyEqual(a, b, 10); // false; + var b2 = cc.pFuzzyEqual(a, b, 18); // true; + ``` + */ + export function pFuzzyEqual(a : Vec2, b : Vec2, variance : number) : boolean; + /** !#en Multiplies a nd b components, a.x*b.x, a.y*b.y. + !#zh 计算两个向量的每个分量的乘积, a.x * b.x, a.y * b.y。 + + @example + ```js + cc.pCompMult(acc.v2(20, 20), cc.v2(5, 5)); // Vec2 {x: 100, y: 100}; + ``` + */ + export function pCompMult(a : Vec2, b : Vec2) : Vec2; + /** !#en TODO + !#zh 返回两个向量之间带正负号的弧度。 + */ + export function pAngleSigned(a : Vec2, b : Vec2) : number; + /** !#en TODO + !#zh 获取当前向量与指定向量之间的弧度角。 + */ + export function pAngle(a : Vec2, b : Vec2) : number; + /** !#en Rotates a point counter clockwise by the angle around a pivot. + !#zh 返回给定向量围绕指定轴心顺时针旋转一定弧度后的结果。 + @param v v is the point to rotate + @param pivot pivot is the pivot, naturally + @param angle angle is the angle of rotation cw in radians + */ + export function pRotateByAngle(v : Vec2, pivot : Vec2, angle : number) : Vec2; + /** !#en + A general line-line intersection test + indicating successful intersection of a line
+ note that to truly test intersection for segments we have to make
+ sure that s & t lie within [0..1] and for rays, make sure s & t > 0
+ the hit point is p3 + t * (p4 - p3);
+ the hit point also is p1 + s * (p2 - p1); + !#zh + 返回 A 为起点 B 为终点线段 1 所在直线和 C 为起点 D 为终点线段 2 所在的直线是否相交,
+ 如果相交返回 true,反之则为 false,参数 retP 是返回交点在线段 1、线段 2 上的比例。 + @param A A is the startpoint for the first line P1 = (p1 - p2). + @param B B is the endpoint for the first line P1 = (p1 - p2). + @param C C is the startpoint for the second line P2 = (p3 - p4). + @param D D is the endpoint for the second line P2 = (p3 - p4). + @param retP retP.x is the range for a hitpoint in P1 (pa = p1 + s*(p2 - p1)),
+ retP.y is the range for a hitpoint in P3 (pa = p2 + t*(p4 - p3)). + */ + export function pLineIntersect(A : Vec2, B : Vec2, C : Vec2, D : Vec2, retP : Vec2) : boolean; + /** !#en ccpSegmentIntersect return YES if Segment A-B intersects with segment C-D. + !#zh 返回线段 A - B 和线段 C - D 是否相交。 + */ + export function pSegmentIntersect(A : Vec2, B : Vec2, C : Vec2, D : Vec2) : boolean; + /** !#en ccpIntersectPoint return the intersection point of line A-B, C-D. + !#zh 返回线段 A - B 和线段 C - D 的交点。 + */ + export function pIntersectPoint(A : Vec2, B : Vec2, C : Vec2, D : Vec2) : Vec2; + /** !#en check to see if both points are equal. + !#zh 检查指定的 2 个向量是否相等。 + @param A A ccp a + @param B B ccp b to be compared + */ + export function pSameAs(A : Vec2, B : Vec2) : boolean; + /** !#en sets the position of the point to 0. + !#zh 设置指定向量归 0。 + */ + export function pZeroIn(v : Vec2) : void; + /** !#en copies the position of one point to another. + !#zh 令 v1 向量等同于 v2。 + */ + export function pIn(v1 : Vec2, v2 : Vec2) : void; + /** !#en multiplies the point with the given factor (inplace). + !#zh 向量缩放,结果保存到第一个向量。 + */ + export function pMultIn(point : Vec2, floatVar : number) : void; + /** !#en subtracts one point from another (inplace). + !#zh 向量减法,结果保存到第一个向量。 + */ + export function pSubIn(v1 : Vec2, v2 : Vec2) : void; + /** !#en adds one point to another (inplace). + !#zh 向量加法,结果保存到第一个向量。 + */ + export function pAddIn(v1 : Vec2, v2 : Vec2) : void; + /** !#en normalizes the point (inplace). + !#zh 规范化 v 向量,设置 v 向量长度为 1。 + */ + export function pNormalizeIn(v : Vec2) : void; + /** !#en + The convenience method to create a new Rect. + see {{#crossLink "Rect/Rect:method"}}cc.Rect{{/crossLink}} + !#zh + 该方法用来快速创建一个新的矩形。{{#crossLink "Rect/Rect:method"}}cc.Rect{{/crossLink}} + + @example + ```js + var a = new cc.rect(0 , 0, 10, 0); + ``` + */ + export function rect(x? : Number[]|number, y? : number, w? : number, h? : number) : Rect; + /** !#en Check whether a rect's value equals to another. + !#zh 判断两个矩形是否相等。 + @param rect1 !#en + Constructor of cc.Rect class. + see {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} for convenience method. + !#zh + cc.Rect类的构造函数。可以通过 {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} 简便方法进行创建。 + @param rect2 !#en + Constructor of cc.Rect class. + see {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} for convenience method. + !#zh + cc.Rect类的构造函数。可以通过 {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} 简便方法进行创建。 + + @example + ```js + var a = new cc.rect(0, 0, 10, 10); + var b = new cc.rect(0, 0, 5, 5); + cc.rectEqualToRect(a, b); // false; + var c = new cc.rect(0, 0, 5, 5); + cc.rectEqualToRect(b, c); // true; + ``` + */ + export function rectEqualToRect(rect1: (x: number, y: number, w: number, h: number) => void, rect2: (x: number, y: number, w: number, h: number) => void) : boolean; + /** !#en Check whether the rect1 contains rect2. + !#zh + 检查 rect1 矩形是否包含 rect2 矩形。
+ 注意:如果要允许 rect1 和 rect2 的边界重合,应该用 cc.rectOverlapsRect + @param rect1 !#en + Constructor of cc.Rect class. + see {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} for convenience method. + !#zh + cc.Rect类的构造函数。可以通过 {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} 简便方法进行创建。 + @param rect2 !#en + Constructor of cc.Rect class. + see {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} for convenience method. + !#zh + cc.Rect类的构造函数。可以通过 {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} 简便方法进行创建。 + + @example + ```js + var a = new cc.rect(0, 0, 20, 20); + var b = new cc.rect(10, 10, 20, 20); + cc.rectContainsRect(a, b); // true; + ``` + */ + export function rectContainsRect(rect1: (x: number, y: number, w: number, h: number) => void, rect2: (x: number, y: number, w: number, h: number) => void) : boolean; + /** !#en Returns the rightmost x-value of a rect. + !#zh 返回矩形在 x 轴上的最大值 + @param rect !#en + Constructor of cc.Rect class. + see {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} for convenience method. + !#zh + cc.Rect类的构造函数。可以通过 {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} 简便方法进行创建。 + + @example + ```js + var a = new cc.rect(10, 0, 20, 20); + cc.rectGetMaxX(a); // 30; + ``` + */ + export function rectGetMaxX(rect: (x: number, y: number, w: number, h: number) => void) : number; + /** !#en Return the midpoint x-value of a rect. + !#zh 返回矩形在 x 轴上的中点。 + @param rect !#en + Constructor of cc.Rect class. + see {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} for convenience method. + !#zh + cc.Rect类的构造函数。可以通过 {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} 简便方法进行创建。 + + @example + ```js + var a = new cc.rect(10, 0, 20, 20); + cc.rectGetMidX(a); // 20; + ``` + */ + export function rectGetMidX(rect: (x: number, y: number, w: number, h: number) => void) : number; + /** !#en Returns the leftmost x-value of a rect. + !#zh 返回矩形在 x 轴上的最小值。 + @param rect !#en + Constructor of cc.Rect class. + see {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} for convenience method. + !#zh + cc.Rect类的构造函数。可以通过 {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} 简便方法进行创建。 + + @example + ```js + var a = new cc.rect(10, 0, 20, 20); + cc.rectGetMinX(a); // 10; + ``` + */ + export function rectGetMinX(rect: (x: number, y: number, w: number, h: number) => void) : number; + /** !#en Return the topmost y-value of a rect. + !#zh 返回矩形在 y 轴上的最大值。 + @param rect !#en + Constructor of cc.Rect class. + see {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} for convenience method. + !#zh + cc.Rect类的构造函数。可以通过 {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} 简便方法进行创建。 + + @example + ```js + var a = new cc.rect(0, 10, 20, 20); + cc.rectGetMaxY(a); // 30; + ``` + */ + export function rectGetMaxY(rect: (x: number, y: number, w: number, h: number) => void) : number; + /** !#en Return the midpoint y-value of `rect'. + !#zh 返回矩形在 y 轴上的中点。 + @param rect !#en + Constructor of cc.Rect class. + see {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} for convenience method. + !#zh + cc.Rect类的构造函数。可以通过 {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} 简便方法进行创建。 + + @example + ```js + var a = new cc.rect(0, 10, 20, 20); + cc.rectGetMidY(a); // 20; + ``` + */ + export function rectGetMidY(rect: (x: number, y: number, w: number, h: number) => void) : number; + /** !#en Return the bottommost y-value of a rect. + !#zh 返回矩形在 y 轴上的最小值。 + @param rect !#en + Constructor of cc.Rect class. + see {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} for convenience method. + !#zh + cc.Rect类的构造函数。可以通过 {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} 简便方法进行创建。 + + @example + ```js + var a = new cc.rect(0, 10, 20, 20); + cc.rectGetMinY(a); // 10; + ``` + */ + export function rectGetMinY(rect: (x: number, y: number, w: number, h: number) => void) : number; + /** !#en Check whether a rect contains a point. + !#zh 检查一个矩形是否包含某个坐标点。 + @param rect !#en + Constructor of cc.Rect class. + see {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} for convenience method. + !#zh + cc.Rect类的构造函数。可以通过 {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} 简便方法进行创建。 + + @example + ```js + var a = new cc.rect(0, 10, 20, 20); + var b = cc.v2(0, 10, 10, 10); + cc.rectContainsPoint(a, b); // true; + ``` + */ + export function rectContainsPoint(rect: (x: number, y: number, w: number, h: number) => void, point : Vec2) : boolean; + /** !#en Check whether a rect intersect with another. + !#zh 检查一个矩形是否与另一个相交。 + @param rectA !#en + Constructor of cc.Rect class. + see {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} for convenience method. + !#zh + cc.Rect类的构造函数。可以通过 {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} 简便方法进行创建。 + @param rectB !#en + Constructor of cc.Rect class. + see {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} for convenience method. + !#zh + cc.Rect类的构造函数。可以通过 {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} 简便方法进行创建。 + + @example + ```js + var a = new cc.rect(0, 10, 20, 20); + var b = new cc.rect(0, 10, 10, 10); + cc.rectIntersectsRect(a, b); // true; + ``` + */ + export function rectIntersectsRect(rectA: (x: number, y: number, w: number, h: number) => void, rectB: (x: number, y: number, w: number, h: number) => void) : boolean; + /** !#en Check whether a rect overlaps another. + !#zh 检查一个矩形是否重叠另一个。 + @param rectA !#en + Constructor of cc.Rect class. + see {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} for convenience method. + !#zh + cc.Rect类的构造函数。可以通过 {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} 简便方法进行创建。 + @param rectB !#en + Constructor of cc.Rect class. + see {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} for convenience method. + !#zh + cc.Rect类的构造函数。可以通过 {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} 简便方法进行创建。 + + @example + ```js + var a = new cc.rect(0, 10, 20, 20); + var b = new cc.rect(0, 10, 10, 10); + cc.rectOverlapsRect(a, b); // true; + ``` + */ + export function rectOverlapsRect(rectA: (x: number, y: number, w: number, h: number) => void, rectB: (x: number, y: number, w: number, h: number) => void) : boolean; + /** !#en Returns the smallest rectangle that contains the two source rectangles. + !#zh 返回一个包含两个指定矩形的最小矩形。 + @param rectA !#en + Constructor of cc.Rect class. + see {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} for convenience method. + !#zh + cc.Rect类的构造函数。可以通过 {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} 简便方法进行创建。 + @param rectB !#en + Constructor of cc.Rect class. + see {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} for convenience method. + !#zh + cc.Rect类的构造函数。可以通过 {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} 简便方法进行创建。 + + @example + ```js + var a = new cc.rect(0, 10, 20, 20); + var b = new cc.rect(0, 10, 10, 10); + cc.rectUnion(a, b); // Rect {x: 0, y: 10, width: 20, height: 20}; + ``` + */ + export function rectUnion(rectA: (x: number, y: number, w: number, h: number) => void, rectB: (x: number, y: number, w: number, h: number) => void) : Rect; + /** !#en Returns the overlapping portion of 2 rectangles. + !#zh 返回 2 个矩形重叠的部分。 + @param rectA !#en + Constructor of cc.Rect class. + see {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} for convenience method. + !#zh + cc.Rect类的构造函数。可以通过 {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} 简便方法进行创建。 + @param rectB !#en + Constructor of cc.Rect class. + see {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} for convenience method. + !#zh + cc.Rect类的构造函数。可以通过 {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} 简便方法进行创建。 + + @example + ```js + var a = new cc.rect(0, 10, 20, 20); + var b = new cc.rect(0, 10, 10, 10); + cc.rectIntersection(a, b); // Rect {x: 0, y: 10, width: 10, height: 10}; + ``` + */ + export function rectIntersection(rectA: (x: number, y: number, w: number, h: number) => void, rectB: (x: number, y: number, w: number, h: number) => void) : Rect; + export function V3F_C4B_T2F_QuadZero() : V3F_C4B_T2F_Quad; + /** + */ + export function V3F_C4B_T2F_QuadCopy(sourceQuad: (tl: V3F_C4B_T2F, bl: V3F_C4B_T2F, tr: V3F_C4B_T2F, br: V3F_C4B_T2F, arrayBuffer: any[], offset: number) => void) : V3F_C4B_T2F_Quad; + /** + */ + export function V3F_C4B_T2F_QuadsCopy(sourceQuads : any[]) : any[]; + /** !#en The convenience method to create a new {{#crossLink "Vec2"}}cc.Vec2{{/crossLink}}. + !#zh 通过该简便的函数进行创建 {{#crossLink "Vec2"}}cc.Vec2{{/crossLink}} 对象。 + + @example + ```js + var v1 = cc.v2(); + var v2 = cc.v2(0, 0); + var v3 = cc.v2(v2); + var v4 = cc.v2({x: 100, y: 100}); + ``` + */ + export function v2(x? : number|any, y? : number) : Vec2; + /** !#en The convenience method to creates a new {{#crossLink "Vec2"}}cc.Vec2{{/crossLink}}. + !#zh 通过该简便的函数进行创建 {{#crossLink "Vec2"}}cc.Vec2{{/crossLink}} 对象。 + @param x a Number or a size object + + @example + ```js + var point1 = cc.p(); + var point2 = cc.p(100, 100); + var point3 = cc.p(point2); + var point4 = cc.p({x: 100, y: 100}); + ``` + */ + export function p(x? : number|any, y? : number) : Vec2; + /** !#en Check whether a point's value equals to another. + !#zh 判断两个向量是否相等。 + @param point1 !#en + Constructor + see {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} or {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + !#zh + 构造函数,可查看 {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} 或者 {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + @param point2 !#en + Constructor + see {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} or {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + !#zh + 构造函数,可查看 {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} 或者 {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + */ + export function pointEqualToPoint(point1: (x: number, y: number) => void, point2: (x: number, y: number) => void) : boolean; + /** !#en Enum for debug modes. + !#zh 调试模式 */ + export enum DebugMode { + NONE. = 0, + INFO = 0, + WARN = 0, + ERROR = 0, + INFO_FOR_WEB_PAGE = 0, + WARN_FOR_WEB_PAGE = 0, + ERROR_FOR_WEB_PAGE = 0, + } + /** !#en cc.audioEngine is the singleton object, it provide simple audio APIs. + !#zn + cc.audioengine是单例对象。
+ 主要用来播放背景音乐和音效,背景音乐同一时间只能播放一个,而音效则可以同时播放多个。
+ 注意:
+ 在 Android 系统浏览器上,不同浏览器,不同版本的效果不尽相同。
+ 比如说:大多数浏览器都需要用户物理交互才可以开始播放音效,有一些不支持 WebAudio,
+ 有一些不支持多音轨播放。总之如果对音乐依赖比较强,请做尽可能多的测试。 */ + export class audioEngine { + /** !#en Play music. + !#zh + 播放指定音乐,并可以设置是否循环播放。
+ 注意:音乐播放接口不支持多音轨,同一时间只能播放一个音乐。 + @param url The path of the music file without filename extension. + @param loop Whether the music loop or not. + @param immediate Whether immediately play music. + + @example + ```js + //example + cc.audioEngine.playMusic(path, false); + ``` + */ + playMusic(url : string, loop : boolean, immediate : boolean) : void; + /** !#en Stop playing music. + !#zh 停止当前音乐。 + @param releaseData If release the music data or not.As default value is false. + + @example + ```js + //example + cc.audioEngine.stopMusic(); + ``` + */ + stopMusic(releaseData? : boolean) : void; + /** !#en Pause playing music. + !#zh 暂停正在播放音乐。 + + @example + ```js + //example + cc.audioEngine.pauseMusic(); + ``` + */ + pauseMusic() : void; + /** !#en Resume playing music. + !#zh 恢复音乐播放。 + + @example + ```js + //example + cc.audioEngine.resumeMusic(); + ``` + */ + resumeMusic() : void; + /** !#en Rewind playing music. + !#zh 从头开始重新播放当前音乐。 + + @example + ```js + //example + cc.audioEngine.rewindMusic(); + ``` + */ + rewindMusic() : void; + /** !#en The volume of the music max value is 1.0,the min value is 0.0 . + !#zh 获取音量(0.0 ~ 1.0)。 + + @example + ```js + //example + var volume = cc.audioEngine.getMusicVolume(); + ``` + */ + getMusicVolume() : number; + /** !#en Set the volume of music. + !#zh 设置音量(0.0 ~ 1.0)。 + @param volume Volume must be in 0.0~1.0 . + + @example + ```js + //example + cc.audioEngine.setMusicVolume(0.5); + ``` + */ + setMusicVolume(volume : number) : void; + /** !#en Whether the music is playing. + !#zh 音乐是否正在播放。 + + @example + ```js + //example + if (cc.audioEngine.isMusicPlaying()) { + cc.log("music is playing"); + } + else { + cc.log("music is not playing"); + } + ``` + */ + isMusicPlaying() : boolean; + /** !#en Play sound effect. + !#zh + 播放指定音效,并可以设置是否循环播放。
+ 注意:在部分不支持多音轨的浏览器上,这个接口会失效,请使用 playMusic + @param url The path of the sound effect with filename extension. + @param loop Whether to loop the effect playing, default value is false + + @example + ```js + //example + var soundId = cc.audioEngine.playEffect(path); + ``` + */ + playEffect(url : string, loop : boolean, volume : boolean) : number; + /** !#en Set the volume of sound effects. + !#zh 设置音效音量(0.0 ~ 1.0)。 + @param volume Volume must be in 0.0~1.0 . + + @example + ```js + //example + cc.audioEngine.setEffectsVolume(0.5); + ``` + */ + setEffectsVolume(volume : number) : void; + /** !#en The volume of the effects max value is 1.0,the min value is 0.0 . + !#zh 获取音效音量(0.0 ~ 1.0)。 + + @example + ```js + //example + var effectVolume = cc.audioEngine.getEffectsVolume(); + ``` + */ + getEffectsVolume() : number; + /** !#en Pause playing sound effect. + !#zh 暂停指定的音效。 + @param audio The return value of function playEffect. + + @example + ```js + //example + cc.audioEngine.pauseEffect(audioID); + ``` + */ + pauseEffect(audio : number) : void; + /** !#en Pause all playing sound effect. + !#zh 暂停现在正在播放的所有音效。 + + @example + ```js + //example + cc.audioEngine.pauseAllEffects(); + ``` + */ + pauseAllEffects() : void; + /** !#en Resume playing sound effect. + !#zh 恢复播放指定的音效。 + @param audioID The return value of function playEffect. + */ + resumeEffect(audioID : number) : void; + /** !#en Resume all playing sound effect. + !#zh 恢复播放所有之前暂停的所有音效。 + + @example + ```js + //example + cc.audioEngine.resumeAllEffects(); + ``` + */ + resumeAllEffects() : void; + /** !#en Stop playing sound effect. + !#zh 停止播放指定音效。 + @param audioID The return value of function playEffect. + + @example + ```js + //example + cc.audioEngine.stopEffect(audioID); + ``` + */ + stopEffect(audioID : number) : void; + /** !#en Stop all playing sound effects. + !#zh 停止正在播放的所有音效。 + + @example + ```js + //example + cc.audioEngine.stopAllEffects(); + ``` + */ + stopAllEffects() : void; + /** !#en Unload the preloaded effect from internal buffer. + !#zh 卸载预加载的音效。 + + @example + ```js + //example + cc.audioEngine.unloadEffect(EFFECT_FILE); + ``` + */ + unloadEffect(url : string) : void; + /** !#en End music and effects. + !#zh 停止所有音乐和音效的播放。 + */ + end() : void; + } + /** !#en Class for animation data handling. + !#zh 动画剪辑,用于存储动画数据。 */ + export class AnimationClip extends Asset { + constructor(); + /** !#en Duration of this animation. + !#zh 动画的持续时间。 */ + duration : number; + /** !#en FrameRate of this animation. + !#zh 动画的帧速率。 */ + sample : number; + /** !#en Speed of this animation. + !#zh 动画的播放速度。 */ + speed : number; + /** !#en WrapMode of this animation. + !#zh 动画的循环模式。 */ + wrapMode : WrapMode; + /** !#en Curve data. + !#zh 曲线数据。 */ + curveData : any; + /** !#en Event data. + !#zh 事件数据。 */ + events : any[]; + /** !#en Crate clip with a set of sprite frames + !#zh 使用一组序列帧图片来创建动画剪辑 */ + sample : number; + } + /** !#en + The AnimationState gives full control over animation playback process. + In most cases the Animation Component is sufficient and easier to use. Use the AnimationState if you need full control. + !#zh + AnimationState 完全控制动画播放过程。
+ 大多数情况下 动画组件 是足够和易于使用的。如果您需要更多的动画控制接口,请使用 AnimationState。 */ + export class AnimationState extends AnimationNode { + constructor(); + /** + */ + AnimationState(clip : AnimationClip, name? : string) : AnimationState; + /** !#en The clip that is being played by this animation state. + !#zh 此动画状态正在播放的剪辑。 */ + clip : AnimationClip; + /** !#en The name of the playing animation. + !#zh 动画的名字 */ + name : string; + } + /** undefined */ + export class Playable { + constructor(); + /** !#en Is playing or paused in play mode? + !#zh 当前是否正在播放。 */ + isPlaying : boolean; + /** !#en Is currently paused? This can be true even if in edit mode(isPlaying == false). + !#zh 当前是否正在暂停 */ + isPaused : boolean; + /** !#en Play this animation. + !#zh 播放动画。 + */ + play() : void; + /** !#en Stop this animation. + !#zh 停止动画播放。 + */ + stop() : void; + /** !#en Pause this animation. + !#zh 暂停动画。 + */ + pause() : void; + /** !#en Resume this animation. + !#zh 重新播放动画。 + */ + resume() : void; + /** !#en Perform a single frame step. + !#zh 执行一帧动画。 + */ + step() : void; + } + /** !#en Specifies how time is treated when it is outside of the keyframe range of an Animation. + !#zh 动画使用的循环模式。 */ + export enum WrapMode { + Default = 0, + Normal = 0, + Reverse = 0, + Loop = 0, + LoopReverse = 0, + PingPong = 0, + PingPongReverse = 0, + } + /** !#en The abstract interface for all playing animation. + !#zh 所有播放动画的抽象接口。 */ + export class AnimationNodeBase extends Playable { + constructor(); + /** !#en The curves list. + !#zh 曲线列表。 */ + curves : AnimCurve[]; + /** !#en The start delay which represents the number of seconds from an animation's start time to the start of + the active interval. + !#zh 延迟多少秒播放。 */ + delay : number; + /** !#en The animation's iteration count property. + + A real number greater than or equal to zero (including positive infinity) representing the number of times + to repeat the animation node. + + Values less than zero and NaN values are treated as the value 1.0 for the purpose of timing model + calculations. + + !#zh 迭代次数,指动画播放多少次后结束, normalize time。 如 2.5(2次半) */ + repeatCount : number; + /** !#en The iteration duration of this animation in seconds. (length) + !#zh 单次动画的持续时间,秒。 */ + duration : number; + /** !#en The animation's playback speed. 1 is normal playback speed. + !#zh 播放速率。 */ + speed : number; + /** !#en Wrapping mode of the playing animation. + !#zh 动画循环方式。 */ + wrapMode : WrapMode; + /** !#en The current time of this animation in seconds. + !#zh 动画当前的时间,秒。 */ + time : number; + } + /** !#en Base class cc.Action for action classes. + !#zh Action 类是所有动作类型的基类。 */ + export class Action { + /** !#en + to copy object with deep copy. + returns a clone of action. + !#zh 返回一个克隆的动作。 + */ + clone() : Action; + /** !#en + return true if the action has finished. + !#zh 如果动作已完成就返回 true。 + */ + isDone() : boolean; + /** !#en get the target. + !#zh 获取当前目标节点。 + */ + getTarget() : Node; + /** !#en The action will modify the target properties. + !#zh 设置目标节点。 + */ + setTarget(target : Node) : void; + /** !#en get the original target. + !#zh 获取原始目标节点。 + */ + getOriginalTarget() : Node; + /** !#en get tag number. + !#zh 获取用于识别动作的标签。 + */ + getTag() : number; + /** !#en set tag number. + !#zh 设置标签,用于识别动作。 + */ + setTag(tag : number) : void; + /** !#en Default Action tag. + !#zh 默认动作标签。 */ + TAG_INVALID : number; + } + /** !#en + Base class actions that do have a finite time duration.
+ Possible actions:
+ - An action with a duration of 0 seconds.
+ - An action with a duration of 35.5 seconds. + + Infinite time actions are valid + !#zh 有限时间动作,这种动作拥有时长 duration 属性。 */ + export class FiniteTimeAction extends Action { + /** !#en get duration of the action. (seconds). + !#zh 获取动作以秒为单位的持续时间。 + */ + getDuration() : number; + /** !#en set duration of the action. (seconds). + !#zh 设置动作以秒为单位的持续时间。 + */ + setDuration(duration : number) : void; + /** !#en + Returns a reversed action.
+ For example:
+ - The action will be x coordinates of 0 move to 100.
+ - The reversed action will be x of 100 move to 0. + - Will be rewritten + !#zh 返回一个新的动作,执行与原动作完全相反的动作。 + */ + reverse() : void; + /** !#en + to copy object with deep copy. + returns a clone of action. + !#zh 返回一个克隆的动作。 + */ + clone() : FiniteTimeAction; + } + /** !#en Base class for Easing actions. + !#zh 所有缓动动作基类,用于修饰 ActionInterval。 */ + export class ActionEase extends ActionInterval { + } + /** !#en Base class for Easing actions with rate parameters + !#zh 拥有速率属性的缓动动作基类。 */ + export class EaseRateAction extends ActionEase { + } + /** !#en Ease Elastic abstract class. + !#zh 弹性缓动动作基类。 */ + export class EaseElastic extends ActionEase { + } + /** !#en cc.EaseBounce abstract class. + !#zh 反弹缓动动作基类。 */ + export class EaseBounce extends ActionEase { + } + /** !#en Instant actions are immediate actions. They don't have a duration like the ActionInterval actions. + !#zh 即时动作,这种动作立即就会执行,继承自 FiniteTimeAction。 */ + export class ActionInstant extends FiniteTimeAction { + } + /** !#en +

An interval action is an action that takes place within a certain period of time.
+ It has an start time, and a finish time. The finish time is the parameter
+ duration plus the start time.

+ +

These CCActionInterval actions have some interesting properties, like:
+ - They can run normally (default)
+ - They can run reversed with the reverse method
+ - They can run with the time altered with the Accelerate, AccelDeccel and Speed actions.

+ +

For example, you can simulate a Ping Pong effect running the action normally and
+ then running it again in Reverse mode.

+ !#zh 时间间隔动作,这种动作在已定时间内完成,继承 FiniteTimeAction。 */ + export class ActionInterval extends FiniteTimeAction { + /** !#en Implementation of ease motion. + !#zh 缓动运动。 + + @example + + action.easeing(cc.easeIn(3.0));,```js + action.easeing(cc.easeIn(3.0)); + ``` + */ + easing(easeObj : any) : ActionInterval; + /** !#en + Repeats an action a number of times. + To repeat an action forever use the CCRepeatForever action. + !#zh 重复动作可以按一定次数重复一个动作,使用 RepeatForever 动作来永远重复一个动作。 + */ + repeat(times : void) : ActionInterval; + /** !#en + Repeats an action for ever.
+ To repeat the an action for a limited number of times use the Repeat action.
+ !#zh 永远地重复一个动作,有限次数内重复一个动作请使用 Repeat 动作。 + */ + repeatForever() : ActionInterval; + } + /** !#en + cc.ActionManager is a class that can manage actions.
+ Normally you won't need to use this class directly. 99% of the cases you will use the CCNode interface, + which uses this class's singleton object. + But there are some cases where you might need to use this class.
+ Examples:
+ - When you want to run an action where the target is different from a CCNode.
+ - When you want to pause / resume the actions
+ !#zh + cc.ActionManager 是可以管理动作的单例类。
+ 通常你并不需要直接使用这个类,99%的情况您将使用 CCNode 的接口。
+ 但也有一些情况下,您可能需要使用这个类。
+ 例如: + - 当你想要运行一个动作,但目标不是 CCNode 类型时。
+ - 当你想要暂停/恢复动作时。
*/ + export class ActionManager { + /** !#en + Adds an action with a target.
+ If the target is already present, then the action will be added to the existing target. + If the target is not present, a new instance of this target will be created either paused or not, and the action will be added to the newly created target. + When the target is paused, the queued actions won't be 'ticked'. + !#zh + 增加一个动作,同时还需要提供动作的目标对象,目标对象是否暂停作为参数。
+ 如果目标已存在,动作将会被直接添加到现有的节点中。
+ 如果目标不存在,将为这一目标创建一个新的实例,并将动作添加进去。
+ 当目标状态的 paused 为 true,动作将不会被执行 + */ + addAction(action : Action, target : Node, paused : boolean) : void; + /** !#en Removes all actions from all the targets. + !#zh 移除所有对象的所有动作。 + */ + removeAllActions() : void; + /** !#en + Removes all actions from a certain target.
+ All the actions that belongs to the target will be removed. + !#zh + 移除指定对象上的所有动作。
+ 属于该目标的所有的动作将被删除。 + */ + removeAllActionsFromTarget(target : any, forceDelete : boolean) : void; + /** !#en Removes an action given an action reference. + !#zh 移除指定的动作。 + */ + removeAction(action : Action) : void; + /** !#en Removes an action given its tag and the target. + !#zh 删除指定对象下特定标签的一个动作,将删除首个匹配到的动作。 + */ + removeActionByTag(tag : number, target : any) : void; + /** !#en Gets an action given its tag an a target. + !#zh 通过目标对象和标签获取一个动作。 + */ + getActionByTag(tag : number, target : any) : Action; + /** !#en + Returns the numbers of actions that are running in a certain target.
+ Composable actions are counted as 1 action.
+ Example:
+ - If you are running 1 Sequence of 7 actions, it will return 1.
+ - If you are running 7 Sequences of 2 actions, it will return 7. + !#zh + 返回指定对象下所有正在运行的动作数量。
+ 组合动作被算作一个动作。
+ 例如:
+ - 如果您正在运行 7 个动作组成的序列动作(Sequence),这个函数将返回 1。
+ - 如果你正在运行 2 个序列动作(Sequence)和 5 个普通动作,这个函数将返回 7。
+ */ + numberOfRunningActionsInTarget(target : any) : number; + /** !#en Pauses the target: all running actions and newly added actions will be paused. + !#zh 暂停指定对象:所有正在运行的动作和新添加的动作都将会暂停。 + */ + pauseTarget(target : any) : void; + /** !#en Resumes the target. All queued actions will be resumed. + !#zh 让指定目标恢复运行。在执行序列中所有被暂停的动作将重新恢复运行。 + */ + resumeTarget(target : any) : void; + /** !#en Pauses all running actions, returning a list of targets whose actions were paused. + !#zh 暂停所有正在运行的动作,返回一个包含了那些动作被暂停了的目标对象的列表。 + */ + pauseAllRunningActions() : any[]; + /** !#en Resume a set of targets (convenience function to reverse a pauseAllRunningActions or pauseTargets call). + !#zh 让一组指定对象恢复运行(用来逆转 pauseAllRunningActions 效果的便捷函数)。 + */ + resumeTargets(targetsToResume : any[]) : void; + /** !#en Pause a set of targets. + !#zh 暂停一组指定对象。 + */ + pauseTargets(targetsToPause : any[]) : void; + /** !#en + purges the shared action manager. It releases the retained instance.
+ because it uses this, so it can not be static. + !#zh + 清除共用的动作管理器。它释放了持有的实例。
+ 因为它使用 this,因此它不能是静态的。 + */ + purgeSharedManager() : void; + /** !#en The ActionManager update。 + !#zh ActionManager 主循环。 + @param dt delta time in seconds + */ + update(dt : number) : void; + } + /** !#en +

+ ATTENTION: USE cc.director INSTEAD OF cc.Director.
+ cc.director is a singleton object which manage your game's logic flow.
+ Since the cc.director is a singleton, you don't need to call any constructor or create functions,
+ the standard way to use it is by calling:
+ - cc.director.methodName();
+ + It creates and handle the main Window and manages how and when to execute the Scenes.
+
+ The cc.director is also responsible for:
+ - initializing the OpenGL context
+ - setting the OpenGL pixel format (default on is RGB565)
+ - setting the OpenGL buffer depth (default on is 0-bit)
+ - setting the color for clear screen (default one is BLACK)
+ - setting the projection (default one is 3D)
+ - setting the orientation (default one is Portrait)
+
+
+ The cc.director also sets the default OpenGL context:
+ - GL_TEXTURE_2D is enabled
+ - GL_VERTEX_ARRAY is enabled
+ - GL_COLOR_ARRAY is enabled
+ - GL_TEXTURE_COORD_ARRAY is enabled
+

+

+ cc.director also synchronizes timers with the refresh rate of the display.
+ Features and Limitations:
+ - Scheduled timers & drawing are synchronizes with the refresh rate of the display
+ - Only supports animation intervals of 1/60 1/30 & 1/15
+

+ + !#zh +

+ 注意:用 cc.director 代替 cc.Director。
+ cc.director 一个管理你的游戏的逻辑流程的单例对象。
+ 由于 cc.director 是一个单例,你不需要调用任何构造函数或创建函数,
+ 使用它的标准方法是通过调用:
+ - cc.director.methodName(); +
+ 它创建和处理主窗口并且管理什么时候执行场景。
+
+ cc.director 还负责:
+ - 初始化 OpenGL 环境。
+ - 设置OpenGL像素格式。(默认是 RGB565)
+ - 设置OpenGL缓冲区深度 (默认是 0-bit)
+ - 设置空白场景的颜色 (默认是 黑色)
+ - 设置投影 (默认是 3D)
+ - 设置方向 (默认是 Portrait)
+
+ cc.director 设置了 OpenGL 默认环境
+ - GL_TEXTURE_2D 启用。
+ - GL_VERTEX_ARRAY 启用。
+ - GL_COLOR_ARRAY 启用。
+ - GL_TEXTURE_COORD_ARRAY 启用。
+

+

+ cc.director 也同步定时器与显示器的刷新速率。 +
+ 特点和局限性:
+ - 将计时器 & 渲染与显示器的刷新频率同步。
+ - 只支持动画的间隔 1/60 1/30 & 1/15。
+

*/ + export class Director { + /** !#en + Converts an OpenGL coordinate to a view coordinate
+ Useful to convert node points to window points for calls such as glScissor
+ Implementation can be found in CCDirectorWebGL. + !#zh 将触摸点的 WebGL View 坐标转换为屏幕坐标。 + */ + convertToUI(glPoint : Vec2) : Vec2; + /** !#en + Returns the size of the WebGL view in points.
+ It takes into account any possible rotation (device orientation) of the window. + !#zh 获取视图的大小,以点为单位。 + */ + getWinSize() : Size; + /** !#en + Returns the size of the OpenGL view in pixels.
+ It takes into account any possible rotation (device orientation) of the window.
+ On Mac winSize and winSizeInPixels return the same value. + !#zh 获取视图大小,以像素为单位。 + */ + getWinSizeInPixels() : Size; + /** !#en Returns the visible size of the running scene. + !#zh 获取运行场景的可见大小。 + */ + getVisibleSize() : Size; + /** !#en Returns the visible origin of the running scene. + !#zh 获取视图在游戏内容中的坐标原点。 + */ + getVisibleOrigin() : Vec2; + /** !#en Pause the director's ticker. + !#zh 暂停正在运行的场景,该暂停只会停止 Scheduler,但是不会停止渲染和 UI 响应。 + */ + pause() : void; + /** !#en + Run a scene. Replaces the running scene with a new one or enter the first scene.
+ The new scene will be launched immediately. + !#zh 立刻切换指定场景。 + @param scene The need run scene. + @param onBeforeLoadScene The function invoked at the scene before loading. + @param onLaunched The function invoked at the scene after launch. + */ + runSceneImmediate(scene : Scene, onBeforeLoadScene? : Function, onLaunched? : Function) : void; + /** !#en + Run a scene. Replaces the running scene with a new one or enter the first scene. + The new scene will be launched at the end of the current frame. + !#zh 运行指定场景。 + @param scene The need run scene. + @param onBeforeLoadScene The function invoked at the scene before loading. + @param onLaunched The function invoked at the scene after launch. + */ + runScene(scene : Scene, onBeforeLoadScene? : Function, onLaunched? : Function) : void; + /** !#en Loads the scene by its name. + !#zh 通过场景名称进行加载场景。 + @param sceneName The name of the scene to load. + @param onLaunched callback, will be called after scene launched. + */ + loadScene(sceneName : string, onLaunched? : Function) : boolean; + /** !#en + Preloads the scene to reduces loading time. You can call this method at any time you want. + After calling this method, you still need to launch the scene by `cc.director.loadScene`. + It will be totally fine to call `cc.director.loadScene` at any time even if the preloading is not + yet finished, the scene will be launched after loaded automatically. + !#zh 预加载场景,你可以在任何时候调用这个方法。 + 调用完后,你仍然需要通过 `cc.director.loadScene` 来启动场景,因为这个方法不会执行场景加载操作。 + 就算预加载还没完成,你也可以直接调用 `cc.director.loadScene`,加载完成后场景就会启动。 + @param sceneName The name of the scene to preload. + @param onLoaded callback, will be called after scene loaded. + */ + preloadScene(sceneName : string, onLoaded: (error: Error) => void) : void; + /** !#en Resume director after pause, if the current scene is not paused, nothing will happen. + !#zh 恢复暂停场景,恢复 Scheduler,如果当前场景没有暂停将没任何事情发生。 + */ + resume() : void; + /** !#en + Enables or disables WebGL depth test.
+ Implementation can be found in CCDirectorCanvas.js/CCDirectorWebGL.js + !#zh 启用/禁用深度测试(在 Canvas 渲染模式下不会生效)。 + */ + setDepthTest(on : boolean) : void; + /** !#en + set color for clear screen.
+ Implementation can be found in CCDirectorCanvas.js/CCDirectorWebGL.js + !#zh 设置场景的默认擦除颜色(支持白色全透明,但不支持透明度为中间值)。 + */ + setClearColor(clearColor : Color) : void; + /** !#en + Sets an OpenGL projection.
+ Implementation can be found in CCDirectorCanvas.js/CCDirectorWebGL.js. + !#zh 设置 OpenGL 投影。 + */ + setProjection(projection : number) : void; + /** !#en + Update the view port.
+ Implementation can be found in CCDirectorCanvas.js/CCDirectorWebGL.js. + !#zh 设置视窗(请不要主动调用这个接口,除非你知道你在做什么)。 + */ + setViewport() : void; + /** !#en + Sets an OpenGL projection.
+ Implementation can be found in CCDirectorCanvas.js/CCDirectorWebGL.js. + !#zh 获取 OpenGL 投影。 + */ + getProjection() : number; + /** !#en + Enables/disables OpenGL alpha blending.
+ Implementation can be found in CCDirectorCanvas.js/CCDirectorWebGL.js. + !#zh 启用/禁用 透明度融合。 + */ + setAlphaBlending(on : boolean) : void; + /** !#en + Returns whether or not the replaced scene will receive the cleanup message.
+ If the new scene is pushed, then the old scene won't receive the "cleanup" message.
+ If the new scene replaces the old one, the it will receive the "cleanup" message. + !#zh + 更换场景时是否接收清理消息。
+ 如果新场景是采用 push 方式进入的,那么旧的场景将不会接收到 “cleanup” 消息。
+ 如果新场景取代旧的场景,它将会接收到 “cleanup” 消息。
+ */ + isSendCleanupToScene() : boolean; + /** !#en Returns current logic Scene. + !#zh 获取当前逻辑场景。 + + @example + ```js + // This will help you to get the Canvas node in scene + cc.director.getScene().getChildByName('Canvas'); + ``` + */ + getScene() : Scene; + /** !#en Returns the FPS value. + !#zh 获取单位帧执行时间。 + */ + getAnimationInterval() : number; + /** !#en Returns whether or not to display the FPS informations. + !#zh 获取是否显示 FPS 信息。 + */ + isDisplayStats() : boolean; + /** !#en Sets whether display the FPS on the bottom-left corner. + !#zh 设置是否在左下角显示 FPS。 + */ + setDisplayStats(displayStats : boolean) : void; + /** !#en Returns seconds per frame. + !#zh 获取实际记录的上一帧执行时间,可能与单位帧执行时间(AnimationInterval)有出入。 + */ + getSecondsPerFrame() : number; + /** !#en Returns whether next delta time equals to zero. + !#zh 返回下一个 “delta time” 是否等于零。 + */ + isNextDeltaTimeZero() : boolean; + /** !#en Returns whether or not the Director is paused. + !#zh 是否处于暂停状态。 + */ + isPaused() : boolean; + /** !#en Returns how many frames were called since the director started. + !#zh 获取 director 启动以来游戏运行的总帧数。 + */ + getTotalFrames() : number; + /** !#en Returns the cc.Scheduler associated with this director. + !#zh 获取和 director 相关联的 cc.Scheduler。 + */ + getScheduler() : Scheduler; + /** !#en Sets the cc.Scheduler associated with this director. + !#zh 设置和 director 相关联的 cc.Scheduler。 + */ + setScheduler(scheduler : Scheduler) : void; + /** !#en Returns the cc.ActionManager associated with this director. + !#zh 获取和 director 相关联的 cc.ActionManager(动作管理器)。 + */ + getActionManager() : ActionManager; + /** !#en Sets the cc.ActionManager associated with this director. + !#zh 设置和 director 相关联的 cc.ActionManager(动作管理器)。 + */ + setActionManager(actionManager : ActionManager) : void; + /** Returns the cc.CollisionManager associated with this director. + */ + getCollisionManager() : CollisionManager; + /** !#en Returns the delta time since last frame. + !#zh 获取上一帧的 “delta time”。 + */ + getDeltaTime() : number; + } + /** !#en cc.game is the singleton object for game related functions. + !#zh cc.game 是 Game 的实例,用来驱动整个游戏。 */ + export class Game { + /** !#en The outer frame of the game canvas, parent of cc.container. + !#zh 游戏画布的外框,cc.container 的父类。 */ + frame : any; + /** !#en The container of game canvas, equals to cc.container. + !#zh 游戏画布的容器。 */ + container : any; + /** !#en The canvas of the game, equals to cc._canvas. + !#zh 游戏的画布。 */ + canvas : any; + /** !#en + The current game configuration, including:
+ 1. debugMode
+ "debugMode" possible values :
+ 0 - No message will be printed.
+ 1 - cc.error, cc.assert, cc.warn, cc.log will print in console.
+ 2 - cc.error, cc.assert, cc.warn will print in console.
+ 3 - cc.error, cc.assert will print in console.
+ 4 - cc.error, cc.assert, cc.warn, cc.log will print on canvas, available only on web.
+ 5 - cc.error, cc.assert, cc.warn will print on canvas, available only on web.
+ 6 - cc.error, cc.assert will print on canvas, available only on web.
+ 2. showFPS
+ Left bottom corner fps information will show when "showFPS" equals true, otherwise it will be hide.
+ 3. frameRate
+ "frameRate" set the wanted frame rate for your game, but the real fps depends on your game implementation and the running environment.
+ 4. id
+ "gameCanvas" sets the id of your canvas element on the web page, it's useful only on web.
+ 5. renderMode
+ "renderMode" sets the renderer type, only useful on web :
+ 0 - Automatically chosen by engine
+ 1 - Forced to use canvas renderer
+ 2 - Forced to use WebGL renderer, but this will be ignored on mobile browsers
+ 6. scenes
+ "scenes" include available scenes in the current bundle.
+
+ Please DO NOT modify this object directly, it won't have any effect.
+ !#zh + 当前的游戏配置,包括:
+ 1. debugMode(debug 模式,但是在浏览器中这个选项会被忽略)
+ "debugMode" 各种设置选项的意义。
+ 0 - 没有消息被打印出来。
+ 1 - cc.error,cc.assert,cc.warn,cc.log 将打印在 console 中。
+ 2 - cc.error,cc.assert,cc.warn 将打印在 console 中。
+ 3 - cc.error,cc.assert 将打印在 console 中。
+ 4 - cc.error,cc.assert,cc.warn,cc.log 将打印在 canvas 中(仅适用于 web 端)。
+ 5 - cc.error,cc.assert,cc.warn 将打印在 canvas 中(仅适用于 web 端)。
+ 6 - cc.error,cc.assert 将打印在 canvas 中(仅适用于 web 端)。
+ 2. showFPS(显示 FPS)
+ 当 showFPS 为 true 的时候界面的左下角将显示 fps 的信息,否则被隐藏。
+ 3. frameRate (帧率)
+ “frameRate” 设置想要的帧率你的游戏,但真正的FPS取决于你的游戏实现和运行环境。
+ 4. id
+ "gameCanvas" Web 页面上的 Canvas Element ID,仅适用于 web 端。
+ 5. renderMode(渲染模式)
+ “renderMode” 设置渲染器类型,仅适用于 web 端:
+ 0 - 通过引擎自动选择。
+ 1 - 强制使用 canvas 渲染。 + 2 - 强制使用 WebGL 渲染,但是在部分 Android 浏览器中这个选项会被忽略。
+ 6. scenes
+ “scenes” 当前包中可用场景。
+
+ 注意:请不要直接修改这个对象,它不会有任何效果。 */ + config : any; + /** !#en Callback when the scripts of engine have been load. + !#zh 当引擎完成启动后的回调函数。 + */ + onStart() : void; + /** !#en Callback when game exits. + !#zh 当游戏结束后的回调函数。 + */ + onStop() : void; + /** !#en Set frameRate of game. + !#zh 设置游戏帧率。 + */ + setFrameRate(frameRate : number) : void; + /** !#en Run the game frame by frame. + !#zh 执行一帧游戏循环。 + */ + step() : void; + /** !#en Pause the game,pause main loop. + !#zh 暂停游戏,暂停的是整个主循环。 + */ + pause() : void; + /** !#en Resume the game from pause. + !#zh 继续游戏,继续的是整个主循环。 + */ + resume() : void; + /** !#en Check whether the game is paused. + !#zh 判断游戏是否暂停。 + */ + isPaused() : boolean; + /** !#en Restart game. + !#zh 重新开始游戏 + */ + restart() : void; + /** !#en Prepare game. + !#zh 准备引擎,请不要直接调用这个函数。 + */ + prepare(cb : Function) : void; + /** !#en Run game with configuration object and onStart function. + !#zh 运行游戏,并且指定引擎配置和 onStart 的回调。 + @param config Pass configuration object or onStart function + @param onStart function to be executed after game initialized + */ + run(config? : any|Function, onStart? : Function) : void; + /** !#en + Add a persistent root node to the game, the persistent node won't be destroyed during scene transition.
+ The target node must be placed in the root level of hierarchy, otherwise this API won't have any effect. + !#zh + 声明常驻根节点,该节点不会被在场景切换中被销毁。
+ 目标节点必须位于为层级的根节点,否则无效。 + @param node The node to be made persistent + */ + addPersistRootNode(node : Node) : void; + /** !#en Remove a persistent root node. + !#zh 取消常驻根节点。 + @param node The node to be removed from persistent node list + */ + removePersistRootNode(node : Node) : void; + /** !#en Check whether the node is a persistent root node. + !#zh 检查节点是否是常驻根节点。 + @param node The node to be checked + */ + isPersistRootNode(node : Node) : boolean; + } + /** !#en + Class of all entities in Cocos Creator scenes.
+ Node also inherits from {{#crossLink "EventTarget"}}Event Target{{/crossLink}}, it permits Node to dispatch events. + For events supported by Node, please refer to {{#crossLink "Node.EventType"}}{{/crossLink}} + !#zh + Cocos Creator 场景中的所有节点类。节点也继承了 {{#crossLink "EventTarget"}}EventTarget{{/crossLink}},它允许节点发送事件。
+ 支持的节点事件,请参阅 {{#crossLink "Node.EventType"}}{{/crossLink}}。 */ + export class Node extends _BaseNode { + /** !#en + The local active state of this node.
+ Note that a Node may be inactive because a parent is not active, even if this returns true.
+ Use {{#crossLink "Node/activeInHierarchy:property"}}{{/crossLink}} if you want to check if the Node is actually treated as active in the scene. + !#zh + 当前节点的自身激活状态。
+ 值得注意的是,一个节点的父节点如果不被激活,那么即使它自身设为激活,它仍然无法激活。
+ 如果你想检查节点在场景中实际的激活状态可以使用 {{#crossLink "Node/activeInHierarchy:property"}}{{/crossLink}}。 */ + active : boolean; + /** !#en Indicates whether this node is active in the scene. + !#zh 表示此节点是否在场景中激活。 */ + activeInHierarchy : boolean; + /** !#en + Group index of node.
+ Which Group this node belongs to will resolve that this node's collision components can collide with which other collision componentns.
+ !#zh + 节点的分组索引。
+ 节点的分组将关系到节点的碰撞组件可以与哪些碰撞组件相碰撞。
*/ + groupIndex : Integer; + /** !#en + Group of node.
+ Which Group this node belongs to will resolve that this node's collision components can collide with which other collision componentns.
+ !#zh + 节点的分组。
+ 节点的分组将关系到节点的碰撞组件可以与哪些碰撞组件相碰撞。
*/ + group : string; + /** !#en + Returns the component of supplied type if the node has one attached, null if it doesn't.
+ You can also get component in the node by passing in the name of the script. + !#zh + 获取节点上指定类型的组件,如果节点有附加指定类型的组件,则返回,如果没有则为空。
+ 传入参数也可以是脚本的名称。 + + @example + ```js + // get sprite component. + var sprite = node.getComponent(cc.Sprite); + // get custom test calss. + var test = node.getComponent("Test"); + ``` + */ + getComponent(typeOrClassName : Function|string) : Component; + /** !#en Returns all components of supplied type in the node. + !#zh 返回节点上指定类型的所有组件。 + + @example + ```js + var sprites = node.getComponents(cc.Sprite); + var tests = node.getComponents("Test"); + ``` + */ + getComponents(typeOrClassName : Function|string) : Component[]; + /** !#en Returns the component of supplied type in any of its children using depth first search. + !#zh 递归查找所有子节点中第一个匹配指定类型的组件。 + + @example + ```js + var sprite = node.getComponentInChildren(cc.Sprite); + var Test = node.getComponentInChildren("Test"); + ``` + */ + getComponentInChildren(typeOrClassName : Function|string) : Component; + /** !#en Returns all components of supplied type in any of its children. + !#zh 递归查找所有子节点中指定类型的组件。 + + @example + ```js + var sprites = node.getComponentsInChildren(cc.Sprite); + var tests = node.getComponentsInChildren("Test"); + ``` + */ + getComponentsInChildren(typeOrClassName : Function|string) : Component[]; + /** !#en Adds a component class to the node. You can also add component to node by passing in the name of the script. + !#zh 向节点添加一个指定类型的组件类,你还可以通过传入脚本的名称来添加组件。 + @param typeOrClassName The constructor or the class name of the component to add + + @example + ```js + var sprite = node.addComponent(cc.Sprite); + var test = node.addComponent("Test"); + ``` + */ + addComponent(typeOrClassName : Function|string) : Component; + /** !#en + Removes a component identified by the given name or removes the component object given. + You can also use component.destroy() if you already have the reference. + !#zh + 删除节点上的指定组件,传入参数可以是一个组件构造函数或组件名,也可以是已经获得的组件引用。 + 如果你已经获得组件引用,你也可以直接调用 component.destroy() + @param component The need remove component. + + @example + ```js + node.removeComponent(cc.Sprite); + var Test = require("Test"); + node.removeComponent(Test); + ``` + */ + removeComponent(component : string|Function|Component) : void; + /** !#en + Register a callback of a specific event type on Node.
+ Use this method to register touch or mouse event permit propagation based on scene graph, + you can propagate the event to the parents or swallow it by calling stopPropagation on the event.
+ It's the recommended way to register touch/mouse event for Node, + please do not use cc.eventManager directly for Node. + !#zh + 在节点上注册指定类型的回调函数,也可以设置 target 用于绑定响应函数的调用者。
+ 同时您可以将事件派发到父节点或者通过调用 stopPropagation 拦截它。
+ 推荐使用这种方式来监听节点上的触摸或鼠标事件,请不要在节点上直接使用 cc.eventManager。 + @param type A string representing the event type to listen for. + @param callback The callback that will be invoked when the event is dispatched. + The callback is ignored if it is a duplicate (the callbacks are unique). + @param target The target to invoke the callback, can be null + @param useCapture When set to true, the capture argument prevents callback + from being invoked when the event's eventPhase attribute value is BUBBLING_PHASE. + When false, callback will NOT be invoked when event's eventPhase attribute value is CAPTURING_PHASE. + Either way, callback will be invoked when event's eventPhase attribute value is AT_TARGET. + + @example + ```js + // add Node Touch Event + node.on(cc.Node.EventType.TOUCH_START, callback, this.node); + node.on(cc.Node.EventType.TOUCH_MOVE, callback, this.node); + node.on(cc.Node.EventType.TOUCH_END, callback, this.node); + node.on(cc.Node.EventType.TOUCH_CANCEL, callback, this.node); + ``` + */ + on(type : string, callback: (param: Event) => void, target? : any, useCapture : boolean) : Function; + /** !#en + Removes the callback previously registered with the same type, callback, target and or useCapture. + This method is merely an alias to removeEventListener. + !#zh 删除之前与同类型,回调,目标或 useCapture 注册的回调。 + @param type A string representing the event type being removed. + @param callback The callback to remove. + @param target The target to invoke the callback, if it's not given, only callback without target will be removed + @param useCapture Specifies whether the callback being removed was registered as a capturing callback or not. + If not specified, useCapture defaults to false. If a callback was registered twice, + one with capture and one without, each must be removed separately. Removal of a capturing callback + does not affect a non-capturing version of the same listener, and vice versa. + + @example + ```js + // remove Node TOUCH_START Event. + node.on(cc.Node.EventType.TOUCH_START, callback, this.node); + node.off(cc.Node.EventType.TOUCH_START, callback, this.node); + ``` + */ + off(type : string, callback : Function, target? : any, useCapture : boolean) : void; + /** !#en Removes all callbacks previously registered with the same target. + !#zh 移除目标上的所有注册事件。 + @param target The target to be searched for all related callbacks + + @example + ```js + node.targetOff(target); + ``` + */ + targetOff(target : any) : void; + /** !#en + Executes an action, and returns the action that is executed.
+ The node becomes the action's target. Refer to cc.Action's getTarget()
+ Calling runAction while the node is not active won't have any effect. + !#zh + 执行并返回该执行的动作。该节点将会变成动作的目标。
+ 调用 runAction 时,节点自身处于不激活状态将不会有任何效果。 + + @example + ```js + var action = cc.scaleTo(0.2, 1, 0.6); + node.runAction(action); + ``` + */ + runAction(action : Action) : Action; + /** !#en Stops and removes all actions from the running action list . + !#zh 停止并且移除所有正在运行的动作列表。 + + @example + ```js + node.stopAllActions(); + ``` + */ + stopAllActions() : void; + /** !#en Stops and removes an action from the running action list. + !#zh 停止并移除指定的动作。 + @param action An action object to be removed. + + @example + ```js + var action = cc.scaleTo(0.2, 1, 0.6); + node.stopAction(action); + ``` + */ + stopAction(action : Action) : void; + /** !#en Removes an action from the running action list by its tag. + !#zh 停止并且移除指定标签的动作。 + @param tag A tag that indicates the action to be removed. + + @example + ```js + node.stopAction(1); + ``` + */ + stopActionByTag(tag : number) : void; + /** !#en Returns an action from the running action list by its tag. + !#zh 通过标签获取指定动作。 + + @example + ```js + var action = node.getActionByTag(1); + ``` + */ + getActionByTag(tag : number) : Action; + /** !#en + Returns the numbers of actions that are running plus the ones that are schedule to run (actions in actionsToAdd and actions arrays).
+ Composable actions are counted as 1 action. Example:
+ If you are running 1 Sequence of 7 actions, it will return 1.
+ If you are running 7 Sequences of 2 actions, it will return 7.

+ !#zh + 获取运行着的动作加上正在调度运行的动作的总数。
+ 例如:
+ - 如果你正在运行 7 个动作中的 1 个 Sequence,它将返回 1。
+ - 如果你正在运行 2 个动作中的 7 个 Sequence,它将返回 7。
+ + @example + ```js + var count = node.getNumberOfRunningActions(); + cc.log("Running Action Count: " + count); + ``` + */ + getNumberOfRunningActions() : number; + } + /** !#en + cc.Scene is a subclass of cc.Node that is used only as an abstract concept.
+ cc.Scene and cc.Node are almost identical with the difference that users can not modify cc.Scene manually. + !#zh + cc.Scene 是 cc.Node 的子类,仅作为一个抽象的概念。
+ cc.Scene 和 cc.Node 有点不同,用户不应直接修改 cc.Scene。 */ + export class Scene extends _BaseNode { + } + /** !#en + Scheduler is responsible of triggering the scheduled callbacks.
+ You should not use NSTimer. Instead use this class.
+
+ There are 2 different types of callbacks (selectors):
+ - update callback: the 'update' callback will be called every frame. You can customize the priority.
+ - custom callback: A custom callback will be called every frame, or with a custom interval of time
+
+ The 'custom selectors' should be avoided when possible. It is faster, + and consumes less memory to use the 'update callback'. * + !#zh + Scheduler 是负责触发回调函数的类。
+ 通常情况下,建议使用 cc.director.getScheduler() 来获取系统定时器。
+ 有两种不同类型的定时器:
+ - update 定时器:每一帧都会触发。您可以自定义优先级。
+ - 自定义定时器:自定义定时器可以每一帧或者自定义的时间间隔触发。
+ 如果希望每帧都触发,应该使用 update 定时器,使用 update 定时器更快,而且消耗更少的内存。 */ + export class Scheduler { + /** !#en + Modifies the time of all scheduled callbacks.
+ You can use this property to create a 'slow motion' or 'fast forward' effect.
+ Default is 1.0. To create a 'slow motion' effect, use values below 1.0.
+ To create a 'fast forward' effect, use values higher than 1.0.
+ Note:It will affect EVERY scheduled selector / action. + !#zh + 设置时间间隔的缩放比例。
+ 您可以使用这个方法来创建一个 “slow motion(慢动作)” 或 “fast forward(快进)” 的效果。
+ 默认是 1.0。要创建一个 “slow motion(慢动作)” 效果,使用值低于 1.0。
+ 要使用 “fast forward(快进)” 效果,使用值大于 1.0。
+ 注意:它影响该 Scheduler 下管理的所有定时器。 + */ + setTimeScale(timeScale : number) : void; + /** !#en Returns time scale of scheduler. + !#zh 获取时间间隔的缩放比例。 + */ + getTimeScale() : number; + /** !#en 'update' the scheduler. (You should NEVER call this method, unless you know what you are doing.) + !#zh update 调度函数。(不应该直接调用这个方法,除非完全了解这么做的结果) + @param dt delta time + */ + update(dt : number) : void; + /** !#en +

+ The scheduled method will be called every 'interval' seconds.
+ If paused is YES, then it won't be called until it is resumed.
+ If 'interval' is 0, it will be called every frame, but if so, it recommended to use 'scheduleUpdateForTarget:' instead.
+ If the callback function is already scheduled, then only the interval parameter will be updated without re-scheduling it again.
+ repeat let the action be repeated repeat + 1 times, use cc.macro.REPEAT_FOREVER to let the action run continuously
+ delay is the amount of time the action will wait before it'll start
+

+ !#zh + 指定回调函数,调用对象等信息来添加一个新的定时器。
+ 当时间间隔达到指定值时,设置的回调函数将会被调用。
+ 如果 paused 值为 true,那么直到 resume 被调用才开始计时。
+ 如果 interval 值为 0,那么回调函数每一帧都会被调用,但如果是这样, + 建议使用 scheduleUpdateForTarget 代替。
+ 如果回调函数已经被定时器使用,那么只会更新之前定时器的时间间隔参数,不会设置新的定时器。
+ repeat 值可以让定时器触发 repeat + 1 次,使用 cc.macro.REPEAT_FOREVER + 可以让定时器一直循环触发。
+ delay 值指定延迟时间,定时器会在延迟指定的时间之后开始计时。 + + @example + ```js + //register a schedule to scheduler + var scheduler = cc.director.getScheduler(); + scheduler.scheduleCallbackForTarget(this, function, interval, repeat, delay, !this._isRunning); + + ``` + */ + scheduleCallbackForTarget(target : any, callback_fn : Function, interval : number, repeat : number, delay : number, paused : boolean) : void; + /** !#en The schedule + !#zh 定时器 + + @example + ```js + //register a schedule to scheduler + cc.director.getScheduler().schedule(callback, this, interval, !this._isRunning); + + ``` + */ + schedule(callback : Function, target : any, interval : number, repeat : number, delay : number, paused : boolean) : void; + /** !#en + Schedules the update callback for a given target, + the callback will be invoked every frame after schedule started. + !#zh + 使用指定的优先级为指定的对象设置 update 定时器。 + update 定时器每一帧都会被触发。优先级的值越低,定时器被触发的越早。 + */ + scheduleUpdate(target : any, priority : number, paused : boolean, updateFunc : Function) : void; + /** !#en + Unschedules a callback for a callback and a given target. + If you want to unschedule the "update", use `unscheduleUpdate()` + !#zh + 根据指定的回调函数和调用对象。 + 如果需要取消 update 定时器,请使用 unscheduleUpdate()。 + @param callback The callback to be unscheduled + @param target The target bound to the callback. + */ + unschedule(callback : Function, target : any) : void; + /** !#en Unschedules the update callback for a given target. + !#zh 取消指定对象的 update 定时器。 + @param target The target to be unscheduled. + */ + unscheduleUpdate(target : any) : void; + /** !#en + Unschedules all scheduled callbacks for a given target. + This also includes the "update" callback. + !#zh 取消指定对象的所有定时器,包括 update 定时器。 + @param target The target to be unscheduled. + */ + unscheduleAllForTarget(target : any) : void; + /** !#en + Unschedules all scheduled callbacks from all targets including the system callbacks.
+ You should NEVER call this method, unless you know what you are doing. + !#zh + 取消所有对象的所有定时器,包括系统定时器。
+ 不用调用此函数,除非你确定你在做什么。 + */ + unscheduleAll() : void; + /** !#en + Unschedules all callbacks from all targets with a minimum priority.
+ You should only call this with `PRIORITY_NON_SYSTEM_MIN` or higher. + !#zh + 取消所有优先级的值大于指定优先级的定时器。
+ 你应该只取消优先级的值大于 PRIORITY_NON_SYSTEM_MIN 的定时器。 + @param minPriority The minimum priority of selector to be unscheduled. Which means, all selectors which + priority is higher than minPriority will be unscheduled. + */ + unscheduleAllWithMinPriority(minPriority : number) : void; + /** !#en Checks whether a callback for a given target is scheduled. + !#zh 检查指定的回调函数和回调对象组合是否存在定时器。 + @param callback The callback to check. + @param target The target of the callback. + */ + isScheduled(callback : Function, target : any) : boolean; + /** !#en + Pause all selectors from all targets.
+ You should NEVER call this method, unless you know what you are doing. + !#zh + 暂停所有对象的所有定时器。
+ 不要调用这个方法,除非你知道你正在做什么。 + */ + pauseAllTargets() : void; + /** !#en + Pause all selectors from all targets with a minimum priority.
+ You should only call this with kCCPriorityNonSystemMin or higher. + !#zh + 暂停所有优先级的值大于指定优先级的定时器。
+ 你应该只暂停优先级的值大于 PRIORITY_NON_SYSTEM_MIN 的定时器。 + */ + pauseAllTargetsWithMinPriority(minPriority : number) : void; + /** !#en + Resume selectors on a set of targets.
+ This can be useful for undoing a call to pauseAllCallbacks. + !#zh + 恢复指定数组中所有对象的定时器。
+ 这个函数是 pauseAllCallbacks 的逆操作。 + */ + resumeTargets(targetsToResume : any[]) : void; + /** !#en + Pauses the target.
+ All scheduled selectors/update for a given target won't be 'ticked' until the target is resumed.
+ If the target is not present, nothing happens. + !#zh + 暂停指定对象的定时器。
+ 指定对象的所有定时器都会被暂停。
+ 如果指定的对象没有定时器,什么也不会发生。 + */ + pauseTarget(target : any) : void; + /** !#en + Resumes the target.
+ The 'target' will be unpaused, so all schedule selectors/update will be 'ticked' again.
+ If the target is not present, nothing happens. + !#zh + 恢复指定对象的所有定时器。
+ 指定对象的所有定时器将继续工作。
+ 如果指定的对象没有定时器,什么也不会发生。 + */ + resumeTarget(target : any) : void; + /** !#en Returns whether or not the target is paused. + !#zh 返回指定对象的定时器是否暂停了。 + */ + isTargetPaused(target : any) : boolean; + /** !#en + Schedules the 'update' callback_fn for a given target with a given priority.
+ The 'update' callback_fn will be called every frame.
+ The lower the priority, the earlier it is called. + !#zh + 为指定对象设置 update 定时器。
+ update 定时器每一帧都会被调用。
+ 优先级的值越低,越早被调用。 + + @example + ```js + //register this object to scheduler + var scheduler = cc.director.getScheduler(); + scheduler.scheduleUpdateForTarget(this, priority, !this._isRunning ); + + ``` + */ + scheduleUpdateForTarget(target : any, priority : number, paused : boolean) : void; + /** !#en + Unschedule a callback function for a given target.
+ If you want to unschedule the "update", use unscheduleUpdateForTarget. + !#zh + 根据指定的回调函数和调用对象对象取消相应的定时器。
+ 如果需要取消 update 定时器,请使用 unscheduleUpdateForTarget()。 + @param callback callback[Function] or key[String] + + @example + ```js + //unschedule a callback of target + var scheduler = cc.director.getScheduler(); + scheduler.unscheduleCallbackForTarget(this, callback); + + ``` + */ + unscheduleCallbackForTarget(target : any, callback : Function) : void; + /** !#en Unschedules the update callback function for a given target. + !#zh 取消指定对象的所有定时器。 + + @example + ```js + //unschedules the "update" method. + var scheduler = cc.director.getScheduler(); + scheduler.unscheduleUpdateForTarget(this); + + ``` + */ + unscheduleUpdateForTarget(target : any) : void; + /** !#en + Unschedules all function callbacks for a given target.
+ This also includes the "update" callback function. + !#zh 取消指定对象的所有定时器,包括 update 定时器。 + */ + unscheduleAllCallbacksForTarget(target : any) : void; + /** !#en + Unschedules all function callbacks from all targets.
+ You should NEVER call this method, unless you know what you are doing. + !#zh + 取消所有对象的所有定时器。
+ 不要调用这个方法,除非你知道你正在做什么。 + */ + unscheduleAllCallbacks() : void; + /** !#en + Unschedules all function callbacks from all targets with a minimum priority.
+ You should only call this with kCCPriorityNonSystemMin or higher. + !#zh + 取消所有优先级的值大于指定优先级的所有对象的所有定时器。
+ 你应该只暂停优先级的值大于 PRIORITY_NON_SYSTEM_MIN 的定时器。 + */ + unscheduleAllCallbacksWithMinPriority(minPriority : number) : void; + /** !#en Priority level reserved for system services. + !#zh 系统服务的优先级。 */ + PRIORITY_SYSTEM : number; + /** !#en Minimum priority level for user scheduling. + !#zh 用户调度最低优先级。 */ + PRIORITY_NON_SYSTEM : number; + } + /** !#en + cc.MotionStreak manages a Ribbon based on it's motion in absolute space.
+ You construct it with a fadeTime, minimum segment size, texture path, texture
+ length and color. The fadeTime controls how long it takes each vertex in
+ the streak to fade out, the minimum segment size it how many pixels the
+ streak will move before adding a new ribbon segment, and the texture
+ length is the how many pixels the texture is stretched across. The texture
+ is vertically aligned along the streak segment. + !#zh 运动轨迹,用于游戏对象的运动轨迹上实现拖尾渐隐效果。 */ + export class MotionStreak extends Component { + /** !#en + !#zh 在编辑器模式下预览拖尾效果。 */ + preview : boolean; + /** !#en The fade time to fade. + !#zh 拖尾的渐隐时间,以秒为单位。 */ + fadeTime : number; + /** !#en The minimum segment size. + !#zh 拖尾之间最小距离。 */ + minSeg : number; + /** !#en The stroke's width. + !#zh 拖尾的宽度。 */ + stroke : number; + /** !#en The texture of the MotionStreak. + !#zh 拖尾的贴图。 */ + texture : Texture2D; + /** !#en The color of the MotionStreak. + !#zh 拖尾的颜色 */ + color : Color; + /** !#en The fast Mode. + !#zh 是否启用了快速模式。当启用快速模式,新的点会被更快地添加,但精度较低。 */ + fastMode : boolean; + /** !#en Remove all living segments of the ribbon. + !#zh 删除当前所有的拖尾片段。 + + @example + ```js + // stop particle system. + myParticleSystem.stopSystem(); + ``` + */ + reset() : void; + } + /** Particle System base class.
+ Attributes of a Particle System:
+ - emmision rate of the particles
+ - Gravity Mode (Mode A):
+ - gravity
+ - direction
+ - speed +- variance
+ - tangential acceleration +- variance
+ - radial acceleration +- variance
+ - Radius Mode (Mode B):
+ - startRadius +- variance
+ - endRadius +- variance
+ - rotate +- variance
+ - Properties common to all modes:
+ - life +- life variance
+ - start spin +- variance
+ - end spin +- variance
+ - start size +- variance
+ - end size +- variance
+ - start color +- variance
+ - end color +- variance
+ - life +- variance
+ - blending function
+ - texture
+
+ cocos2d also supports particles generated by Particle Designer (http://particledesigner.71squared.com/).
+ 'Radius Mode' in Particle Designer uses a fixed emit rate of 30 hz. Since that can't be guarateed in cocos2d,
+ cocos2d uses a another approach, but the results are almost identical.
+ cocos2d supports all the variables used by Particle Designer plus a bit more:
+ - spinning particles (supported when using ParticleSystem)
+ - tangential acceleration (Gravity mode)
+ - radial acceleration (Gravity mode)
+ - radius direction (Radius mode) (Particle Designer supports outwards to inwards direction only)
+ It is possible to customize any of the above mentioned properties in runtime. Example:
*/ + export class ParticleSystem extends cc._RendererUnderSG { + /** !#en Play particle in edit mode. + !#zh 在编辑器模式下预览粒子,启用后选中粒子时,粒子将自动播放。 */ + preview : boolean; + /** !#en + If set custom to true, then use custom properties insteadof read particle file. + !#zh 是否自定义粒子属性。 */ + custom : boolean; + /** !#en The plist file. + !#zh plist 格式的粒子配置文件。 */ + file : string; + /** . */ + texture : Texture2D; + /** !#en Current quantity of particles that are being simulated. + !#zh 当前播放的粒子数量。 */ + particleCount : number; + /** !#en Specify the source Blend Factor. + !#zh 指定原图混合模式。 */ + srcBlendFactor : BlendFactor; + /** !#en Specify the destination Blend Factor. + !#zh 指定目标的混合模式。 */ + dstBlendFactor : BlendFactor; + /** !#en If set to true, the particle system will automatically start playing on onLoad. + !#zh 如果设置为 true 运行时会自动发射粒子。 */ + playOnLoad : boolean; + /** !#en Indicate whether the owner node will be auto-removed when it has no particles left. + !#zh 粒子播放完毕后自动销毁所在的节点。 */ + autoRemoveOnFinish : boolean; + /** !#en Indicate whether the particle system is activated. + !#zh 是否激活粒子。 */ + active : boolean; + /** !#en Maximum particles of the system. + !#zh 粒子最大数量。 */ + totalParticles : number; + /** !#en How many seconds the emitter wil run. -1 means 'forever'. + !#zh 发射器生存时间,单位秒,-1表示持续发射。 */ + duration : number; + /** !#en Emission rate of the particles. + !#zh 每秒发射的粒子数目。 */ + emissionRate : number; + /** !#en Life of each particle setter. + !#zh 粒子的运行时间。 */ + life : number; + /** !#en Variation of life. + !#zh 粒子的运行时间变化范围。 */ + lifeVar : number; + /** !#en Start color of each particle. + !#zh 粒子初始颜色。 */ + startColor : Color; + /** !#en Variation of the start color. + !#zh 粒子初始颜色变化范围。 */ + startColorVar : Color; + /** !#en Ending color of each particle. + !#zh 粒子结束颜色。 */ + endColor : Color; + /** !#en Variation of the end color. + !#zh 粒子结束颜色变化范围。 */ + endColorVar : Color; + /** !#en Angle of each particle setter. + !#zh 粒子角度。 */ + angle : number; + /** !#en Variation of angle of each particle setter. + !#zh 粒子角度变化范围。 */ + angleVar : number; + /** !#en Start size in pixels of each particle. + !#zh 粒子的初始大小。 */ + startSize : number; + /** !#en Variation of start size in pixels. + !#zh 粒子初始大小的变化范围。 */ + startSizeVar : number; + /** !#en End size in pixels of each particle. + !#zh 粒子结束时的大小。 */ + endSize : number; + /** !#en Variation of end size in pixels. + !#zh 粒子结束大小的变化范围。 */ + endSizeVar : number; + /** !#en Start angle of each particle. + !#zh 粒子开始自旋角度。 */ + startSpin : number; + /** !#en Variation of start angle. + !#zh 粒子开始自旋角度变化范围。 */ + startSpinVar : number; + /** !#en End angle of each particle. + !#zh 粒子结束自旋角度。 */ + endSpin : number; + /** !#en Variation of end angle. + !#zh 粒子结束自旋角度变化范围。 */ + endSpinVar : number; + /** !#en Source position of the emitter. + !#zh 发射器位置。 */ + sourcePos : Vec2; + /** !#en Variation of source position. + !#zh 发射器位置的变化范围。(横向和纵向) */ + posVar : Vec2; + /** !#en Particles movement type. + !#zh 粒子位置类型。 */ + positionType : ParticleSystem.PositionType; + /** !#en Particles emitter modes. + !#zh 发射器类型。 */ + emitterMode : ParticleSystem.EmitterMode; + /** !#en Gravity of the emitter. + !#zh 重力。 */ + gravity : Vec2; + /** !#en Speed of the emitter. + !#zh 速度。 */ + speed : number; + /** !#en Variation of the speed. + !#zh 速度变化范围。 */ + speedVar : number; + /** !#en Tangential acceleration of each particle. Only available in 'Gravity' mode. + !#zh 每个粒子的切向加速度,即垂直于重力方向的加速度,只有在重力模式下可用。 */ + tangentialAccel : number; + /** !#en Variation of the tangential acceleration. + !#zh 每个粒子的切向加速度变化范围。 */ + tangentialAccelVar : number; + /** !#en Acceleration of each particle. Only available in 'Gravity' mode. + !#zh 粒子径向加速度,即平行于重力方向的加速度,只有在重力模式下可用。 */ + radialAccel : number; + /** !#en Variation of the radial acceleration. + !#zh 粒子径向加速度变化范围。 */ + radialAccelVar : number; + /** !#en Indicate whether the rotation of each particle equals to its direction. Only available in 'Gravity' mode. + !#zh 每个粒子的旋转是否等于其方向,只有在重力模式下可用。 */ + rotationIsDir : boolean; + /** !#en Starting radius of the particles. Only available in 'Radius' mode. + !#zh 初始半径,表示粒子出生时相对发射器的距离,只有在半径模式下可用。 */ + startRadius : number; + /** !#en Variation of the starting radius. + !#zh 初始半径变化范围。 */ + startRadiusVar : number; + /** !#en Ending radius of the particles. Only available in 'Radius' mode. + !#zh 结束半径,只有在半径模式下可用。 */ + endRadius : number; + /** !#en Variation of the ending radius. + !#zh 结束半径变化范围。 */ + endRadiusVar : number; + /** !#en Number of degress to rotate a particle around the source pos per second. Only available in 'Radius' mode. + !#zh 粒子每秒围绕起始点的旋转角度,只有在半径模式下可用。 */ + rotatePerS : number; + /** !#en Variation of the degress to rotate a particle around the source pos per second. + !#zh 粒子每秒围绕起始点的旋转角度变化范围。 */ + rotatePerSVar : number; + /** !#en The Particle emitter lives forever. + !#zh 表示发射器永久存在 */ + DURATION_INFINITY : number; + /** !#en The starting size of the particle is equal to the ending size. + !#zh 表示粒子的起始大小等于结束大小。 */ + START_SIZE_EQUAL_TO_END_SIZE : number; + /** !#en The starting radius of the particle is equal to the ending radius. + !#zh 表示粒子的起始半径等于结束半径。 */ + START_RADIUS_EQUAL_TO_END_RADIUS : number; + /** !#en Add a particle to the emitter. + !#zh 添加一个粒子到发射器中。 + */ + addParticle() : boolean; + /** !#en Stop emitting particles. Running particles will continue to run until they die. + !#zh 停止发射器发射粒子,发射出去的粒子将继续运行,直至粒子生命结束。 + + @example + ```js + // stop particle system. + myParticleSystem.stopSystem(); + ``` + */ + stopSystem() : void; + /** !#en Kill all living particles. + !#zh 杀死所有存在的粒子,然后重新启动粒子发射器。 + + @example + ```js + // play particle system. + myParticleSystem.resetSystem(); + ``` + */ + resetSystem() : void; + /** !#en Whether or not the system is full. + !#zh 发射器中粒子是否大于等于设置的总粒子数量。 + */ + isFull() : boolean; + /** !#en +

Sets a new CCSpriteFrame as particle.
+ WARNING: this method is experimental. Use setTextureWithRect instead. +

+ !#zh +

设置一个新的精灵帧为粒子。
+ 警告:这个函数只是试验,请使用 setTextureWithRect 实现。 +

+ */ + setDisplayFrame(spriteFrame : SpriteFrame) : void; + /** !#en Sets a new texture with a rect. The rect is in texture position and size. + !#zh 设置一张新贴图和关联的矩形。 + */ + setTextureWithRect(texture : Texture2D, rect : Rect) : void; + } + /** !#en Render the TMX layer. + !#zh 渲染 TMX layer。 */ + export class TiledLayer extends _SGComponent { + /** !#en Gets the layer name. + !#zh 获取层的名称。 + + @example + ```js + var layerName = tiledLayer.getLayerName(); + cc.log(layerName); + ``` + */ + getLayerName() : string; + /** !#en Set the layer name. + !#zh 设置层的名称 + + @example + ```js + tiledLayer.setLayerName("New Layer"); + ``` + */ + SetLayerName(layerName : string) : void; + /** !#en Return the value for the specific property name. + !#zh 获取指定属性名的值。 + + @example + ```js + var property = tiledLayer.getProperty("info"); + cc.log(property); + ``` + */ + getProperty(propertyName : string) : any; + /** !#en Returns the position in pixels of a given tile coordinate. + !#zh 获取指定 tile 的像素坐标。 + @param pos position or x + + @example + ```js + var pos = tiledLayer.getPositionAt(cc.v2(0, 0)); + cc.log("Pos: " + pos); + var pos = tiledLayer.getPositionAt(0, 0); + cc.log("Pos: " + pos); + ``` + */ + getPositionAt(pos : Vec2|number, y? : number) : Vec2; + /** !#en Removes a tile at given tile coordinate. + !#zh 删除指定坐标上的 tile。 + @param pos position or x + + @example + ```js + tiledLayer.removeTileAt(cc.v2(0, 0)); + tiledLayer.removeTileAt(0, 0); + ``` + */ + removeTileAt(pos : Vec2|number, y? : number) : void; + /** !#en + Sets the tile gid (gid = tile global id) at a given tile coordinate.
+ The Tile GID can be obtained by using the method "tileGIDAt" or by using the TMX editor . Tileset Mgr +1.
+ If a tile is already placed at that position, then it will be removed. + !#zh + 设置给定坐标的 tile 的 gid (gid = tile 全局 id), + tile 的 GID 可以使用方法 “tileGIDAt” 来获得。
+ 如果一个 tile 已经放在那个位置,那么它将被删除。 + @param posOrX position or x + @param flagsOrY flags or y + + @example + ```js + tiledLayer.setTileGID(1001, 10, 10, 1) + ``` + */ + setTileGID(gid : number, posOrX : Vec2|number, flagsOrY : number, flags? : number) : void; + /** !#en + Returns the tile gid at a given tile coordinate.
+ if it returns 0, it means that the tile is empty.
+ This method requires the the tile map has not been previously released (eg. don't call layer.releaseMap())
+ !#zh + 通过给定的 tile 坐标、flags(可选)返回 tile 的 GID.
+ 如果它返回 0,则表示该 tile 为空。
+ 该方法要求 tile 地图之前没有被释放过(如:没有调用过layer.releaseMap()). + @param pos or x + + @example + ```js + var tileGid = tiledLayer.getTileGIDAt(0, 0); + ``` + */ + getTileGIDAt(pos : Vec2|number, y? : number) : number; + /** !#en + Returns the tile (_ccsg.Sprite) at a given a tile coordinate.
+ The returned _ccsg.Sprite will be already added to the _ccsg.TMXLayer. Don't add it again.
+ The _ccsg.Sprite can be treated like any other _ccsg.Sprite: rotated, scaled, translated, opacity, color, etc.
+ You can remove either by calling:
+ - layer.removeChild(sprite, cleanup);
+ - or layer.removeTileAt(ccp(x,y)); + !#zh + 通过指定的 tile 坐标获取对应的 tile(Sprite)。 返回的 tile(Sprite) 应是已经添加到 TMXLayer,请不要重复添加。
+ 这个 tile(Sprite) 如同其他的 Sprite 一样,可以旋转、缩放、翻转、透明化、设置颜色等。
+ 你可以通过调用以下方法来对它进行删除:
+ 1. layer.removeChild(sprite, cleanup);
+ 2. 或 layer.removeTileAt(cc.v2(x,y)); + @param pos or x + + @example + ```js + var title = tiledLayer.getTileAt(100, 100); + cc.log(title); + ``` + */ + getTileAt(pos : Vec2|number, y? : number) : _ccsg.Sprite; + /** !#en + Dealloc the map that contains the tile position from memory.
+ Unless you want to know at runtime the tiles positions, you can safely call this method.
+ If you are going to call layer.getTileGIDAt() then, don't release the map. + !#zh + 从内存中释放包含 tile 位置信息的地图。
+ 除了在运行时想要知道 tiles 的位置信息外,你都可安全的调用此方法。
+ 如果你之后还要调用 layer.tileGIDAt(), 请不要释放地图. + + @example + ```js + tiledLayer.releaseMap(); + ``` + */ + releaseMap() : void; + /** !#en Sets the untransformed size of the _ccsg.TMXLayer. + !#zh 设置未转换的 layer 大小。 + @param size The untransformed size of the _ccsg.TMXLayer or The untransformed size's width of the TMXLayer. + @param height The untransformed size's height of the _ccsg.TMXLayer. + + @example + ```js + tiledLayer.setContentSize(100, 100); + ``` + */ + setContentSize(size : Size|number, height? : number) : void; + /** !#en Return texture of cc.SpriteBatchNode. + !#zh 获取纹理。 + + @example + ```js + var texture = tiledLayer.getTexture(); + cc.log("Texture: " + texture); + ``` + */ + getTexture() : Texture2D; + /** !#en Set the texture of cc.SpriteBatchNode. + !#zh 设置纹理。 + + @example + ```js + tiledLayer.setTexture(texture); + ``` + */ + setTexture(texture : Texture2D) : void; + /** !#en Gets layer size. + !#zh 获得层大小。 + + @example + ```js + var size = tiledLayer.getLayerSize(); + cc.log("layer size: " + size); + ``` + */ + getLayerSize() : Size; + /** !#en Set layer size. + !#zh 设置层大小。 + + @example + ```js + tiledLayer.setLayerSize(new cc.size(5, 5)); + ``` + */ + setLayerSize(layerSize : Size) : void; + /** !#en Size of the map's tile (could be different from the tile's size). + !#zh 获取 tile 的大小( tile 的大小可能会有所不同)。 + + @example + ```js + var mapTileSize = tiledLayer.getMapTileSize(); + cc.log("MapTile size: " + mapTileSize); + ``` + */ + getMapTileSize() : Size; + /** !#en Set the map tile size. + !#zh 设置 tile 的大小。 + + @example + ```js + tiledLayer.setMapTileSize(new cc.size(10, 10)); + ``` + */ + setMapTileSize(tileSize : Size) : void; + /** !#en Pointer to the map of tiles. + !#zh 获取地图 tiles。 + + @example + ```js + var tiles = tiledLayer.getTiles(); + ``` + */ + getTiles() : any[]; + /** !#en Pointer to the map of tiles. + !#zh 设置地图 tiles + + @example + ```js + tiledLayer.setTiles(tiles); + ``` + */ + setTiles(tiles : any[]) : void; + /** !#en Tile set information for the layer. + !#zh 获取 layer 的 Tileset 信息。 + + @example + ```js + var tileset = tiledLayer.getTileSet(); + ``` + */ + getTileSet() : TMXTilesetInfo; + /** !#en Tile set information for the layer. + !#zh 设置 layer 的 Tileset 信息。 + + @example + ```js + tiledLayer.setTileSet(tileset); + ``` + */ + setTileSet(tileset : TMXTilesetInfo) : void; + /** !#en Layer orientation, which is the same as the map orientation. + !#zh 获取 Layer 方向(同地图方向)。 + + @example + ```js + var orientation = tiledLayer.getLayerOrientation(); + cc.log("Layer Orientation: " + orientation); + ``` + */ + getLayerOrientation() : number; + /** !#en Layer orientation, which is the same as the map orientation. + !#zh 设置 Layer 方向(同地图方向)。 + + @example + ```js + tiledLayer.setLayerOrientation(TiledMap.Orientation.ORTHO); + ``` + */ + setLayerOrientation(orientation : TiledMap.Orientation) : void; + /** !#en properties from the layer. They can be added using Tiled. + !#zh 获取 layer 的属性,可以使用 Tiled 编辑器添加属性。 + + @example + ```js + var properties = tiledLayer.getProperties(); + cc.log("Properties: " + properties); + ``` + */ + getProperties() : any[]; + /** !#en properties from the layer. They can be added using Tiled. + !#zh 设置层属性。 + + @example + ```js + tiledLayer.setLayerOrientation(properties); + ``` + */ + setProperties(properties : any[]) : void; + } + /** !#en Renders a TMX Tile Map in the scene. + !#zh 在场景中渲染一个 tmx 格式的 Tile Map。 */ + export class TiledMap extends Component { + /** !#en The TiledMap Asset. + !#zh TiledMap 资源。 */ + tmxAsset : cc.TiledMapAsset; + /** !#en Gets the map size. + !#zh 获取地图大小。 + + @example + ```js + var mapSize = tiledMap.getMapSize(); + cc.log("Map Size: " + mapSize); + ``` + */ + getMapSize() : Size; + /** !#en Set the map size. + !#zh 设置地图大小。 + + @example + ```js + tiledMap.setMapSize(new cc.size(960, 640)); + ``` + */ + setMapSize(mapSize : Size) : void; + /** !#en Gets the tile size. + !#zh 获取地图背景中 tile 元素的大小。 + + @example + ```js + var tileSize = tiledMap.getTileSize(); + cc.log("Tile Size: " + tileSize); + ``` + */ + getTileSize() : Size; + /** !#en Set the tile size. + !#zh 设置地图背景中 tile 元素的大小。 + + @example + ```js + tiledMap.setTileSize(new cc.size(10, 10)); + ``` + */ + setTileSize(tileSize : Size) : void; + /** !#en map orientation. + !#zh 获取地图方向。 + + @example + ```js + var mapOrientation = tiledMap.getMapOrientation(); + cc.log("Map Orientation: " + mapOrientation); + ``` + */ + getMapOrientation() : number; + /** !#en map orientation. + !#zh 设置地图方向。 + + @example + ```js + tiledMap.setMapOrientation(TiledMap.Orientation.ORTHO); + ``` + */ + setMapOrientation(orientation : TiledMap.Orientation) : void; + /** !#en object groups. + !#zh 获取所有的对象层。 + + @example + ```js + var objGroups = titledMap.getObjectGroups(); + for (var i = 0; i < objGroups.length; ++i) { + cc.log("obj: " + objGroups[i]); + } + ``` + */ + getObjectGroups() : any[]; + /** !#en object groups. + !#zh 设置所有的对象层。 + + @example + ```js + titledMap.setObjectGroups(groups); + ``` + */ + setObjectGroups(groups : any[]) : void; + /** !#en Gets the map properties. + !#zh 获取地图的属性。 + + @example + ```js + var properties = titledMap.getProperties(); + for (var i = 0; i < properties.length; ++i) { + cc.log("Properties: " + properties[i]); + } + ``` + */ + getProperties() : any[]; + /** !#en Set the map properties. + !#zh 设置地图的属性。 + + @example + ```js + titledMap.setProperties(properties); + ``` + */ + setProperties(properties : any[]) : void; + /** !#en Return All layers array. + !#zh 返回包含所有 layer 的数组。 + + @example + ```js + var layers = titledMap.allLayers(); + for (var i = 0; i < layers.length; ++i) { + cc.log("Layers: " + layers[i]); + } + ``` + */ + allLayers() : Node[]; + /** !#en return the cc.TiledLayer for the specific layer. + !#zh 获取指定名称的 layer。 + + @example + ```js + var layer = titledMap.getLayer("Player"); + cc.log(layer); + ``` + */ + getLayer(layerName : string) : TiledLayer; + /** !#en Return the TMXObjectGroup for the specific group. + !#zh 获取指定的 TMXObjectGroup。 + + @example + ```js + var group = titledMap.getObjectGroup("Players"); + cc.log("ObjectGroup: " + group); + ``` + */ + getObjectGroup(groupName : string) : TMXObjectGroup; + /** !#en Return the value for the specific property name. + !#zh 通过属性名称,获取指定的属性。 + + @example + ```js + var property = titledMap.getProperty("info"); + cc.log("Property: " + property); + ``` + */ + getProperty(propertyName : string) : string; + /** !#en Return properties dictionary for tile GID. + !#zh 通过 GID ,获取指定的属性。 + + @example + ```js + var properties = titledMap.getPropertiesForGID(GID); + cc.log("Properties: " + properties); + ``` + */ + getPropertiesForGID(GID : number) : any; + } + /** !#en + cc.NodePool is the cache pool designed for node type.
+ It can helps you to improve your game performance for objects which need frequent release and recreate operations
+ + It's recommended to create cc.NodePool instances by node type, the type corresponds to node type in game design, not the class, + for example, a prefab is a specific node type.
+ When you create a node pool, you can pass a Component which contains `unuse`, `reuse` functions to control the content of node.
+ + Some common use case is :
+ 1. Bullets in game (die very soon, massive creation and recreation, no side effect on other objects)
+ 2. Blocks in candy crash (massive creation and recreation)
+ etc... + !#zh + cc.NodePool 是用于管理节点对象的对象缓存池。
+ 它可以帮助您提高游戏性能,适用于优化对象的反复创建和销毁
+ + 建议为每种节点分别实例化一个缓冲池,这里的种类对应于游戏中的节点设计,一个 prefab 相当于一个种类的节点。
+ 在创建缓冲池时,可以传入一个包含 unuse, reuse 函数的组件类型用于节点的回收和复用逻辑。
+ + 一些常见的用例是:
+ 1.在游戏中的子弹(死亡很快,频繁创建,对其他对象无副作用)
+ 2.糖果粉碎传奇中的木块(频繁创建)。 + 等等.... */ + export class NodePool { + /** + @param poolHandlerComp The constructor or the class name of the component to control the unuse/reuse logic. + */ + constructor(poolHandlerComp : Function|string); + /** !#en The pool handler component, it could be the class name or the constructor. + !#zh 缓冲池处理组件,用于节点的回收和复用逻辑,这个属性可以是组件类名或组件的构造函数。 */ + poolHandlerComp : Function|string; + /** !#en The current available size in the pool + !#zh 获取当前缓冲池的可用对象数量 + */ + size() : void; + /** !#en Put a new Node into the pool. + It will automatically remove the node from its parent without cleanup. + It will also invoke unuse method of the poolHandlerComp if exist. + !#zh 向缓冲池中存入一个不再需要的节点对象。 + 这个函数会自动将目标节点从父节点上移除,但是不会进行 cleanup 操作。 + 这个函数会调用 poolHandlerComp 的 unuse 函数,如果组件和函数都存在的话。 + */ + put() : void; + /** !#en Get a obj from pool, if no available object in pool, null will be returned. + This function will invoke the reuse function of poolHandlerComp if exist. + !#zh 获取对象池中的对象,如果对象池没有可用对象,则返回空。 + 这个函数会调用 poolHandlerComp 的 reuse 函数,如果组件和函数都存在的话。 + */ + get() : any; + } + /** !#en + Attention: In creator, it's strongly not recommended to use cc.pool to manager cc.Node. + We provided {{#crossLink "NodePool"}}cc.NodePool{{/crossLink}} instead. + + cc.pool is a singleton object serves as an object cache pool.
+ It can helps you to improve your game performance for objects which need frequent release and recreate operations
+ !#zh + 首先请注意,在 Creator 中我们强烈不建议使用 cc.pool 来管理 cc.Node 节点对象,请使用 {{#crossLink "NodePool"}}cc.NodePool{{/crossLink}} 代替 + 因为 cc.pool 是面向类来设计的,而 cc.Node 中使用 Component 来进行组合,它的类永远都一样,实际却千差万别。 + + cc.pool 是一个单例对象,用作为对象缓存池。
+ 它可以帮助您提高游戏性能,适用于优化对象的反复创建和销毁
*/ + export class pool { + /** !#en Put the obj in pool. + !#zh 加入对象到对象池中。 + @param obj The need put in pool object. + + @example + ```js + --------------------------------- + var sp = new _ccsg.Sprite("a.png"); + this.addChild(sp); + cc.pool.putInPool(sp); + cc.pool.getFromPool(_ccsg.Sprite, "a.png"); + + ``` + */ + putInPool(obj : any) : void; + /** !#en Check if this kind of obj has already in pool. + !#zh 检查对象池中是否有指定对象的存在。 + @param objClass The check object class. + */ + hasObject(objClass : any) : boolean; + /** !#en Remove the obj if you want to delete it. + !#zh 移除在对象池中指定的对象。 + */ + removeObject() : void; + /** !#en Get the obj from pool. + !#zh 获取对象池中的指定对象。 + */ + getFromPool() : any; + /** !#en Remove all objs in pool and reset the pool. + !#zh 移除对象池中的所有对象,并且重置对象池。 + */ + drainAllPools() : void; + } + /** !#en + Base class for handling assets used in Fireball. This class can be instantiate. + + You may want to override:
+ - createNode
+ - cc.Object._serialize
+ - cc.Object._deserialize
+ !#zh + 资源基类,该类可以被实例化。
+ + 您可能需要重写:
+ - createNode
+ - cc.Object._serialize
+ - cc.Object._deserialize
*/ + export class Asset extends RawAsset { + constructor(); + /** !#en + Returns the url of this asset's first raw file, if none of rawFile exists, + it will returns an empty string. + !#zh 返回该资源的原始文件的 URL,如果不支持 RAW 文件,它将返回一个空字符串。 */ + rawUrl : string; + /** !#en + Returns the url of this asset's raw files, if none of rawFile exists, + it will returns an empty array. + !#zh 返回该资源的原文件的 URL 数组,如果不支持 RAW 文件,它将返回一个空数组。 */ + rawUrls : String[]; + /** !#en + Create a new node using this asset in the scene.
+ If this type of asset dont have its corresponding node type, this method should be null. + !#zh + 使用该资产在场景中创建一个新节点。
+ 如果这类资产没有相应的节点类型,该方法应该是空的。 + */ + createNode(callback: (error: string, node: any) => void) : void; + } + /** !#en Class for audio data handling. + !#zh 音频资源类。 */ + export class AudioClip extends RawAsset { + constructor(); + } + /** !#en Class for BitmapFont handling. + !#zh 位图字体资源类。 */ + export class BitmapFont extends RawAsset { + constructor(); + } + /** !#en Class for Font handling. + !#zh 字体资源类。 */ + export class Font extends RawAsset { + constructor(); + } + /** !#en Class for prefab handling. + !#zh 预制资源类。 */ + export class Prefab extends Asset { + constructor(); + } + /** !#en + The base class for registering asset types. + + You may want to override: + - createNode (static) + !#zh + 注册用的资源基类。
+ 你可能要重写:
+ - createNode (static) */ + export class RawAsset extends CCObject { + /** !#en + Create a new node in the scene.
+ If this type of asset dont have its corresponding node type, this method should be null. + !#zh + 在场景中创建一个新节点。
+ 如果这类资源没有相应的节点类型,该方法应该是空的。 + */ + createNodeByInfo(Info : any, callback: (error: string, node: any) => void) : void; + } + /** !#en Class for scene handling. + !#zh 场景资源类。 */ + export class SceneAsset extends Asset { + constructor(); + } + /** !#en Class for script handling. + !#zh Script 资源类。 */ + export class _Script extends Asset { + constructor(); + } + /** !#en Class for JavaScript handling. + !#zh JavaScript 资源类。 */ + export class _JavaScript extends Asset { + constructor(); + } + /** !#en Class for coffee script handling. + !#zh CoffeeScript 资源类。 */ + export class CoffeeScript extends Asset { + constructor(); + } + /** !#en Class for sprite atlas handling. + !#zh 精灵图集资源类。 */ + export class SpriteAtlas extends RawAsset { + constructor(); + /** Returns the texture of the sprite atlas + */ + getTexture() : cc.Texture2D; + /** Returns the sprite frame correspond to the given key in sprite atlas. + */ + getSpriteFrame(key : string) : cc.SpriteFrame; + /** Returns the sprite frames in sprite atlas. + */ + getSpriteFrames() : [cc.SpriteFrame]; + } + /** !#en Class for TTFFont handling. + !#zh TTF 字体资源类。 */ + export class TTFFont extends Asset { + constructor(); + } + /** !#en Class for text file. + !#zh 文本资源类。 */ + export class TextAsset extends Asset { + constructor(); + } + /** !#en Box Collider. + !#zh 包围盒碰撞组件 */ + export class BoxCollider extends Component { + /** !#en Position offset + !#zh 位置偏移量 */ + offset : Vec2; + /** !#en Box size + !#zh 包围盒大小 */ + size : Size; + } + /** !#en Circle Collider. + !#zh 圆形碰撞组件 */ + export class CircleCollider extends Component { + /** !#en Position offset + !#zh 位置偏移量 */ + offset : Vec2; + /** !#en Circle radius + !#zh 圆形半径 */ + radius : number; + } + /** !#en Collider component base class. + !#zh 碰撞组件基类 */ + export class Collider extends Component { + /** !#en Tag. If a node has several collider components, you can judge which type of collider is collided according to the tag. + !#zh 标签。当一个节点上有多个碰撞组件时,在发生碰撞后,可以使用此标签来判断是节点上的哪个碰撞组件被碰撞了。 */ + tag : Integer; + } + /** !#en + A simple collision manager class. + It will calculate whether the collider collides other colliders, if collides then call the callbacks. + !#zh + 一个简单的碰撞组件管理类,用于处理节点之间的碰撞组件是否产生了碰撞,并调用相应回调函数。 */ + export class CollisionManager { + /** !#en + !#zh + 是否开启碰撞管理,默认为不开启 */ + enabled : boolean; + /** !#en + !#zh + 是否绘制碰撞组件的包围盒,默认为不绘制 */ + enabledDrawBoundingBox : boolean; + /** !#en + !#zh + 是否绘制碰撞组件的形状,默认为不绘制 */ + enabledDebugDraw : boolean; + } + /** !#en Intersection helper class + !#zh 辅助类,用于测试形状与形状是否相交 */ + export class Intersection { + /** !#en Test line and line + !#zh 测试线段与线段是否相交 + @param a1 The start point of the first line + @param a2 The end point of the first line + @param b1 The start point of the second line + @param b2 The end point of the second line + */ + lineLine(a1 : Vec2, a2 : Vec2, b1 : Vec2, b2 : Vec2) : boolean; + /** !#en Test line and rect + !#zh 测试线段与矩形是否相交 + @param a1 The start point of the line + @param a2 The end point of the line + @param b The rect + */ + lineRect(a1 : Vec2, a2 : Vec2, b : Rect) : boolean; + /** !#en Test line and polygon + !#zh 测试线段与多边形是否相交 + @param a1 The start point of the line + @param a2 The end point of the line + @param b The polygon, a set of points + */ + linePolygon(a1 : Vec2, a2 : Vec2, b : [Vec2]) : boolean; + /** !#en Test rect and rect + !#zh 测试矩形与矩形是否相交 + @param a The first rect + @param b The second rect + */ + rectRect(a : Rect, b : Rect) : boolean; + /** !#en Test rect and polygon + !#zh 测试矩形与多边形是否相交 + @param a The rect + @param b The polygon, a set of points + */ + rectPolygon(a : Rect, b : [Vec2]) : boolean; + /** !#en Test polygon and polygon + !#zh 测试多边形与多边形是否相交 + @param a The first polygon, a set of points + @param b The second polygon, a set of points + */ + polygonPolygon(a : [Vec2], b : [Vec2]) : boolean; + /** !#en Test circle and circle + !#zh 测试圆形与圆形是否相交 + @param a Object contains position and radius + @param b Object contains position and radius + */ + circleCircle(a : any, b : any) : boolean; + /** !#en Test polygon and circle + !#zh 测试矩形与圆形是否相交 + @param polygon The Polygon, a set of points + @param circle Object contains position and radius + */ + polygonCircle(polygon : [Vec2], circle : any) : boolean; + /** !#en Test whether the point is in the polygon + !#zh 测试一个点是否在一个多边形中 + @param point The point + @param polygon The polygon, a set of points + */ + pointInPolygon(point : Vec2, polygon : [Vec2]) : boolean; + /** !#en Calculate the distance of point to line. + !#zh 计算点到直线的距离。如果这是一条线段并且垂足不在线段内,则会计算点到线段端点的距离。 + @param point The point + @param start The start point of line + @param end The end point of line + @param isSegment whether this line is a segment + */ + pointLineDistance(point : Vec2, start : Vec2, end : Vec2, isSegment : boolean) : boolean; + } + /** !#en Polygon Collider. + !#zh 多边形碰撞组件 */ + export class PolygonCollider extends Component { + /** !#en Position offset + !#zh 位置偏移量 */ + offset : Vec2; + /** !#en Polygon points + !#zh 多边形顶点数组 */ + points : [Vec2]; + } + /** !#en The animation component is used to play back animations. + !#zh Animation 组件用于播放动画。你能指定动画剪辑到动画组件并从脚本控制播放。 */ + export class Animation extends CCComponent { + /** !#en Animation will play the default clip when start game. + !#zh 在勾选自动播放或调用 play() 时默认播放的动画剪辑。 */ + defaultClip : AnimationClip; + /** !#en Current played clip. + !#zh 当前播放的动画剪辑。 */ + currentClip : AnimationClip; + /** !#en Whether the animation should auto play the default clip when start game. + !#zh 是否在运行游戏后自动播放默认动画剪辑。 */ + playOnLoad : boolean; + /** !#en Get all the clips used in this animation. + !#zh 获取动画组件上的所有动画剪辑。 + */ + getClips() : AnimationClip[]; + /** !#en Plays an animation and stop other animations. + !#zh 播放当前或者指定的动画,并且停止当前正在播放动画。 + @param name The name of animation to play. If no name is supplied then the default animation will be played. + @param startTime play an animation from startTime + + @example + ```js + var animCtrl = this.node.getComponent(cc.Animation); + animCtrl.play("linear"); + ``` + */ + play(name? : string, startTime? : number) : AnimationState; + /** !#en + Plays an additive animation, it will not stop other animations. + If there are other animations playing, then will play several animations at the same time. + !#zh 播放当前或者指定的动画(将不会停止当前播放的动画)。 + @param name The name of animation to play. If no name is supplied then the default animation will be played. + @param startTime play an animation from startTime + + @example + ```js + // linear_1 and linear_2 at the same time playing. + var animCtrl = this.node.getComponent(cc.Animation); + animCtrl.playAdditive("linear_1"); + animCtrl.playAdditive("linear_2"); + ``` + */ + playAdditive(name? : string, startTime? : number) : AnimationState; + /** !#en Stops an animation named name. If no name is supplied then stops all playing animations that were started with this Animation.
+ Stopping an animation also Rewinds it to the Start. + !#zh 停止当前或者指定的动画。如果没有指定名字,则停止所有动画。 + @param name The animation to stop, if not supplied then stops all playing animations. + */ + stop(name? : string) : void; + /** !#en Pauses an animation named name. If no name is supplied then pauses all playing animations that were started with this Animation. + !#zh 暂停当前或者指定的动画。如果没有指定名字,则暂停当前正在播放的动画。 + @param name The animation to pauses, if not supplied then pauses all playing animations. + */ + pause(name? : string) : void; + /** !#en Resumes an animation named name. If no name is supplied then resumes all paused animations that were started with this Animation. + !#zh 重新播放指定的动画,如果没有指定名字,则重新播放当前正在播放的动画。 + @param name The animation to resumes, if not supplied then resumes all paused animations. + */ + resume(name? : string) : void; + /** !#en Make an animation named name go to the specified time. If no name is supplied then make all animations go to the specified time. + !#zh 设置指定动画的播放时间。如果没有指定名字,则设置所有动画的播放时间。 + @param time The time to go to + @param name Specified animation name, if not supplied then make all animations go to the time. + */ + setCurrentTime(time? : number, name? : string) : void; + /** !#en Returns the animation state named name. If no animation with the specified name, the function will return null. + !#zh 获取当前或者指定的动画状态,如果未找到指定动画剪辑则返回 null。 + */ + getAnimationState(name : string) : AnimationState; + /** !#en Adds a clip to the animation with name newName. If a clip with that name already exists it will be replaced with the new clip. + !#zh 添加动画剪辑,并且可以重新设置该动画剪辑的名称。 + @param clip the clip to add + */ + addClip(clip : AnimationClip, newName? : string) : AnimationState; + /** !#en + Remove clip from the animation list. This will remove the clip and any animation states based on it. + If there are animation states depand on the clip are playing or clip is defaultClip, it will not delete the clip. + But if force is true, then will always remove the clip and any animation states based on it. If clip is defaultClip, defaultClip will be reset to null + !#zh + 从动画列表中移除指定的动画剪辑,
+ 如果依赖于 clip 的 AnimationState 正在播放或者 clip 是 defaultClip 的话,默认是不会删除 clip 的。 + 但是如果 force 参数为 true,则会强制停止该动画,然后移除该动画剪辑和相关的动画。这时候如果 clip 是 defaultClip,defaultClip 将会被重置为 null。 + @param force If force is true, then will always remove the clip and any animation states based on it. + */ + removeClip(clip : AnimationClip, force : boolean) : void; + /** !#en + Samples animations at the current state.
+ This is useful when you explicitly want to set up some animation state, and sample it once. + !#zh 对当前动画进行采样。你可以手动将动画设置到某一个状态,然后采样一次。 + */ + sample() : void; + } + /** !#en Audio Source. + !#zh 音频源组件,能对音频剪辑。 */ + export class AudioSource extends Component { + /** !#en + Is the audio source playing (Read Only).
+ Note: isPlaying is not supported for Native platforms. + !#zh + 该音频剪辑是否正播放(只读)。
+ 注意:Native 平台暂时不支持 isPlaying。 */ + isPlaying : boolean; + /** !#en The clip of the audio source. + !#zh 默认要播放的音频剪辑。 */ + clip : AudioClip; + /** !#en The volume of the audio source. + !#zh 音频源的音量(0.0 ~ 1.0)。 */ + volume : number; + /** !#en Is the audio source mute? + !#zh 是否静音音频源。Mute 是设置音量为 0,取消静音是恢复原来的音量。 */ + mute : boolean; + /** !#en Is the audio source looping? + !#zh 音频源是否循环播放? */ + loop : boolean; + /** !#en If set to true, the audio source will automatically start playing on onLoad. + !#zh 如果设置为true,音频源将在 onLoad 时自动播放。 */ + playOnLoad : boolean; + /** !#en Plays the clip. + !#zh 播放音频剪辑。 + */ + play() : void; + /** !#en Stops the clip. + !#zh 停止当前音频剪辑。 + */ + stop() : void; + /** !#en Pause the clip. + !#zh 暂停当前音频剪辑。 + */ + pause() : void; + /** !#en Resume the clip. + !#zh 恢复播放。 + */ + resume() : void; + /** !#en Rewind playing music. + !#zh 从头开始播放。 + */ + rewind() : void; + } + /** !#en + Button has 3 Transition types + When Button state changed: + If Transition type is Button.Transition.NONE, Button will do nothing + If Transition type is Button.Transition.COLOR, Button will change target's color + If Transition type is Button.Transition.SPRITE, Button will change target Sprite's sprite + + Button will trigger 5 events: + Button.EVENT_TOUCH_DOWN + Button.EVENT_TOUCH_UP + Button.EVENT_HOVER_IN + Button.EVENT_HOVER_MOVE + Button.EVENT_HOVER_OUT + + !#zh + 按钮组件。可以被按下,或者点击。
+ + 按钮可以通过修改 Transition 来设置按钮状态过渡的方式:
+ -Button.Transition.NONE // 不做任何过渡
+ -Button.Transition.COLOR // 进行颜色之间过渡
+ -Button.Transition.SPRITE // 进行精灵之间过渡
+ + 按钮可以绑定事件(但是必须要在按钮的 Node 上才能绑定事件):
+ // 以下事件可以在全平台上都触发
+ -cc.Node.EventType.TOUCH_START // 按下时事件
+ -cc.Node.EventType.TOUCH_Move // 按住移动后事件
+ -cc.Node.EventType.TOUCH_END // 按下后松开后事件
+ -cc.Node.EventType.TOUCH_CANCEL // 按下取消事件
+ // 以下事件只在 PC 平台上触发
+ -cc.Node.EventType.MOUSE_DOWN // 鼠标按下时事件
+ -cc.Node.EventType.MOUSE_MOVE // 鼠标按住移动后事件
+ -cc.Node.EventType.MOUSE_ENTER // 鼠标进入目标事件
+ -cc.Node.EventType.MOUSE_LEAVE // 鼠标离开目标事件
+ -cc.Node.EventType.MOUSE_UP // 鼠标松开事件
+ -cc.Node.EventType.MOUSE_WHEEL // 鼠标滚轮事件
*/ + export class Button extends Component { + /** !#en + Whether the Button is disabled. + If true, the Button will trigger event and do transition. + !#zh + 按钮事件是否被响应,如果为 false,则按钮将被禁用。 */ + interactable : boolean; + /** !#en Transition type + !#zh 按钮状态改变时过渡方式。 */ + transition : Button.Transition; + /** !#en Normal state color. + !#zh 普通状态下按钮所显示的颜色。 */ + normalColor : Color; + /** !#en Pressed state color + !#zh 按下状态时按钮所显示的颜色。 */ + pressedColor : Color; + /** !#en Hover state color + !#zh 悬停状态下按钮所显示的颜色。 */ + hoverColor : Color; + /** !#en Disabled state color + !#zh 禁用状态下按钮所显示的颜色。 */ + disabledColor : Color; + /** !#en Color transition duration + !#zh 颜色过渡时所需时间 */ + duration : number; + /** !#en Normal state sprite + !#zh 普通状态下按钮所显示的 Sprite 。 */ + normalSprite : SpriteFrame; + /** !#en Pressed state sprite + !#zh 按下状态时按钮所显示的 Sprite 。 */ + pressedSprite : SpriteFrame; + /** !#en Hover state sprite + !#zh 悬停状态下按钮所显示的 Sprite 。 */ + hoverSprite : SpriteFrame; + /** !#en Disabled state sprite + !#zh 禁用状态下按钮所显示的 Sprite 。 */ + disabledSprite : SpriteFrame; + /** !#en + Transition target. + When Button state changed: + If Transition type is Button.Transition.NONE, Button will do nothing + If Transition type is Button.Transition.COLOR, Button will change target's color + If Transition type is Button.Transition.SPRITE, Button will change target Sprite's sprite + !#zh + 需要过渡的目标。 + 当前按钮状态改变有: + -如果 Transition type 选择 Button.Transition.NONE,按钮不做任何过渡。 + -如果 Transition type 选择 Button.Transition.COLOR,按钮会对目标颜色进行颜色之间的过渡。 + -如果 Transition type 选择 Button.Transition.NONE,按钮会对目标 Sprite 进行 Sprite 之间的过渡。 */ + target : Node; + /** !#en If Button is clicked, it will trigger event's handler + !#zh 按钮的点击事件列表。 */ + clickEvents : Component.EventHandler[]; + } + /** !#zh: 作为 UI 根节点,为所有子节点提供视窗四边的位置信息以供对齐,另外提供屏幕适配策略接口,方便从编辑器设置。 + 注:由于本节点的尺寸会跟随屏幕拉伸,所以 anchorPoint 只支持 (0.5, 0.5),否则适配不同屏幕时坐标会有偏差。 */ + export class Canvas extends Component { + /** !#en Current active canvas, the scene should only have one active canvas at the same time. + !#zh 当前激活的画布组件,场景同一时间只能有一个激活的画布。 */ + instance : Canvas; + /** !#en The desigin resolution for current scene. + !#zh 当前场景设计分辨率。 */ + designResolution : cc.Size; + /** !#en TODO + !#zh: 是否优先将设计分辨率高度撑满视图高度。 */ + fitHeight : boolean; + /** !#en TODO + !#zh: 是否优先将设计分辨率宽度撑满视图宽度。 */ + fitWidth : boolean; + } + /** !#en + Base class for everything attached to Node(Entity).
+
+ NOTE: Not allowed to use construction parameters for Component's subclasses, + because Component is created by the engine. + !#zh + 所有附加到节点的基类。
+
+ 注意:不允许使用组件的子类构造参数,因为组件是由引擎创建的。 */ + export class Component extends Object { + constructor(); + /** !#en The node this component is attached to. A component is always attached to a node. + !#zh 该组件被附加到的节点。组件总会附加到一个节点。 */ + node : Node; + /** !#en The uuid for editor. + !#zh 组件的 uuid,用于编辑器。 */ + uuid : string; + /** !#en indicates whether this component is enabled or not. + !#zh 表示该组件自身是否启用。 */ + enabled : boolean; + /** !#en indicates whether this component is enabled and its node is also active in the hierarchy. + !#zh 表示该组件是否被启用并且所在的节点也处于激活状态。。 */ + enabledInHierarchy : boolean; + /** !#en TODO + !#zh onLoad 是否被调用。 */ + _isOnLoadCalled : boolean; + /** !#en Update is called every frame, if the Component is enabled. + !#zh 如果该组件启用,则每帧调用 update。 + */ + update() : void; + /** !#en LateUpdate is called every frame, if the Component is enabled. + !#zh 如果该组件启用,则每帧调用 LateUpdate。 + */ + lateUpdate() : void; + /** !#en When attaching to an active node or its node first activated. + !#zh 当附加到一个激活的节点上或者其节点第一次激活时候调用。 + */ + onLoad() : void; + /** !#en Called before all scripts' update if the Component is enabled. + !#zh 如果该组件启用,则在所有组件的 update 之前调用。 + */ + start() : void; + /** !#en Called when this component becomes enabled and its node is active. + !#zh 当该组件被启用,并且它的节点也激活时。 + */ + onEnable() : void; + /** !#en Called when this component becomes disabled or its node becomes inactive. + !#zh 当该组件被禁用或节点变为无效时调用。 + */ + onDisable() : void; + /** !#en Called when this component will be destroyed. + !#zh 当该组件被销毁时调用 + */ + onDestroy() : void; + onFocusInEditor() : void; + onLostFocusInEditor() : void; + /** !#en Adds a component class to the node. You can also add component to node by passing in the name of the script. + !#zh 向节点添加一个组件类,你还可以通过传入脚本的名称来添加组件。 + @param typeOrTypename the constructor or the class name of the component to add + + @example + ```js + var sprite = node.addComponent(cc.Sprite); + var test = node.addComponent("Test"); + ``` + */ + addComponent(typeOrTypename : Function|string) : Component; + /** !#en + Returns the component of supplied type if the node has one attached, null if it doesn't.
+ You can also get component in the node by passing in the name of the script. + !#zh + 获取节点上指定类型的组件,如果节点有附加指定类型的组件,则返回,如果没有则为空。
+ 传入参数也可以是脚本的名称。 + + @example + ```js + // get sprite component. + var sprite = node.getComponent(cc.Sprite); + // get custom test calss. + var test = node.getComponent("Test"); + ``` + */ + getComponent(typeOrClassName : Function|string) : Component; + /** !#en Returns all components of supplied Type in the node. + !#zh 返回节点上指定类型的所有组件。 + + @example + ```js + var sprites = node.getComponents(cc.Sprite); + var tests = node.getComponents("Test"); + ``` + */ + getComponents(typeOrClassName : Function|string) : Component[]; + /** !#en Returns the component of supplied type in any of its children using depth first search. + !#zh 递归查找所有子节点中第一个匹配指定类型的组件。 + + @example + ```js + var sprite = node.getComponentInChildren(cc.Sprite); + var Test = node.getComponentInChildren("Test"); + ``` + */ + getComponentInChildren(typeOrClassName : Function|string) : Component; + /** !#en Returns the components of supplied type in any of its children using depth first search. + !#zh 递归查找所有子节点中指定类型的组件。 + + @example + ```js + var sprites = node.getComponentsInChildren(cc.Sprite); + var tests = node.getComponentsInChildren("Test"); + ``` + */ + getComponentsInChildren(typeOrClassName : Function|string) : Component[]; + /** !#en + If the component's bounding box is different from the node's, you can implement this method to supply + a custom axis aligned bounding box (AABB), so the editor's scene view can perform hit test properly. + !#zh + 如果组件的包围盒与节点不同,您可以实现该方法以提供自定义的轴向对齐的包围盒(AABB), + 以便编辑器的场景视图可以正确地执行点选测试。 + @param out_rect the Rect to receive the bounding box + */ + _getLocalBounds(out_rect : Rect) : void; + /** !#en + onRestore is called after the user clicks the Reset item in the Inspector's context menu or performs + an undo operation on this component.
+
+ If the component contains the "internal state", short for "temporary member variables which not included
+ in its CCClass properties", then you may need to implement this function.
+
+ The editor will call the getset accessors of your component to record/restore the component's state
+ for undo/redo operation. However, in extreme cases, it may not works well. Then you should implement
+ this function to manually synchronize your component's "internal states" with its public properties.
+ Once you implement this function, all the getset accessors of your component will not be called when
+ the user performs an undo/redo operation. Which means that only the properties with default value
+ will be recorded or restored by editor.
+
+ Similarly, the editor may failed to reset your component correctly in extreme cases. Then if you need
+ to support the reset menu, you should manually synchronize your component's "internal states" with its
+ properties in this function. Once you implement this function, all the getset accessors of your component
+ will not be called during reset operation. Which means that only the properties with default value
+ will be reset by editor. + + This function is only called in editor mode. + !#zh + onRestore 是用户在检查器菜单点击 Reset 时,对此组件执行撤消操作后调用的。
+
+ 如果组件包含了“内部状态”(不在 CCClass 属性中定义的临时成员变量),那么你可能需要实现该方法。
+
+ 编辑器执行撤销/重做操作时,将调用组件的 get set 来录制和还原组件的状态。 + 然而,在极端的情况下,它可能无法良好运作。
+ 那么你就应该实现这个方法,手动根据组件的属性同步“内部状态”。 + 一旦你实现这个方法,当用户撤销或重做时,组件的所有 get set 都不会再被调用。 + 这意味着仅仅指定了默认值的属性将被编辑器记录和还原。
+
+ 同样的,编辑可能无法在极端情况下正确地重置您的组件。
+ 于是如果你需要支持组件重置菜单,你需要在该方法中手工同步组件属性到“内部状态”。
+ 一旦你实现这个方法,组件的所有 get set 都不会在重置操作时被调用。 + 这意味着仅仅指定了默认值的属性将被编辑器重置。 +
+ 此方法仅在编辑器下会被调用。 + */ + onRestore() : void; + /** !#en + Schedules a custom selector.
+ If the selector is already scheduled, then the interval parameter will be updated without scheduling it again. + !#zh + 调度一个自定义的回调函数。
+ 如果回调函数已调度,那么将不会重复调度它,只会更新时间间隔参数。 + @param callback The callback function + @param interval Tick interval in seconds. 0 means tick every frame. If interval = 0, it's recommended to use scheduleUpdate() instead. + @param repeat The selector will be executed (repeat + 1) times, you can use kCCRepeatForever for tick infinitely. + @param delay The amount of time that the first tick will wait before execution. + + @example + ```js + var timeCallback = function (dt) { + cc.log("time: " + dt); + } + this.schedule(timeCallback, 1); + ``` + */ + schedule(callback : Function, interval? : number, repeat? : number, delay? : number) : void; + /** !#en Schedules a callback function that runs only once, with a delay of 0 or larger. + !#zh 调度一个只运行一次的回调函数,可以指定 0 让回调函数在下一帧立即执行或者在一定的延时之后执行。 + @param callback A function wrapped as a selector + @param delay The amount of time that the first tick will wait before execution. + + @example + ```js + var timeCallback = function (dt) { + cc.log("time: " + dt); + } + this.scheduleOnce(timeCallback, 2); + ``` + */ + scheduleOnce(callback : Function, delay? : number) : void; + /** !#en Unschedules a custom callback function. + !#zh 取消调度一个自定义的回调函数。 + @param callback_fn A function wrapped as a selector + + @example + ```js + this.unschedule(_callback); + ``` + */ + unschedule(callback_fn : Function) : void; + /** !#en + unschedule all scheduled callback functions: custom callback functions, and the 'update' callback function.
+ Actions are not affected by this method. + !#zh 取消调度所有已调度的回调函数:定制的回调函数以及 'update' 回调函数。动作不受此方法影响。 + + @example + ```js + this.unscheduleAllCallbacks(); + ``` + */ + unscheduleAllCallbacks() : void; + } + /** !#en cc.EditBox is a component for inputing text, you can use it to gather small amounts of text from users. + !#zh EditBox 组件,用于获取用户的输入文本。 */ + export class EditBox extends _RendererUnderSG { + /** !#en Input string of EditBox. + !#zh 输入框的初始输入内容,如果为空则会显示占位符的文本。 */ + string : string; + /** !#en The background image of EditBox. + !#zh 输入框的背景图片 */ + backGroundImage : SpriteFrame; + /** !#en + The return key type of EditBox. + Note: it is meaningless for web platforms and desktop platforms. + !#zh + 指定移动设备上面回车按钮的样式。 + 注意:这个选项对 web 平台与 desktop 平台无效。 */ + returnType : EditBox.KeyboardReturnType; + /** !#en Set the input flags that are to be applied to the EditBox. + !#zh 指定输入标志位,可以指定输入方式为密码或者单词首字母大写。 */ + inputFlag : EditBox.InputFlag; + /** !#en + Set the input mode of the edit box. + If you pass ANY, it will create a multiline EditBox. + !#zh + 指定输入模式: ANY表示多行输入,其它都是单行输入,移动平台上还可以指定键盘样式。 */ + inputMode : EditBox.InputMode; + /** !#en Font size of the input text. + !#zh 输入框文本的字体大小 */ + fontSize : number; + /** !#en Change the lineHeight of displayed text. + !#zh 输入框文本的行高。 */ + lineHeight : number; + /** !#en Font color of the input text. + !#zh 输入框文本的颜色。 */ + fontColor : Color; + /** !#en The display text of placeholder. + !#zh 输入框占位符的文本内容。 */ + placeholder : string; + /** !#en The font size of placeholder. + !#zh 输入框占位符的字体大小。 */ + placeholderFontSize : number; + /** !#en The font color of placeholder. + !#zh 输入框最大允许输入的字符个数。 */ + placeholderFontColor : Color; + /** !#en The maximize input length of EditBox. + !#zh 输入框最大允许输入的字符个数。 */ + maxLength : number; + /** !#en The event handler to be called when EditBox began to edit text. + !#zh 开始编辑文本输入框触发的事件回调。 */ + editingDidBegin : Component.EventHandler; + /** !#en The event handler to be called when EditBox text changes. + !#zh 编辑文本输入框时触发的事件回调。 */ + textChanged : Component.EventHandler; + /** !#en The event handler to be called when EditBox edit ends. + !#zh 结束编辑文本输入框时触发的事件回调。 */ + editingDidEnded : Component.EventHandler; + } + /** !#en The Label Component. + !#zh 文字标签组件 */ + export class Label extends _RendererUnderSG { + /** !#en Content string of label. + !#zh 标签显示的文本内容。 */ + string : string; + /** !#en Horizontal Alignment of label. + !#zh 文本内容的水平对齐方式。 */ + horizontalAlign : Label.TextAlignment; + /** !#en Vertical Alignment of label. + !#zh 文本内容的垂直对齐方式。 */ + verticalAlign : Label.VerticalTextAlignment; + /** !#en Font size of label. + !#zh 文本字体大小。 */ + fontSize : number; + /** !#en Line Height of label. + !#zh 文本行高。 */ + lineHeight : number; + /** !#en Overflow of label. + !#zh 文字显示超出范围时的处理方式。 */ + overflow : Label.Overflow; + /** !#en Whether auto wrap label when string width is large than label width. + !#zh 是否自动换行。 */ + enableWrapText : boolean; + /** !#en The font of label. + !#zh 文本字体。 */ + font : cc.Font; + /** !#en Whether use system font name or not. + !#zh 是否使用系统字体。 */ + isSystemFontUsed : boolean; + } + /** !#en Outline effect used to change the display, only used for TTF font + !#zh 描边效果组件,用于字体描边,只能用于系统字体 */ + export class LabelOutline extends Component { + /** !#en Change the outline color + !#zh 改变描边的颜色 */ + color : Color; + /** !#en Change the outline width + !#zh 改变描边的宽度 */ + width : number; + } + /** !#en The Layout is a container component, use it to arrange child elements easily. + !#zh Layout 组件相当于一个容器,能自动对它的所有子节点进行统一排版。 */ + export class Layout extends Component { + /** !#en The layout type. + !#zh 布局类型 */ + type : Layout.Type; + /** !#en + The are three resize modes for Layout. + None, resize Container and resize children. + !#zh 缩放模式 */ + resizeMode : Layout.ResizeMode; + /** !#en The cell size for grid layout. + !#zh 每个格子的大小,只有布局类型为 GRID 的时候才有效。 */ + cellSize : Size; + /** !#en + The start axis for grid layout. If you choose horizontal, then children will layout horizontally at first, + and then break line on demand. Choose vertical if you want to layout vertically at first . + !#zh 起始轴方向类型,可进行水平和垂直布局排列,只有布局类型为 GRID 的时候才有效。 */ + startAxis : Layout.AxisDirection; + /** !#en The padding of layout, it only effect the layout in one direction. + !#zh 容器内边距,只会在布局方向上生效。 */ + padding : number; + /** !#en The distance in x-axis between each element in layout. + !#zh 子节点之间的水平间距。 */ + spacingX : number; + /** !#en The distance in y-axis between each element in layout. + !#zh 子节点之间的垂直间距。 */ + spacingY : number; + /** !#en + Only take effect in Vertical layout mode. + This option changes the start element's positioning. + !#zh 垂直排列子节点的方向。 */ + verticalDirection : Layout.VerticalDirection; + /** !#en + Only take effect in Horizontal layout mode. + This option changes the start element's positioning. + !#zh 水平排列子节点的方向。 */ + horizontalDirection : Layout.HorizontalDirection; + } + /** undefined */ + export class Mask extends _RendererInSG { + } + /** !#en + Visual indicator of progress in some operation. + Displays a bar to the user representing how far the operation has progressed. + !#zh + 进度条组件,可用于显示加载资源时的进度。 */ + export class ProgressBar extends Component { + /** !#en The targeted Sprite which will be changed progressively. + !#zh 用来显示进度条比例的 Sprite 对象。 */ + barSprite : Sprite; + /** !#en The progress mode, there are two modes supported now: horizontal and vertical. + !#zh 进度条的模式 */ + mode : ProgressBar.Mode; + /** !#en The total width or height of the bar sprite. + !#zh 进度条实际的总长度 */ + totalLength : number; + /** !#en The current progress of the bar sprite. The valid value is between 0-1. + !#zh 当前进度值,该数值的区间是 0-1 之间。 */ + progress : number; + /** !#en Whether reverse the progress direction of the bar sprite. + !#zh 进度条是否进行反方向变化。 */ + reverse : boolean; + } + /** Rendering component in scene graph. + Maintains a node which will be the scene graph of component's Node. */ + export class _RendererInSG extends _SGComponent { + } + /** The base rendering component which will attach a leaf node to the cocos2d scene graph. */ + export class _RendererUnderSG extends _SGComponent { + } + /** The base class for all rendering component in scene graph. + + You should override: + - _createSgNode + - _initSgNode */ + export class _SGComponent extends Component { + } + /** !#en + The Scrollbar control allows the user to scroll an image or other view that is too large to see completely + !#zh 滚动条组件 */ + export class Scrollbar extends Component { + /** !#en The "handle" part of the scrollbar. + !#zh 作为当前滚动区域位置显示的滑块 Sprite。 */ + handle : cc.Sprite; + /** !#en The direction of scrollbar. + !#zh ScrollBar 的滚动方向。 */ + direction : Scrollbar.Direction; + /** !#en Whehter enable auto hide or not. + !#zh 是否在没有滚动动作时自动隐藏 ScrollBar。 */ + enableAutoHide : boolean; + /** !#en + The time to hide scrollbar when scroll finished. + Note: This value is only useful when enableAutoHide is true. + !#zh + 没有滚动动作后经过多久会自动隐藏。 + 注意:只要当 “enableAutoHide” 为 true 时,才有效。 */ + autoHideTime : number; + } + /** !#en + Layout container for a view hierarchy that can be scrolled by the user, + allowing it to be larger than the physical display. + + !#zh + 滚动视图组件 */ + export class ScrollView extends Component { + /** !#en This is a reference to the UI element to be scrolled. + !#zh 可滚动展示内容的节点。 */ + content : Node; + /** !#en Enable horizontal scroll. + !#zh 是否开启水平滚动。 */ + horizontal : boolean; + /** !#en Enable vertical scroll. + !#zh 是否开启垂直滚动。 */ + vertical : boolean; + /** !#en When inertia is set, the content will continue to move when touch ended. + !#zh 是否开启滚动惯性。 */ + inertia : boolean; + /** !#en + It determines how quickly the content stop moving. A value of 1 will stop the movement immediately. + A value of 0 will never stop the movement until it reaches to the boundary of scrollview. + !#zh + 开启惯性后,在用户停止触摸后滚动多快停止,0表示永不停止,1表示立刻停止。 */ + brake : number; + /** !#en When elastic is set, the content will be bounce back when move out of boundary. + !#zh 是否允许滚动内容超过边界,并在停止触摸后回弹。 */ + elastic : boolean; + /** !#en The elapse time of bouncing back. A value of 0 will bounce back immediately. + !#zh 回弹持续的时间,0 表示将立即反弹。 */ + bounceDuration : number; + /** !#en The horizontal scrollbar reference. + !#zh 水平滚动的 ScrollBar。 */ + horizontalScrollBar : Scrollbar; + /** !#en The vertical scrollbar reference. + !#zh 垂直滚动的 ScrollBar。 */ + verticalScrollBar : Scrollbar; + /** !#en Scrollview events callback + !#zh 滚动视图的事件回调函数 */ + scrollEvents : Component.EventHandler[]; + /** !#en Scroll the content to the bottom boundary of ScrollView. + !#zh 视图内容将在规定时间内滚动到视图底部。 + @param timeInSecond Scroll time in second, if you don't pass timeInSecond, + the content will jump to the bottom boundary immediately. + @param attenuated Whether the scroll acceleration attenuated, default is true. + + @example + ```js + // Scroll to the bottom of the view. + scrollView.scrollToBottom(0.1); + ``` + */ + scrollToBottom(timeInSecond? : number, attenuated? : boolean) : void; + /** !#en Scroll the content to the top boundary of ScrollView. + !#zh 视图内容将在规定时间内滚动到视图顶部。 + @param timeInSecond Scroll time in second, if you don't pass timeInSecond, + the content will jump to the top boundary immediately. + @param attenuated Whether the scroll acceleration attenuated, default is true. + + @example + ```js + // Scroll to the top of the view. + scrollView.scrollToTop(0.1); + ``` + */ + scrollToTop(timeInSecond? : number, attenuated? : boolean) : void; + /** !#en Scroll the content to the left boundary of ScrollView. + !#zh 视图内容将在规定时间内滚动到视图左边。 + @param timeInSecond Scroll time in second, if you don't pass timeInSecond, + the content will jump to the left boundary immediately. + @param attenuated Whether the scroll acceleration attenuated, default is true. + + @example + ```js + // Scroll to the left of the view. + scrollView.scrollToLeft(0.1); + ``` + */ + scrollToLeft(timeInSecond? : number, attenuated? : boolean) : void; + /** !#en Scroll the content to the right boundary of ScrollView. + !#zh 视图内容将在规定时间内滚动到视图右边。 + @param timeInSecond Scroll time in second, if you don't pass timeInSecond, + the content will jump to the right boundary immediately. + @param attenuated Whether the scroll acceleration attenuated, default is true. + + @example + ```js + // Scroll to the right of the view. + scrollView.scrollToRight(0.1); + ``` + */ + scrollToRight(timeInSecond? : number, attenuated? : boolean) : void; + /** !#en Scroll the content to the top left boundary of ScrollView. + !#zh 视图内容将在规定时间内滚动到视图左上角。 + @param timeInSecond Scroll time in second, if you don't pass timeInSecond, + the content will jump to the top left boundary immediately. + @param attenuated Whether the scroll acceleration attenuated, default is true. + + @example + ```js + // Scroll to the upper left corner of the view. + scrollView.scrollToTopLeft(0.1); + ``` + */ + scrollToTopLeft(timeInSecond? : number, attenuated? : boolean) : void; + /** !#en Scroll the content to the top right boundary of ScrollView. + !#zh 视图内容将在规定时间内滚动到视图右上角。 + @param timeInSecond Scroll time in second, if you don't pass timeInSecond, + the content will jump to the top right boundary immediately. + @param attenuated Whether the scroll acceleration attenuated, default is true. + + @example + ```js + // Scroll to the top right corner of the view. + scrollView.scrollToTopRight(0.1); + ``` + */ + scrollToTopRight(timeInSecond? : number, attenuated? : boolean) : void; + /** !#en Scroll the content to the bottom left boundary of ScrollView. + !#zh 视图内容将在规定时间内滚动到视图左下角。 + @param timeInSecond Scroll time in second, if you don't pass timeInSecond, + the content will jump to the bottom left boundary immediately. + @param attenuated Whether the scroll acceleration attenuated, default is true. + + @example + ```js + // Scroll to the lower left corner of the view. + scrollView.scrollToBottomLeft(0.1); + ``` + */ + scrollToBottomLeft(timeInSecond? : number, attenuated? : boolean) : void; + /** !#en Scroll the content to the bottom right boundary of ScrollView. + !#zh 视图内容将在规定时间内滚动到视图右下角。 + @param timeInSecond Scroll time in second, if you don't pass timeInSecond, + the content will jump to the bottom right boundary immediately. + @param attenuated Whether the scroll acceleration attenuated, default is true. + + @example + ```js + // Scroll to the lower right corner of the view. + scrollView.scrollToBottomRight(0.1); + ``` + */ + scrollToBottomRight(timeInSecond? : number, attenuated? : boolean) : void; + /** !#en Scroll with an offset related to the ScrollView's top left origin, if timeInSecond is omitted, then it will jump to the + specific offset immediately. + !#zh 视图内容在规定时间内将滚动到 ScrollView 相对左上角原点的偏移位置, 如果 timeInSecond参数不传,则立即滚动到指定偏移位置。 + @param offset A Vec2, the value of which each axis between 0 and maxScrollOffset + @param timeInSecond Scroll time in second, if you don't pass timeInSecond, + the content will jump to the specific offset of ScrollView immediately. + @param attenuated Whether the scroll acceleration attenuated, default is true. + + @example + ```js + // Scroll to middle position in 0.1 second in x-axis + var maxScrollOffset = this.getMaxScrollOffset(); + scrollView.scrollToOffset(cc.p(maxScrollOffset.x / 2, 0), 0.1); + ``` + */ + scrollToOffset(offset : Vec2, timeInSecond? : number, attenuated? : boolean) : void; + /** !#en Get the positive offset value corresponds to the content's top left boundary. + !#zh 获取滚动视图相对于左上角原点的当前滚动偏移 + */ + getScrollOffset() : Vec2; + /** !#en Get the maximize available scroll offset + !#zh 获取滚动视图最大可以滚动的偏移量 + */ + getMaxScrollOffset() : Vec2; + /** !#en Scroll the content to the horizontal percent position of ScrollView. + !#zh 视图内容在规定时间内将滚动到 ScrollView 水平方向的百分比位置上。 + @param percent A value between 0 and 1. + @param timeInSecond Scroll time in second, if you don't pass timeInSecond, + the content will jump to the horizontal percent position of ScrollView immediately. + @param attenuated Whether the scroll acceleration attenuated, default is true. + + @example + ```js + // Scroll to middle position. + scrollView.scrollToBottomRight(0.5, 0.1); + ``` + */ + scrollToPercentHorizontal(percent : number, timeInSecond? : number, attenuated? : boolean) : void; + /** !#en Scroll the content to the percent position of ScrollView in any direction. + !#zh 视图内容在规定时间内进行垂直方向和水平方向的滚动,并且滚动到指定百分比位置上。 + @param anchor A point which will be clamp between cc.p(0,0) and cc.p(1,1). + @param timeInSecond Scroll time in second, if you don't pass timeInSecond, + the content will jump to the percent position of ScrollView immediately. + @param attenuated Whether the scroll acceleration attenuated, default is true. + + @example + ```js + // Vertical scroll to the bottom of the view. + scrollView.scrollTo(cc.p(0, 1), 0.1); + + // Horizontal scroll to view right. + scrollView.scrollTo(cc.p(1, 0), 0.1); + ``` + */ + scrollTo(anchor : Vec2, timeInSecond? : number, attenuated? : boolean) : void; + /** !#en Scroll the content to the vertical percent position of ScrollView. + !#zh 视图内容在规定时间内滚动到 ScrollView 垂直方向的百分比位置上。 + @param percent A value between 0 and 1. + @param timeInSecond Scroll time in second, if you don't pass timeInSecond, + the content will jump to the vertical percent position of ScrollView immediately. + @param attenuated Whether the scroll acceleration attenuated, default is true. + // Scroll to middle position. + scrollView.scrollToPercentVertical(0.5, 0.1); + */ + scrollToPercentVertical(percent : number, timeInSecond? : number, attenuated? : boolean) : void; + /** !#en Modify the content position. + !#zh 设置当前视图内容的坐标点。 + @param position The position in content's parent space. + */ + setContentPosition(position : Vec2) : void; + /** !#en Query the content's position in its parent space. + !#zh 获取当前视图内容的坐标点。 + */ + getContentPosition() : Position; + } + /** !#en Renders a sprite in the scene. + !#zh 该组件用于在场景中渲染精灵。 */ + export class Sprite extends _RendererUnderSG { + /** !#en The sprite frame of the sprite. + !#zh 精灵的精灵帧 */ + spriteFrame : SpriteFrame; + /** !#en The sprite render type. + !#zh 精灵渲染类型 */ + type : Sprite.SpriteType; + /** !#en + The fill type, This will only have any effect if the "type" is set to “cc.Sprite.Type.FILLED”. + !#zh + 精灵填充类型,仅渲染类型设置为 cc.Sprite.SpriteType.FILLED 时有效。 */ + fillType : Sprite.FillType; + /** !#en + The fill Center, This will only have any effect if the "type" is set to “cc.Sprite.Type.FILLED”. + !#zh + 填充中心点,仅渲染类型设置为 cc.Sprite.SpriteType.FILLED 时有效。 */ + fillCenter : Vec2; + /** !#en + The fill Start, This will only have any effect if the "type" is set to “cc.Sprite.Type.FILLED”. + !#zh + 填充起始点,仅渲染类型设置为 cc.Sprite.SpriteType.FILLED 时有效。 */ + fillStart : number; + /** !#en + The fill Range, This will only have any effect if the "type" is set to “cc.Sprite.Type.FILLED”. + !#zh + 填充范围,仅渲染类型设置为 cc.Sprite.SpriteType.FILLED 时有效。 */ + fillRange : number; + /** !#en specify the frame is trimmed or not. + !#zh 是否使用裁剪模式 */ + trim : boolean; + /** !#en specify the source Blend Factor. + !#zh 指定原图的混合模式 */ + srcBlendFactor : BlendFactor; + /** !#en specify the destination Blend Factor. + !#zh 指定目标的混合模式 */ + dstBlendFactor : BlendFactor; + /** !#en specify the size tracing mode. + !#zh 精灵尺寸调整模式 */ + sizeMode : Sprite.SizeMode; + /** !#en Sets whether the sprite is visible or not. + !#zh 设置精灵是否可见 + + @example + ```js + sprite.setVisible(false); + ``` + */ + setVisible(visible : boolean) : void; + /** !#en Query the sprite's original size. + !#zh 获取精灵原始大小 + + @example + ```js + var originalSize = sprite.getOriginalSize(); + cc.log("Original Size:" + originalSize); + ``` + */ + getOriginalSize() : Size; + /** !#en Change the left sprite's cap inset. + !#zh 设置精灵左边框-用于九宫格。 + @param insetLeft The values to use for the cap inset. + + @example + ```js + sprite.setInsetLeft(5); + ``` + */ + setInsetLeft(insetLeft : number) : void; + /** !#en Query the left sprite's cap inset. + !#zh 获取精灵左边框 + + @example + ```js + var insetLeft = sprite.getInsetLeft(); + cc.log("Inset Left:" + insetLeft); + ``` + */ + getInsetLeft() : number; + /** !#en Change the top sprite's cap inset. + !#zh 设置精灵上边框-用于九宫格。 + @param insetTop The values to use for the cap inset. + + @example + ```js + sprite.setInsetTop(5); + ``` + */ + setInsetTop(insetTop : number) : void; + /** !#en Query the top sprite's cap inset. + !#zh 获取精灵上边框。 + + @example + ```js + var insetTop = sprite.getInsetTop(); + cc.log("Inset Top:" + insetTop); + ``` + */ + getInsetTop() : number; + /** !#en Change the right sprite's cap inset. + !#zh 设置精灵右边框-用于九宫格。 + @param insetRight The values to use for the cap inset. + + @example + ```js + sprite.setInsetRight(5); + ``` + */ + setInsetRight(insetRight : number) : void; + /** !#en Query the right sprite's cap inset. + !#zh 获取精灵右边框。 + + @example + ```js + var insetRight = sprite.getInsetRight(); + cc.log("Inset Right:" + insetRight); + ``` + */ + getInsetRight() : number; + /** !#en Change the bottom sprite's cap inset. + !#zh 设置精灵下边框-用于九宫格。 + @param bottomInset The values to use for the cap inset. + + @example + ```js + sprite.setInsetBottom(5); + ``` + */ + setInsetBottom(bottomInset : number) : void; + /** !#en Query the bottom sprite's cap inset. + !#zh 获取精灵下边框。 + + @example + ```js + var insetBottom = sprite.getInsetBottom(); + cc.log("Inset Bottom:" + insetBottom); + ``` + */ + getInsetBottom() : number; + } + /** !#en A distortion used to change the rendering of simple sprite.If will take effect after sprite component is added. + !#zh 扭曲效果组件,用于改变SIMPLE类型sprite的渲染,只有当sprite组件已经添加后,才能起作用. */ + export class SpriteDistortion extends Component { + /** !#en Change the UV offset for distortion rendering. + !#zh 在渲染时改变UV的整体偏移. */ + offset : Vec2; + /** !#en Change the UV scale for distortion rendering. + !#zh 在渲染时改变UV的寻址系数 */ + tiling : Vec2; + } + /** !#en cc.VideoPlayer is a component for playing videos, you can use it for showing videos in your game. + !#zh Video 组件,用于在游戏中播放视频 */ + export class VideoPlayer extends _RendererUnderSG { + /** !#en The resource type of videoplayer, REMOTE for remote url and LOCAL for local file path. + !#zh 视频来源:REMOTE 表示远程视频 URL,LOCAL 表示本地视频地址。 */ + resourceType : VideoPlayer.ResourceType; + /** !#en The remote URL of video. + !#zh 远程视频的 URL */ + remoteURL : string; + /** !#en The local video full path. + !#zh 本地视频的 URL */ + video : string; + /** !#en The current time when video start to play. + !#zh 从当前时间点开始播放视频 */ + currentTime : Float; + /** !#en Whether keep the aspect ration of the original video. + !#zh 是否保持视频原来的宽高比 */ + keepAspectRatio : boolean; + /** !#en Whether play video in fullscreen mode. + !#zh 是否全屏播放视频 */ + isFullscreen : boolean; + /** !#en the video player's callback, it will be triggered when certain event occurs, like: playing, paused, stopped and completed. + !#zh 视频播放回调函数,该回调函数会在特定情况被触发,比如播放中,暂时,停止和完成播放。 */ + videoPlayerEvent : cc.Component.EventHandler[]; + } + /** !#en + Stores and manipulate the anchoring based on its parent. + Widget are used for GUI but can also be used for other things. + !#zh + Widget 组件,用于设置和适配其相对于父节点的边距,Widget 通常被用于 UI 界面,也可以用于其他地方。 */ + export class Widget extends Component { + /** !#en Whether to align the top. + !#zh 是否对齐上边。 */ + isAlignTop : boolean; + /** !#en + Vertically aligns the midpoint, This will open the other vertical alignment options cancel. + !#zh + 是否垂直方向对齐中点,开启此项会将垂直方向其他对齐选项取消。 */ + isAlignVerticalCenter : boolean; + /** !#en Whether to align the bottom. + !#zh 是否对齐下边。 */ + isAlignBottom : boolean; + /** !#en Whether to align the left. + !#zh 是否对齐左边 */ + isAlignLeft : boolean; + /** !#en + Horizontal aligns the midpoint. This will open the other horizontal alignment options canceled. + !#zh + 是否水平方向对齐中点,开启此选项会将水平方向其他对齐选项取消。 */ + isAlignHorizontalCenter : boolean; + /** !#en Whether to align the right. + !#zh 是否对齐右边。 */ + isAlignRight : boolean; + /** !#en + Whether the stretched horizontally, when enable the left and right alignment will be stretched horizontally, + the width setting is invalid (read only). + !#zh + 当前是否水平拉伸。当同时启用左右对齐时,节点将会被水平拉伸,此时节点的宽度只读。 */ + isStretchWidth : boolean; + /** !#en + Whether the stretched vertically, when enable the left and right alignment will be stretched vertically, + then height setting is invalid (read only) + !#zh + 当前是否垂直拉伸。当同时启用上下对齐时,节点将会被垂直拉伸,此时节点的高度只读。 */ + isStretchHeight : boolean; + /** !#en + The margins between the top of this node and the top of parent node, + the value can be negative, Only available in 'isAlignTop' open. + !#zh + 本节点顶边和父节点顶边的距离,可填写负值,只有在 isAlignTop 开启时才有作用。 */ + top : number; + /** !#en + The margins between the bottom of this node and the bottom of parent node, + the value can be negative, Only available in 'isAlignBottom' open. + !#zh + 本节点底边和父节点底边的距离,可填写负值,只有在 isAlignBottom 开启时才有作用。 */ + bottom : number; + /** !#en + The margins between the left of this node and the left of parent node, + the value can be negative, Only available in 'isAlignLeft' open. + !#zh + 本节点左边和父节点左边的距离,可填写负值,只有在 isAlignLeft 开启时才有作用。 */ + left : number; + /** !#en + The margins between the right of this node and the right of parent node, + the value can be negative, Only available in 'isAlignRight' open. + !#zh + 本节点右边和父节点右边的距离,可填写负值,只有在 isAlignRight 开启时才有作用。 */ + right : number; + /** !#en + If true, top is pixel margin, otherwise is percentage (0 - 1) margin relative to the parent's height. + !#zh + 如果为 true,"top" 将会以像素作为边距,否则将会以相对父物体高度的百分比(0 到 1)作为边距。 */ + isAbsoluteTop : boolean; + /** !#en + If true, bottom is pixel margin, otherwise is percentage (0 - 1) margin relative to the parent's height. + !#zh + 如果为 true,"bottom" 将会以像素作为边距,否则将会以相对父物体高度的百分比(0 到 1)作为边距。 */ + isAbsoluteBottom : boolean; + /** !#en + If true, left is pixel margin, otherwise is percentage (0 - 1) margin relative to the parent's width. + !#zh + 如果为 true,"left" 将会以像素作为边距,否则将会以相对父物体宽度的百分比(0 到 1)作为边距。 */ + isAbsoluteLeft : boolean; + /** !#en + If true, right is pixel margin, otherwise is percentage (0 - 1) margin relative to the parent's width. + !#zh + 如果为 true,"right" 将会以像素作为边距,否则将会以相对父物体宽度的百分比(0 到 1)作为边距。 */ + isAbsoluteRight : boolean; + /** !#en TODO + !#zh + 开启后仅会在 onEnable 的当帧结束时对齐一次,然后立刻禁用当前组件。 + 这样便于脚本或动画继续控制当前节点。 + 注意:onEnable 时所在的那一帧仍然会进行对齐。 */ + isAlignOnce : boolean; + } + /** !#en + EventTarget is an object to which an event is dispatched when something has occurred. + Entity are the most common event targets, but other objects can be event targets too. + + Event targets are an important part of the Fireball event model. + The event target serves as the focal point for how events flow through the scene graph. + When an event such as a mouse click or a keypress occurs, Fireball dispatches an event object + into the event flow from the root of the hierarchy. The event object then makes its way through + the scene graph until it reaches the event target, at which point it begins its return trip through + the scene graph. This round-trip journey to the event target is conceptually divided into three phases: + - The capture phase comprises the journey from the root to the last node before the event target's node + - The target phase comprises only the event target node + - The bubbling phase comprises any subsequent nodes encountered on the return trip to the root of the tree + See also: http://www.w3.org/TR/DOM-Level-3-Events/#event-flow + + Event targets can implement the following methods: + - _getCapturingTargets + - _getBubblingTargets + + !#zh + 事件目标是事件触发时,分派的事件对象,Node 是最常见的事件目标, + 但是其他对象也可以是事件目标。
*/ + export class EventTarget { + /** !#en + Register an callback of a specific event type on the EventTarget. + This method is merely an alias to addEventListener. + !#zh + 注册事件目标的特定事件类型回调,仅仅是 addEventListener 的别名。 + @param type A string representing the event type to listen for. + @param callback The callback that will be invoked when the event is dispatched. + The callback is ignored if it is a duplicate (the callbacks are unique). + @param target The target to invoke the callback, can be null + @param useCapture When set to true, the capture argument prevents callback + from being invoked when the event's eventPhase attribute value is BUBBLING_PHASE. + When false, callback will NOT be invoked when event's eventPhase attribute value is CAPTURING_PHASE. + Either way, callback will be invoked when event's eventPhase attribute value is AT_TARGET. + + @example + ```js + node.on(cc.Node.EventType.TOUCH_END, function (event) { + cc.log("this is callback"); + }, node); + ``` + */ + on(type : string, callback: (param: Event) => void, target : any, useCapture : boolean) : Function; + /** !#en + Removes the callback previously registered with the same type, callback, target and or useCapture. + This method is merely an alias to removeEventListener. + !#zh + 删除之前与同类型,回调,目标或 useCapture 注册的回调,仅仅是 removeEventListener 的别名。 + @param type A string representing the event type being removed. + @param callback The callback to remove. + @param target The target to invoke the callback, if it's not given, only callback without target will be removed + @param useCapture Specifies whether the callback being removed was registered as a capturing callback or not. + If not specified, useCapture defaults to false. If a callback was registered twice, + one with capture and one without, each must be removed separately. Removal of a capturing callback + does not affect a non-capturing version of the same listener, and vice versa. + + @example + ```js + // register touchEnd eventListener + var touchEnd = node.on(cc.Node.EventType.TOUCH_END, function (event) { + cc.log("this is callback"); + }, node); + // remove touchEnd eventListener + node.off(cc.Node.EventType.TOUCH_END, touchEnd, node); + ``` + */ + off(type : string, callback : Function, target : any, useCapture : boolean) : void; + /** !#en Removes all callbacks previously registered with the same target. + !#zh 删除指定目标上的所有注册回调。 + @param target The target to be searched for all related callbacks + */ + targetOff(target : any) : void; + /** !#en + Register an callback of a specific event type on the EventTarget, + the callback will remove itself after the first time it is triggered. + !#zh + 注册事件目标的特定事件类型回调,回调会在第一时间被触发后删除自身。 + @param type A string representing the event type to listen for. + @param callback The callback that will be invoked when the event is dispatched. + The callback is ignored if it is a duplicate (the callbacks are unique). + @param target The target to invoke the callback, can be null + @param useCapture When set to true, the capture argument prevents callback + from being invoked when the event's eventPhase attribute value is BUBBLING_PHASE. + When false, callback will NOT be invoked when event's eventPhase attribute value is CAPTURING_PHASE. + Either way, callback will be invoked when event's eventPhase attribute value is AT_TARGET. + + @example + ```js + node.once(cc.Node.EventType.TOUCH_END, function (event) { + cc.log("this is callback"); + }, node); + ``` + */ + once(type : string, callback: (param: Event) => void, target : any, useCapture : boolean) : void; + /** !#en + Dispatches an event into the event flow. + The event target is the EventTarget object upon which the dispatchEvent() method is called. + !#zh 分发事件到事件流中。 + @param event The Event object that is dispatched into the event flow + */ + dispatchEvent(event : Event) : void; + /** !#en + Send an event to this object directly, this method will not propagate the event to any other objects. + The event will be created from the supplied message, you can get the "detail" argument from event.detail. + !#zh + 该对象直接发送事件, 这种方法不会对事件传播到任何其他对象。 + @param message the message to send + @param detail whatever argument the message needs + */ + emit(message : string, detail? : any) : void; + } + /** !#en Base class of all kinds of events. + !#zh 包含事件相关信息的对象。 */ + export class Event { + constructor(); + /** + @param type The name of the event (case-sensitive), e.g. "click", "fire", or "submit" + @param bubbles A boolean indicating whether the event bubbles up through the tree or not + */ + Event(type : string, bubbles : boolean) : Event; + /** !#en The name of the event (case-sensitive), e.g. "click", "fire", or "submit". + !#zh 事件类型。 */ + type : string; + /** !#en Indicate whether the event bubbles up through the tree or not. + !#zh 表示该事件是否进行冒泡。 */ + bubbles : boolean; + /** !#en A reference to the target to which the event was originally dispatched. + !#zh 最初事件触发的目标 */ + target : any; + /** !#en A reference to the currently registered target for the event. + !#zh 当前目标 */ + currentTarget : any; + /** !#en + Indicates which phase of the event flow is currently being evaluated. + Returns an integer value represented by 4 constants: + - Event.NONE = 0 + - Event.CAPTURING_PHASE = 1 + - Event.AT_TARGET = 2 + - Event.BUBBLING_PHASE = 3 + The phases are explained in the [section 3.1, Event dispatch and DOM event flow] + (http://www.w3.org/TR/DOM-Level-3-Events/#event-flow), of the DOM Level 3 Events specification. + !#zh 事件阶段 */ + eventPhase : number; + /** !#en Reset the event for being stored in the object pool. + !#zh 重置对象池中存储的事件。 + */ + unuse() : string; + /** !#en Reuse the event for being used again by the object pool. + !#zh 用于对象池再次使用的事件。 + */ + reuse() : string; + /** !#en Stops propagation for current event. + !#zh 停止传递当前事件。 + */ + stopPropagation() : void; + /** !#en Stops propagation for current event immediately, + the event won't even be dispatched to the listeners attached in the current target. + !#zh 立即停止当前事件的传递,事件甚至不会被分派到所连接的当前目标。 + */ + stopPropagationImmediate() : void; + /** !#en Checks whether the event has been stopped. + !#zh 检查该事件是否已经停止传递. + */ + isStopped() : boolean; + /** !#en +

+ Gets current target of the event
+ note: It only be available when the event listener is associated with node.
+ It returns 0 when the listener is associated with fixed priority. +

+ !#zh 获取当前目标节点 + */ + getCurrentTarget() : Node; + /** !#en Gets the event type. + !#zh 获取事件类型 + */ + getType() : string; + /** !#en Code for event without type. + !#zh 没有类型的事件 */ + NO_TYPE : string; + /** !#en Events not currently dispatched are in this phase + !#zh 尚未派发事件阶段 */ + NONE : number; + /** !#en + The capturing phase comprises the journey from the root to the last node before the event target's node + see http://www.w3.org/TR/DOM-Level-3-Events/#event-flow + !#zh 捕获阶段,包括事件目标节点之前从根节点到最后一个节点的过程。 */ + CAPTURING_PHASE : number; + /** !#en + The target phase comprises only the event target node + see http://www.w3.org/TR/DOM-Level-3-Events/#event-flow + !#zh 目标阶段仅包括事件目标节点。 */ + AT_TARGET : number; + /** !#en + The bubbling phase comprises any subsequent nodes encountered on the return trip to the root of the hierarchy + see http://www.w3.org/TR/DOM-Level-3-Events/#event-flow + !#zh 冒泡阶段, 包括回程遇到到层次根节点的任何后续节点。 */ + BUBBLING_PHASE : number; + } + /** !#en +

+ The base class of event listener.
+ If you need custom listener which with different callback, you need to inherit this class.
+ For instance, you could refer to EventListenerAcceleration, EventListenerKeyboard,
+ EventListenerTouchOneByOne, EventListenerCustom. +

+ + !#zh + 封装用户的事件处理逻辑。 + 注意:这是一个抽象类,开发者不应该直接实例化这个类,请参考 {{#crossLink "EventListener/create:method"}}cc.EventListener.create{{/crossLink}}。 */ + export class EventListener { + /** Constructor + */ + EventListener(type : number, listenerID : number, callback : number) : EventListner; + /** !#en Checks whether the listener is available. + !#zh 检测监听器是否有效 + */ + checkAvailable() : boolean; + /** !#en Clones the listener, its subclasses have to override this method. + !#zh 克隆监听器,它的子类必须重写此方法。 + */ + clone() : EventListener; + /** !#en Enables or disables the listener + !#zh 启用或禁用监听器。 + */ + setEnabled(enabled : boolean) : void; + /** !#en Checks whether the listener is enabled + !#zh 检查监听器是否可用。 + */ + isEnabled() : boolean; + /** !#en The type code of unknown event listener. + !#zh 未知的事件监听器类型 */ + UNKNOWN : number; + /** !#en The type code of keyboard event listener. + !#zh 键盘事件监听器类型 */ + KEYBOARD : number; + /** !#en The type code of focus event listener. + !#zh 加速器事件监听器类型 */ + ACCELERATION : number; + /** !#en + Create a EventListener object with configuration including the event type, handlers and other parameters. + In handlers, this refer to the event listener object itself. + You can also pass custom parameters in the configuration object, + all custom parameters will be polyfilled into the event listener object and can be accessed in handlers. + !#zh 通过指定不同的 Event 对象来设置想要创建的事件监听器。 + @param argObj a json object + + @example + ```js + // Create KEYBOARD EventListener. + cc.EventListener.create({ + event: cc.EventListener.KEYBOARD, + onKeyPressed: function (keyCode, event) { + cc.log('pressed key: ' + keyCode); + }, + onKeyReleased: function (keyCode, event) { + cc.log('released key: ' + keyCode); + } + }); + + // Create ACCELERATION EventListener. + cc.EventListener.create({ + event: cc.EventListener.ACCELERATION, + callback: function (acc, event) { + cc.log('acc: ' + keyCode); + } + }); + ``` + */ + create(argObj : any) : EventListener; + } + /** !#en +

+ cc.eventManager is a singleton object which manages event listener subscriptions and event dispatching.
+
+ The EventListener list is managed in such way so that event listeners can be added and removed
+ while events are being dispatched. +

+ !#zh + 事件管理器,它主要管理事件监听器注册和派发系统事件。 + 原始设计中,它支持鼠标,触摸,键盘,陀螺仪和自定义事件。 + 在 Creator 的设计中,鼠标,触摸和自定义事件的监听和派发请参考 http://cocos.com/docs/creator/scripting/events.html。 */ + export class eventManager { + /** !#en Pauses all listeners which are associated the specified target. + !#zh 暂停传入的 node 相关的所有监听器的事件响应。 + */ + pauseTarget(node : Node, recursive : boolean) : void; + /** !#en Resumes all listeners which are associated the specified target. + !#zh 恢复传入的 node 相关的所有监听器的事件响应。 + */ + resumeTarget(node : Node, recursive : boolean) : void; + /** !#en +

+ Adds a event listener for a specified event.
+ if the parameter "nodeOrPriority" is a node, + it means to add a event listener for a specified event with the priority of scene graph.
+ if the parameter "nodeOrPriority" is a Number, + it means to add a event listener for a specified event with the fixed priority.
+

+ !#zh + 将事件监听器添加到事件管理器中。
+ 如果参数 “nodeOrPriority” 是节点,优先级由 node 的渲染顺序决定,显示在上层的节点将优先收到事件。
+ 如果参数 “nodeOrPriority” 是数字,优先级则固定为该参数的数值,数字越小,优先级越高。
+ @param listener The listener of a specified event or a object of some event parameters. + @param nodeOrPriority The priority of the listener is based on the draw order of this node or fixedPriority The fixed priority of the listener. + */ + addListener(listener : EventListener|any, nodeOrPriority : Node|number) : EventListener; + /** !#en Remove a listener. + !#zh 移除一个已添加的监听器。 + @param listener an event listener or a registered node target + + @example + ```js + + // 1. remove eventManager add Listener; + var mouseListener1 = cc.eventManager.addListener({ + event: cc.EventListener.MOUSE, + onMouseDown: function(keyCode, event){ }, + onMouseUp: function(keyCode, event){ }, + onMouseMove: function () { }, + onMouseScroll: function () { } + }, node); + + cc.eventManager.removeListener(mouseListener1); + + // 2. remove eventListener create Listener; + var mouseListener2 = cc.EventListener.create({ + event: cc.EventListener.MOUSE, + onMouseDown: function(keyCode, event){ }, + onMouseUp: function(keyCode, event){ }, + onMouseMove: function () { }, + onMouseScroll: function () { } + }); + + cc.eventManager.removeListener(mouseListener2); + + ``` + */ + removeListener(listener: (type: number, listenerID: number, callback: number) => void) : void; + /** !#en Removes all listeners with the same event listener type or removes all listeners of a node. + !#zh + 移除注册到 eventManager 中指定类型的所有事件监听器。
+ 1. 如果传入的第一个参数类型是 Node,那么事件管理器将移除与该对象相关的所有事件监听器。 + (如果第二参数 recursive 是 true 的话,就会连同该对象的子控件上所有的事件监听器也一并移除)
+ 2. 如果传入的第一个参数类型是 Number(该类型 EventListener 中定义的事件类型), + 那么事件管理器将移除该类型的所有事件监听器。
+ + 下列是目前存在监听器类型:
+ cc.EventListener.UNKNOWN
+ cc.EventListener.KEYBOARD
+ cc.EventListener.ACCELERATION,
+ @param listenerType listenerType or a node + */ + removeListeners(listenerType : number|Node, recursive : boolean) : void; + /** !#en Removes all listeners + !#zh 移除所有事件监听器。 + */ + removeAllListeners() : void; + /** !#en Sets listener's priority with fixed value. + !#zh 设置 FixedPriority 类型监听器的优先级。 + @param listener Constructor + */ + setPriority(listener: (type: number, listenerID: number, callback: number) => void, fixedPriority : number) : void; + /** !#en Whether to enable dispatching events + !#zh 启用或禁用事件管理器,禁用后不会分发任何事件。 + */ + setEnabled(enabled : boolean) : void; + /** !#en Checks whether dispatching events is enabled + !#zh 检测事件管理器是否启用。 + */ + isEnabled() : boolean; + } + /** !#en The touch event class + !#zh 封装了触摸相关的信息。 */ + export class Touch { + /** !#en Returns the current touch location in OpenGL coordinates.、 + !#zh 获取当前触点位置。 + */ + getLocation() : Vec2; + /** !#en Returns X axis location value. + !#zh 获取当前触点 X 轴位置。 + */ + getLocationX() : number; + /** !#en Returns Y axis location value. + !#zh 获取当前触点 Y 轴位置。 + */ + getLocationY() : number; + /** !#en Returns the previous touch location in OpenGL coordinates. + !#zh 获取触点在上一次事件时的位置对象,对象包含 x 和 y 属性。 + */ + getPreviousLocation() : Vec2; + /** !#en Returns the start touch location in OpenGL coordinates. + !#zh 获获取触点落下时的位置对象,对象包含 x 和 y 属性。 + */ + getStartLocation() : Vec2; + /** !#en Returns the delta distance from the previous touche to the current one in screen coordinates. + !#zh 获取触点距离上一次事件移动的距离对象,对象包含 x 和 y 属性。 + */ + getDelta() : Vec2; + /** !#en Returns the current touch location in screen coordinates. + !#zh 获取当前事件在游戏窗口内的坐标位置对象,对象包含 x 和 y 属性。 + */ + getLocationInView() : Vec2; + /** !#en Returns the previous touch location in screen coordinates. + !#zh 获取触点在上一次事件时在游戏窗口中的位置对象,对象包含 x 和 y 属性。 + */ + getPreviousLocationInView() : Vec2; + /** !#en Returns the start touch location in screen coordinates. + !#zh 获取触点落下时在游戏窗口中的位置对象,对象包含 x 和 y 属性。 + */ + getStartLocationInView() : Vec2; + /** !#en Returns the id of cc.Touch. + !#zh 触点的标识 ID,可以用来在多点触摸中跟踪触点。 + */ + getID() : number; + /** !#en Sets information to touch. + !#zh 设置触摸相关的信息。用于监控触摸事件。 + */ + setTouchInfo(id : number, x : number, y : number) : void; + } + /** Loader for resource loading process. It's a singleton object. */ + export class loader extends Pipeline { + /** The downloader in cc.loader's pipeline, it's by default the first pipe. + It's used to download files with several handlers: pure text, image, script, audio, font, uuid. + You can add your own download function with addDownloadHandlers */ + downloader : any; + /** The downloader in cc.loader's pipeline, it's by default the second pipe. + It's used to parse downloaded content with several handlers: JSON, image, plist, fnt, uuid. + You can add your own download function with addLoadHandlers */ + loader : any; + /** Add custom supported types handler or modify existing type handler for download process. + @param extMap Custom supported types with corresponded handler + + @example + ```js + cc.loader.addDownloadHandlers({ + // This will match all url with `.scene` extension or all url with `scene` type + 'scene' : function (url, callback) {} + }); + ``` + */ + addDownloadHandlers(extMap : any) : void; + /** Add custom supported types handler or modify existing type handler for load process. + @param extMap Custom supported types with corresponded handler + + @example + ```js + cc.loader.addLoadHandlers({ + // This will match all url with `.scene` extension or all url with `scene` type + 'scene' : function (url, callback) {} + }); + ``` + */ + addLoadHandlers(extMap : any) : void; + /** Load resources with a progression callback and a complete callback. + The progression callback is the same as Pipeline's {{#crossLink "Pipeline/onProgress:method"}}onProgress{{/crossLink}} + The complete callback is almost the same as Pipeline's {{#crossLink "Pipeline/onComplete:method"}}onComplete{{/crossLink}} + The only difference is when user pass a single url as resources, the complete callback will set its result directly as the second parameter. + @param resources Url list in an array + @param progressCallback Callback invoked when progression change + @param completeCallback Callback invoked when all resources loaded + + @example + ```js + cc.loader.load('a.png', function (err, tex) { + cc.log('Result should be a texture: ' + (tex instanceof cc.Texture2D)); + }); + + cc.loader.load('http://example.com/a.png', function (err, tex) { + cc.log('Should load a texture from external url: ' + (tex instanceof cc.Texture2D)); + }); + + cc.loader.load({id: 'http://example.com/getImageREST?file=a.png', type: 'png'}, function (err, tex) { + cc.log('Should load a texture from RESTful API by specify the type: ' + (tex instanceof cc.Texture2D)); + }); + + cc.loader.load(['a.png', 'b.json'], function (errors, results) { + if (errors) { + for (var i = 0; i < errors.length; i++) { + cc.log('Error url [' + errors[i] + ']: ' + results.getError(errors[i])); + } + } + var aTex = results.getContent('a.png'); + var bJsonObj = results.getContent('b.json'); + }); + ``` + */ + load(resources : string|any[], progressCallback? : Function, completeCallback : Function) : void; + /** Load resources from the "resources" folder inside the "assets" folder of your project.
+
+ Note: All asset urls in Creator use forward slashes, urls using backslashes will not work. + @param url Url of the target resource. + The url is relative to the "resources" folder, extensions must be omitted. + @param type Only asset of type will be loaded if this argument is supplied. + @param completeCallback Callback invoked when the resource loaded. + + @example + ```js + // load the prefab (project/assets/resources/misc/character/cocos) from resources folder + cc.loader.loadRes('misc/character/cocos', function (err, prefab) { + if (err) { + cc.error(err.message || err); + return; + } + cc.log('Result should be a prefab: ' + (prefab instanceof cc.Prefab)); + }); + + // load the sprite frame (project/assets/resources/imgs/cocos.png/cocos) from resources folder + cc.loader.loadRes('imgs/cocos', cc.SpriteFrame, function (err, spriteFrame) { + if (err) { + cc.error(err.message || err); + return; + } + cc.log('Result should be a sprite frame: ' + (spriteFrame instanceof cc.SpriteFrame)); + }); + ``` + */ + loadRes(url : string, type? : Function, completeCallback: (error: Error, resource: any) => void) : void; + /** Load all assets in a folder inside the "assets/resources" folder of your project.
+
+ Note: All asset urls in Creator use forward slashes, urls using backslashes will not work. + @param url Url of the target folder. + The url is relative to the "resources" folder, extensions must be omitted. + @param type Only asset of type will be loaded if this argument is supplied. + @param completeCallback A callback which is called when all assets have been loaded, or an error occurs. + + @example + ```js + // load the texture (resources/imgs/cocos.png) and sprite frame (resources/imgs/cocos.png/cocos) + cc.loader.loadResAll('imgs/cocos', function (err, assets) { + if (err) { + cc.error(err); + return; + } + var texture = assets[0]; + var spriteFrame = assets[1]; + }); + + // load all textures in "resources/imgs/" + cc.loader.loadResAll('imgs', cc.Texture2D, function (err, textures) { + if (err) { + cc.error(err); + return; + } + var texture1 = textures[0]; + var texture2 = textures[1]; + }); + ``` + */ + loadResAll(url : string, type? : Function, completeCallback: (error: Error, assets: any[]) => void) : void; + /** Get resource data by id.
+ When you load resources with {{#crossLink "loader/load:method"}}{{/crossLink}} or {{#crossLink "loader/loadRes:method"}}{{/crossLink}}, + the url will be the unique identity of the resource. + After loaded, you can acquire them by passing the url to this API. + */ + getRes(url : string) : any; + /** Returns an item in pipeline. + */ + getItem() : LoadingItem; + /** Release the cache of resource by url. + */ + release(url : string) : void; + /** Release the loaded cache of asset. + */ + releaseAsset(asset : Asset) : void; + /** Release the cache of resource which loaded by {{#crossLink "loader/loadRes:method"}}{{/crossLink}}. + */ + releaseRes(url : string) : void; + /** Resource cache of all resources. + */ + releaseAll() : void; + } + /** !#en + LoadingItems is the manager of items in pipeline.
+ It hold a map of items, each entry in the map is a url to object key value pair.
+ Each item always contains the following property:
+ - id: The identification of the item, usually it's identical to url
+ - url: The url
+ - type: The type, it's the extension name of the url by default, could be specified manually too.
+ - error: The error happened in pipeline will be stored in this property.
+ - content: The content processed by the pipeline, the final result will also be stored in this property.
+ - complete: The flag indicate whether the item is completed by the pipeline.
+ - states: An object stores the states of each pipe the item go through, the state can be: Pipeline.ItemState.WORKING | Pipeline.ItemState.ERROR | Pipeline.ItemState.COMPLETE
+
+ Item can hold other custom properties. + !#zh + LoadingItems 负责管理 pipeline 中的对象
+ 它有一个 map 属性用来存放加载项,在 map 对象中已 url 为 key 值。
+ 每个对象都会包含下列属性:
+ - id:该对象的标识,通常与 url 相同。
+ - url:路径
+ - type: 类型,它这是默认的 URL 的扩展名,可以手动指定赋值。
+ - error:pipeline 中发生的错误将被保存在这个属性中。
+ - content: pipeline 中处理的内容时,最终的结果也将被存储在这个属性中。
+ - complete:该标志表明该对象是否通过 pipeline 完成。
+ - states:该对象存储每个管道中对象经历的状态,状态可以是 Pipeline.ItemState.WORKING | Pipeline.ItemState.ERROR | Pipeline.ItemState.COMPLETE
+
+ 对象可容纳其他自定义属性。 */ + export class LoadingItems extends CallbacksInvoker { + /** !#en The map of all items. + !#zh 存储所有加载项的对象。 */ + map : any; + /** !#en The map of completed items. + !#zh 存储已经完成的加载项。 */ + completed : any; + /** !#en Total count of all items. + !#zh 所有加载项的总数。 */ + totalCount : number; + /** !#en Total count of completed items. + !#zh 所有完成加载项的总数。 */ + completedCount : number; + /** !#en Check whether all items are completed. + !#zh 检查是否所有加载项都已经完成。 + */ + isCompleted() : boolean; + /** !#en Check whether an item is completed. + !#zh 通过 id 检查指定加载项是否已经加载完成。 + @param id The item's id. + */ + isItemCompleted(id : string) : boolean; + /** !#en Check whether an item exists. + !#zh 通过 id 检查加载项是否存在。 + @param id The item's id. + */ + exists(id : string) : boolean; + /** !#en Returns the content of an internal item. + !#zh 通过 id 获取指定对象的内容。 + @param id The item's id. + */ + getContent(id : string) : any; + /** !#en Returns the error of an internal item. + !#zh 通过 id 获取指定对象的错误信息。 + @param id The item's id. + */ + getError(id : string) : any; + /** !#en Add a listener for an item, the callback will be invoked when the item is completed. + !#zh 监听加载项(通过 key 指定)的完成事件。 + @param callback can be null + @param target can be null + */ + addListener(key : string, callback : Function, target : any) : boolean; + /** !#en + Check if the specified key has any registered callback.
+ If a callback is also specified, it will only return true if the callback is registered. + !#zh + 检查指定的加载项是否有完成事件监听器。
+ 如果同时还指定了一个回调方法,并且回调有注册,它只会返回 true。 + */ + hasListener(key : string, callback? : Function, target? : any) : boolean; + /** !#en + Removes a listener.
+ It will only remove when key, callback, target all match correctly. + !#zh + 移除指定加载项已经注册的完成事件监听器。
+ 只会删除 key, callback, target 均匹配的监听器。 + */ + remove(key : string, callback : Function, target : any) : boolean; + /** !#en + Removes all callbacks registered in a certain event + type or all callbacks registered with a certain target. + !#zh 删除指定目标的所有完成事件监听器。 + @param key The event key to be removed or the target to be removed + */ + removeAllListeners(key : string|any) : void; + } + /** !#en + A pipeline describes a sequence of manipulations, each manipulation is called a pipe.
+ It's designed for loading process. so items should be urls, and the url will be the identity of each item during the process.
+ A list of items can flow in the pipeline and it will output the results of all pipes.
+ They flow in the pipeline like water in tubes, they go through pipe by pipe separately.
+ Finally all items will flow out the pipeline and the process is finished. + + !#zh + pipeline 描述了一系列的操作,每个操作都被称为 pipe。
+ 它被设计来做加载过程的流程管理。所以 item 应该是 url,并且该 url 将是在处理中的每个 item 的身份标识。
+ 一个 item 列表可以在 pipeline 中流动,它将输出加载项经过所有 pipe 之后的结果。
+ 它们穿过 pipeline 就像水在管子里流动,将会按顺序流过每个 pipe。
+ 最后当所有加载项都流出 pipeline 时,整个加载流程就结束了。 */ + export class Pipeline { + /** !#en + Constructor, pass an array of pipes to construct a new Pipeline, + the pipes will be chained in the given order.
+ A pipe is an object which must contain an `id` in string and a `handle` function, + the id must be unique in the pipeline.
+ It can also include `async` property to identify whether it's an asynchronous process. + !#zh + 构造函数,通过一系列的 pipe 来构造一个新的 pipeline,pipes 将会在给定的顺序中被锁定。
+ 一个 pipe 就是一个对象,它包含了字符串类型的 ‘id’ 和 ‘handle’ 函数,在 pipeline 中 id 必须是唯一的。
+ 它还可以包括 ‘async’ 属性以确定它是否是一个异步过程。 + + @example + ```js + var pipeline = new Pipeline([ + { + id: 'Downloader', + handle: function (item, callback) {}, + async: true + }, + {id: 'Parser', handle: function (item) {}, async: false} + ]); + ``` + */ + Pipeline(pipes : any[]) : void; + /** !#en + Insert a new pipe at the given index of the pipeline.
+ A pipe must contain an `id` in string and a `handle` function, the id must be unique in the pipeline. + !#zh + 在给定的索引位置插入一个新的 pipe。
+ 一个 pipe 必须包含一个字符串类型的 ‘id’ 和 ‘handle’ 函数,该 id 在 pipeline 必须是唯一标识。 + @param pipe The pipe to be inserted + @param index The index to insert + */ + insertPipe(pipe : any, index : number) : void; + /** !#en + Add a new pipe at the end of the pipeline.
+ A pipe must contain an `id` in string and a `handle` function, the id must be unique in the pipeline. + !#zh + 添加一个新的 pipe 到 pipeline 尾部。
+ 该 pipe 必须包含一个字符串类型 ‘id’ 和 ‘handle’ 函数,该 id 在 pipeline 必须是唯一标识。 + @param pipe The pipe to be appended + */ + appendPipe(pipe : any) : void; + /** !#en + Let new items flow into the pipeline.
+ Each item can be a simple url string or an object, + if it's an object, it must contain `id` property.
+ You can specify its type by `type` property, by default, the type is the extension name in url.
+ By adding a `skips` property including pipe ids, you can skip these pipe.
+ The object can contain any supplementary property as you want.
+ !#zh + 让新的 item 流入 pipeline 中。
+ 这里的每个 item 可以是一个简单字符串类型的 url 或者是一个对象, + 如果它是一个对象的话,他必须要包含 ‘id’ 属性。
+ 你也可以指定它的 ‘type’ 属性类型,默认情况下,该类型是 ‘url’ 的后缀名。
+ 也通过添加一个 包含 ‘skips’ 属性的 item 对象,你就可以跳过 skips 中包含的 pipe。
+ 该对象可以包含任何附加属性。 + + @example + ```js + pipeline.flowIn([ + 'res/Background.png', + { + id: 'res/scene.json', + type: 'scene', + name: 'scene', + skips: ['Downloader'] + } + ]); + ``` + */ + flowIn(urlList : any[]) : any[]; + /** !#en + Let new items flow into the pipeline and give a callback when the list of items are all completed.
+ This is for loading dependencies for an existing item in flow, usually used in a pipe logic.
+ For example, we have a loader for scene configuration file in JSON, the scene will only be fully loaded
+ after all its dependencies are loaded, then you will need to use function to flow in all dependencies
+ found in the configuration file, and finish the loader pipe only after all dependencies are loaded (in the callback). + !#zh + 让新 items 流入 pipeline 并且当 item 列表完成时进行回调函数。
+ 这个 API 的使用通常是为了加载依赖项。
+ 例如:
+ 我们需要加载一个场景配置的 JSON 文件,该场景会将所有的依赖项全部都加载完毕以后,进行回调表示加载完毕。 + */ + flowInDeps(urlList : any[], callback : Function) : any[]; + /** !#en + Copy the item states from one source item to all destination items.
+ It's quite useful when a pipe generate new items from one source item,
+ then you should flowIn these generated items into pipeline,
+ but you probably want them to skip all pipes the source item already go through,
+ you can achieve it with this API.
+
+ For example, an unzip pipe will generate more items, but you won't want them to pass unzip or download pipe again. + !#zh + 从一个源 item 向所有目标 item 复制它的 pipe 状态,用于避免重复通过部分 pipe。
+ 当一个源 item 生成了一系列新的 items 时很有用,
+ 你希望让这些新的依赖项进入 pipeline,但是又不希望它们通过源 item 已经经过的 pipe,
+ 但是你可能希望他们源 item 已经通过并跳过所有 pipes,
+ 这个时候就可以使用这个 API。 + @param srcItem The source item + @param dstItems A single destination item or an array of destination items + */ + copyItemStates(srcItem : any, dstItems : any[]|any) : void; + /** !#en Returns whether the pipeline is flowing (contains item) currently. + !#zh 获取 pipeline 当前是否正在处理中。 + */ + isFlowing() : boolean; + /** !#en Returns all items in pipeline. + !#zh 获取 pipeline 中的所有 items。 + */ + getItems() : LoadingItems; + /** !#en Returns an item in pipeline. + !#zh 获取指定 item。 + */ + getItem() : LoadingItems; + /** !#en Removes an item in pipeline, no matter it's in progress or completed. + !#zh 移除指定 item,无论是进行时还是已完成。 + */ + removeItem() : boolean; + /** !#en Clear the current pipeline, this function will clean up the items. + !#zh 清空当前 pipeline,该函数将清理 items。 + */ + clear() : void; + /** !#en This is a callback which will be invoked while an item flow out the pipeline, you should overwrite this function. + !#zh 这个回调函数将在 item 流出 pipeline 时被调用,你应该重写该函数。 + @param completedCount The number of the items that are already completed. + @param totalCount The total number of the items. + @param item The latest item which flow out the pipeline. + + @example + ```js + pipeline.onProgress = function (completedCount, totalCount, item) { + var progress = (100 * completedCount / totalCount).toFixed(2); + cc.log(progress + '%'); + } + ``` + */ + onProgress(completedCount : number, totalCount : number, item : any) : void; + /** !#en This is a callback which will be invoked while all items flow out the pipeline, + you should overwirte this function. + !#zh 该函数将在所有 item 流出 pipeline 时被调用,你应该重写该函数。 + @param error All errored urls will be stored in this array, if no error happened, then it will be null + @param items All items. + + @example + ```js + pipeline.onComplete = function (error, items) { + if (error) + cc.log('Completed with ' + error.length + ' errors'); + else + cc.log('Completed ' + items.totalCount + ' items'); + } + ``` + */ + onComplete(error : any[], items : LoadingItems) : void; + } + /** undefined */ + export class _ComponentAttributes { + constructor(); + /** Automatically add required component as a dependency. */ + requireComponent : Component; + /** If specified to a type, prevents Component of the same type (or subtype) to be added more than once to a Node. */ + disallowMultiple : Component; + /** The menu path to register a component to the editors "Component" menu. Eg. "Rendering/Camera". */ + menu : string; + /** Makes a component execute in edit mode. + By default, all components are only executed in play mode, + which means they will not have their callback functions executed while the Editor is in edit mode. */ + executeInEditMode : boolean; + /** This property is only available if executeInEditMode is true. + If specified, the editor's scene view will keep updating this node in 60 fps when it is selected, + otherwise, it will update only if necessary. */ + playOnFocus : boolean; + /** Specifying the url of the custom html to draw the component in inspector. */ + inspector : string; + /** Specifying the url of the icon to display in inspector. */ + icon : string; + /** The custom documentation URL */ + help : string; + } + /**

+ This class manages all events of input. include: touch, mouse, accelerometer, keyboard
+

*/ + export class inputManager { + /** + */ + handleTouchesBegin(touches : any[]) : void; + /** + */ + handleTouchesMove(touches : any[]) : void; + /** + */ + handleTouchesEnd(touches : any[]) : void; + /** + */ + handleTouchesCancel(touches : any[]) : void; + /** + */ + getSetOfTouchesEndOrCancel(touches : any[]) : any[]; + /** + */ + getHTMLElementPosition(element : HTMLElement) : any; + /** + */ + getPreTouch(touch : Touch) : Touch; + /** + */ + setPreTouch(touch : Touch) : void; + /** + */ + getTouchByXY(tx : number, ty : number, pos : Vec2) : Touch; + /** + */ + getTouchByXY(location : Vec2, pos : Vec2, eventType : number) : Event.EventMouse; + /** + */ + getPointByEvent(event : Touch, pos : Vec2) : Vec2; + /** + */ + getTouchesByEvent(event : Touch, pos : Vec2) : any[]; + /** + */ + registerSystemEvent(element : HTMLElement) : void; + /** + */ + update(dt : number) : void; + } + /** Key map for keyboard event */ + export enum KEY { + none = 0, + back = 0, + menu = 0, + backspace = 0, + tab = 0, + enter = 0, + shift = 0, + ctrl = 0, + alt = 0, + pause = 0, + capslock = 0, + escape = 0, + space = 0, + pageup = 0, + pagedown = 0, + end = 0, + home = 0, + left = 0, + up = 0, + right = 0, + down = 0, + select = 0, + insert = 0, + Delete = 0, + a = 0, + b = 0, + c = 0, + d = 0, + e = 0, + f = 0, + g = 0, + h = 0, + i = 0, + j = 0, + k = 0, + l = 0, + m = 0, + n = 0, + o = 0, + p = 0, + q = 0, + r = 0, + s = 0, + t = 0, + u = 0, + v = 0, + w = 0, + x = 0, + y = 0, + z = 0, + num0 = 0, + num1 = 0, + num2 = 0, + num3 = 0, + num4 = 0, + num5 = 0, + num6 = 0, + num7 = 0, + num8 = 0, + num9 = 0, + '*' = 0, + '+' = 0, + '-' = 0, + numdel = 0, + '/' = 0, + f1 = 0, + f2 = 0, + f3 = 0, + f4 = 0, + f5 = 0, + f6 = 0, + f7 = 0, + f8 = 0, + f9 = 0, + f10 = 0, + f11 = 0, + f12 = 0, + numlock = 0, + scrolllock = 0, + ';' = 0, + semicolon = 0, + equal = 0, + '=' = 0, + ',' = 0, + comma = 0, + dash = 0, + '.' = 0, + period = 0, + forwardslash = 0, + grave = 0, + '[' = 0, + openbracket = 0, + backslash = 0, + ']' = 0, + closebracket = 0, + quote = 0, + dpadLeft = 0, + dpadRight = 0, + dpadUp = 0, + dpadDown = 0, + dpadCenter = 0, + } + /** Image formats */ + export enum ImageFormat { + JPG = 0, + PNG = 0, + TIFF = 0, + WEBP = 0, + PVR = 0, + ETC = 0, + S3TC = 0, + ATITC = 0, + TGA = 0, + RAWDATA = 0, + UNKNOWN = 0, + getImageFormatByData = 0, + } + /** Predefined constants */ + export enum Macro { + INVALID_INDEX = 0, + NODE_TAG_INVALID = 0, + PI = 0, + PI2 = 0, + FLT_MAX = 0, + FLT_MIN = 0, + RAD = 0, + DEG = 0, + UINT_MAX = 0, + REPEAT_FOREVER = 0, + FLT_EPSILON = 0, + ONE = 0, + ZERO = 0, + SRC_ALPHA = 0, + SRC_ALPHA_SATURATE = 0, + SRC_COLOR = 0, + DST_ALPHA = 0, + DST_COLOR = 0, + ONE_MINUS_SRC_ALPHA = 0, + ONE_MINUS_SRC_COLOR = 0, + ONE_MINUS_DST_ALPHA = 0, + ONE_MINUS_DST_COLOR = 0, + ONE_MINUS_CONSTANT_ALPHA = 0, + ONE_MINUS_CONSTANT_COLOR = 0, + LINEAR = 0, + BLEND_DST = 0, + WEB_ORIENTATION_PORTRAIT = 0, + WEB_ORIENTATION_LANDSCAPE_LEFT = 0, + WEB_ORIENTATION_PORTRAIT_UPSIDE_DOWN = 0, + WEB_ORIENTATION_LANDSCAPE_RIGHT = 0, + ORIENTATION_PORTRAIT = 0, + ORIENTATION_LANDSCAPE = 0, + ORIENTATION_AUTO = 0, + VERTEX_ATTRIB_FLAG_NONE = 0, + VERTEX_ATTRIB_FLAG_POSITION = 0, + VERTEX_ATTRIB_FLAG_COLOR = 0, + VERTEX_ATTRIB_FLAG_TEX_COORDS = 0, + VERTEX_ATTRIB_FLAG_POS_COLOR_TEX = 0, + GL_ALL = 0, + VERTEX_ATTRIB_POSITION = 0, + VERTEX_ATTRIB_COLOR = 0, + VERTEX_ATTRIB_TEX_COORDS = 0, + VERTEX_ATTRIB_MAX = 0, + UNIFORM_PMATRIX = 0, + UNIFORM_MVMATRIX = 0, + UNIFORM_MVPMATRIX = 0, + UNIFORM_TIME = 0, + UNIFORM_SINTIME = 0, + UNIFORM_COSTIME = 0, + UNIFORM_RANDOM01 = 0, + UNIFORM_SAMPLER = 0, + UNIFORM_MAX = 0, + SHADER_POSITION_TEXTURECOLOR = 0, + SHADER_POSITION_TEXTURECOLORALPHATEST = 0, + SHADER_POSITION_COLOR = 0, + SHADER_POSITION_TEXTURE = 0, + SHADER_POSITION_TEXTURE_UCOLOR = 0, + SHADER_POSITION_TEXTUREA8COLOR = 0, + SHADER_POSITION_UCOLOR = 0, + SHADER_POSITION_LENGTHTEXTURECOLOR = 0, + UNIFORM_PMATRIX_S = 0, + UNIFORM_MVMATRIX_S = 0, + UNIFORM_MVPMATRIX_S = 0, + UNIFORM_TIME_S = 0, + UNIFORM_SINTIME_S = 0, + UNIFORM_COSTIME_S = 0, + UNIFORM_RANDOM01_S = 0, + UNIFORM_SAMPLER_S = 0, + UNIFORM_ALPHA_TEST_VALUE_S = 0, + ATTRIBUTE_NAME_COLOR = 0, + ATTRIBUTE_NAME_POSITION = 0, + ATTRIBUTE_NAME_TEX_COORD = 0, + ITEM_SIZE = 0, + CURRENT_ITEM = 0, + ZOOM_ACTION_TAG = 0, + NORMAL_TAG = 0, + SELECTED_TAG = 0, + DISABLE_TAG = 0, + FIX_ARTIFACTS_BY_STRECHING_TEXEL = 0, + DIRECTOR_STATS_POSITION = 0, + DIRECTOR_FPS_INTERVAL = 0, + COCOSNODE_RENDER_SUBPIXEL = 0, + SPRITEBATCHNODE_RENDER_SUBPIXEL = 0, + AUTO_PREMULTIPLIED_ALPHA_FOR_PNG = 0, + OPTIMIZE_BLEND_FUNC_FOR_PREMULTIPLIED_ALPHA = 0, + TEXTURE_ATLAS_USE_TRIANGLE_STRIP = 0, + TEXTURE_ATLAS_USE_VAO = 0, + USE_LA88_LABELS = 0, + SPRITE_DEBUG_DRAW = 0, + LABELBMFONT_DEBUG_DRAW = 0, + LABELATLAS_DEBUG_DRAW = 0, + ENABLE_STACKABLE_ACTIONS = 0, + ENABLE_GL_STATE_CACHE = 0, + BLEND_SRC = 0, + lerp = 0, + rand = 0, + randomMinus1To1 = 0, + random0To1 = 0, + degreesToRadians = 0, + radiansToDegrees = 0, + nodeDrawSetup = 0, + incrementGLDraws = 0, + checkGLErrorDebug = 0, + } + /** The base class of most of all the objects in Fireball. */ + export class Object { + constructor(); + /** !#en The name of the object. + !#zh 该对象的名称。 */ + name : string; + /** !#en Indicates whether the object is not yet destroyed. + !#zh 表示该对象是否可用(被销毁后将不可用)。 */ + isValid : boolean; + /** !#en + Destroy this Object, and release all its own references to other objects.
+
+ After destroy, this CCObject is not usable any more.
+ You can use cc.isValid(obj) (or obj.isValid if obj is non-nil) to check whether the object is destroyed before + accessing it. + !#zh + 销毁该对象,并释放所有它对其它对象的引用。
+ 销毁后,CCObject 不再可用。
+ 您可以在访问对象之前使用 cc.isValid(obj)(或 obj.isValid 如果 obj 不为 null)来检查对象是否已被销毁。 + + @example + ```js + obj.destroy(); + ``` + */ + destroy() : boolean; + } + /** Bit mask that controls object states. */ + export class Flags { + /** !#en The object will not be saved. + !#zh 该对象将不会被保存。 */ + DontSave : number; + /** !#en The object will not be saved when building a player. + !#zh 构建项目时,该对象将不会被保存。 */ + EditorOnly : number; + } + /** The fullscreen API provides an easy way for web content to be presented using the user's entire screen. + It's invalid on safari, QQbrowser and android browser */ + export class screen { + /** initialize + */ + init() : void; + /** return true if it's full now. + */ + fullScreen() : boolean; + /** change the screen to full mode. + */ + requestFullScreen(element : Element, onFullScreenChange : Function) : void; + /** exit the full mode. + */ + exitFullScreen() : boolean; + /** Automatically request full screen with a touch/click event + */ + autoFullScreen(element : Element, onFullScreenChange : Function) : void; + } + /** System variables */ + export class sys { + /** English language code */ + LANGUAGE_ENGLISH : string; + /** Chinese language code */ + LANGUAGE_CHINESE : string; + /** French language code */ + LANGUAGE_FRENCH : string; + /** Italian language code */ + LANGUAGE_ITALIAN : string; + /** German language code */ + LANGUAGE_GERMAN : string; + /** Spanish language code */ + LANGUAGE_SPANISH : string; + /** Spanish language code */ + LANGUAGE_DUTCH : string; + /** Russian language code */ + LANGUAGE_RUSSIAN : string; + /** Korean language code */ + LANGUAGE_KOREAN : string; + /** Japanese language code */ + LANGUAGE_JAPANESE : string; + /** Hungarian language code */ + LANGUAGE_HUNGARIAN : string; + /** Portuguese language code */ + LANGUAGE_PORTUGUESE : string; + /** Arabic language code */ + LANGUAGE_ARABIC : string; + /** Norwegian language code */ + LANGUAGE_NORWEGIAN : string; + /** Polish language code */ + LANGUAGE_POLISH : string; + /** Unknown language code */ + LANGUAGE_UNKNOWN : string; + OS_IOS : string; + OS_ANDROID : string; + OS_WINDOWS : string; + OS_MARMALADE : string; + OS_LINUX : string; + OS_BADA : string; + OS_BLACKBERRY : string; + OS_OSX : string; + OS_WP8 : string; + OS_WINRT : string; + OS_UNKNOWN : string; + UNKNOWN : number; + WIN32 : number; + LINUX : number; + MACOS : number; + ANDROID : number; + IOS : number; + IPAD : number; + BLACKBERRY : number; + NACL : number; + EMSCRIPTEN : number; + TIZEN : number; + WINRT : number; + WP8 : number; + MOBILE_BROWSER : number; + DESKTOP_BROWSER : number; + /** Indicates whether executes in editor's window process (Electron's renderer context) */ + EDITOR_PAGE : number; + /** Indicates whether executes in editor's main process (Electron's browser context) */ + EDITOR_CORE : number; + /** BROWSER_TYPE_WECHAT */ + BROWSER_TYPE_WECHAT : string; + BROWSER_TYPE_ANDROID : string; + BROWSER_TYPE_IE : string; + BROWSER_TYPE_QQ : string; + BROWSER_TYPE_MOBILE_QQ : string; + BROWSER_TYPE_UC : string; + BROWSER_TYPE_360 : string; + BROWSER_TYPE_BAIDU_APP : string; + BROWSER_TYPE_BAIDU : string; + BROWSER_TYPE_MAXTHON : string; + BROWSER_TYPE_OPERA : string; + BROWSER_TYPE_OUPENG : string; + BROWSER_TYPE_MIUI : string; + BROWSER_TYPE_FIREFOX : string; + BROWSER_TYPE_SAFARI : string; + BROWSER_TYPE_CHROME : string; + BROWSER_TYPE_LIEBAO : string; + BROWSER_TYPE_QZONE : string; + BROWSER_TYPE_SOUGOU : string; + BROWSER_TYPE_UNKNOWN : string; + /** Is native ? This is set to be true in jsb auto. */ + isNative : boolean; + /** Is web browser ? */ + isBrowser : boolean; + /** Indicate whether system is mobile system */ + isMobile : boolean; + /** Indicate the running platform */ + platform : number; + /** Indicate the current language of the running system */ + language : string; + /** Indicate the running os name */ + os : string; + /** Indicate the running browser type */ + browserType : string; + /** Indicate the running browser version */ + browserVersion : number; + /** Indicate the real pixel resolution of the whole game window */ + windowPixelResolution : number; + /** cc.sys.localStorage is a local storage component. */ + localStorage : any; + /** The capabilities of the current platform */ + capabilities : any; + /** Forces the garbage collection, only available in JSB + */ + garbageCollect() : void; + /** Dumps rooted objects, only available in JSB + */ + dumpRoot() : void; + /** Restart the JS VM, only available in JSB + */ + restartVM() : void; + /** Clean a script in the JS VM, only available in JSB + */ + cleanScript(jsfile : string) : void; + /** Check whether an object is valid, + In web engine, it will return true if the object exist + In native engine, it will return true if the JS object and the correspond native object are both valid + */ + isObjectValid(obj : any) : boolean; + /** Dump system informations + */ + dump() : void; + /** Open a url in browser + */ + openURL(url : string) : void; + } + /** cc.view is the singleton object which represents the game window.
+ It's main task include:
+ - Apply the design resolution policy
+ - Provide interaction with the window, like resize event on web, retina display support, etc...
+ - Manage the game view port which can be different with the window
+ - Manage the content scale and translation
+
+ Since the cc.view is a singleton, you don't need to call any constructor or create functions,
+ the standard way to use it is by calling:
+ - cc.view.methodName();
*/ + export class View { + /**

+ Sets view's target-densitydpi for android mobile browser. it can be set to:
+ 1. cc.macro.DENSITYDPI_DEVICE, value is "device-dpi"
+ 2. cc.macro.DENSITYDPI_HIGH, value is "high-dpi" (default value)
+ 3. cc.macro.DENSITYDPI_MEDIUM, value is "medium-dpi" (browser's default value)
+ 4. cc.macro.DENSITYDPI_LOW, value is "low-dpi"
+ 5. Custom value, e.g: "480"
+

+ */ + setTargetDensityDPI(densityDPI : string) : void; + /** Returns the current target-densitydpi value of cc.view. + */ + getTargetDensityDPI() : string; + /** Sets whether resize canvas automatically when browser's size changed.
+ Useful only on web. + @param enabled Whether enable automatic resize with browser's resize event + */ + resizeWithBrowserSize(enabled : boolean) : void; + /** Sets the callback function for cc.view's resize action,
+ this callback will be invoked before applying resolution policy,
+ so you can do any additional modifications within the callback.
+ Useful only on web. + @param callback The callback function + */ + setResizeCallback(callback : Function|void) : void; + /** Sets the orientation of the game, it can be landscape, portrait or auto. + When set it to landscape or portrait, and screen w/h ratio doesn't fit, + cc.view will automatically rotate the game canvas using CSS. + Note that this function doesn't have any effect in native, + in native, you need to set the application orientation in native project settings + @param orientation Possible values: cc.macro.ORIENTATION_LANDSCAPE | cc.macro.ORIENTATION_PORTRAIT | cc.macro.ORIENTATION_AUTO + */ + setOrientation(orientation : number) : void; + /** Sets whether the engine modify the "viewport" meta in your web page.
+ It's enabled by default, we strongly suggest you not to disable it.
+ And even when it's enabled, you can still set your own "viewport" meta, it won't be overridden
+ Only useful on web + @param enabled Enable automatic modification to "viewport" meta + */ + adjustViewPort(enabled : boolean) : void; + /** Retina support is enabled by default for Apple device but disabled for other devices,
+ it takes effect only when you called setDesignResolutionPolicy
+ Only useful on web + @param enabled Enable or disable retina display + */ + enableRetina(enabled : boolean) : void; + /** Check whether retina display is enabled.
+ Only useful on web + */ + isRetinaEnabled() : boolean; + /** If enabled, the application will try automatically to enter full screen mode on mobile devices
+ You can pass true as parameter to enable it and disable it by passing false.
+ Only useful on web + @param enabled Enable or disable auto full screen on mobile devices + */ + enableAutoFullScreen(enabled : boolean) : void; + /** Check whether auto full screen is enabled.
+ Only useful on web + */ + isAutoFullScreenEnabled() : boolean; + /** Get whether render system is ready(no matter opengl or canvas),
+ this name is for the compatibility with cocos2d-x, subclass must implement this method. + */ + isViewReady() : boolean; + /** Sets the resolution translate on View. + */ + setContentTranslateLeftTop(offsetLeft : number, offsetTop : number) : void; + /** Returns the resolution translate on View + */ + getContentTranslateLeftTop() : Size; + /** Returns the frame size of the view.
+ On native platforms, it returns the screen size since the view is a fullscreen view.
+ On web, it returns the size of the canvas's outer DOM element. + */ + getFrameSize() : Size; + /** On native, it sets the frame size of view.
+ On web, it sets the size of the canvas's outer DOM element. + */ + setFrameSize(width : number, height : number) : void; + /** Returns the visible area size of the view port. + */ + getVisibleSize() : Size; + /** Returns the visible area size of the view port. + */ + getVisibleSizeInPixel() : Size; + /** Returns the visible origin of the view port. + */ + getVisibleOrigin() : Vec2; + /** Returns the visible origin of the view port. + */ + getVisibleOriginInPixel() : Vec2; + /** Returns whether developer can set content's scale factor. + */ + canSetContentScaleFactor() : boolean; + /** Returns the current resolution policy + */ + getResolutionPolicy() : ResolutionPolicy; + /** Sets the current resolution policy + */ + setResolutionPolicy(resolutionPolicy : ResolutionPolicy|number) : void; + /** Sets the resolution policy with designed view size in points.
+ The resolution policy include:
+ [1] ResolutionExactFit Fill screen by stretch-to-fit: if the design resolution ratio of width to height is different from the screen resolution ratio, your game view will be stretched.
+ [2] ResolutionNoBorder Full screen without black border: if the design resolution ratio of width to height is different from the screen resolution ratio, two areas of your game view will be cut.
+ [3] ResolutionShowAll Full screen with black border: if the design resolution ratio of width to height is different from the screen resolution ratio, two black borders will be shown.
+ [4] ResolutionFixedHeight Scale the content's height to screen's height and proportionally scale its width
+ [5] ResolutionFixedWidth Scale the content's width to screen's width and proportionally scale its height
+ [cc.ResolutionPolicy] [Web only feature] Custom resolution policy, constructed by cc.ResolutionPolicy
+ @param width Design resolution width. + @param height Design resolution height. + @param resolutionPolicy The resolution policy desired + */ + setDesignResolutionSize(width : number, height : number, resolutionPolicy : ResolutionPolicy|number) : void; + /** Returns the designed size for the view. + Default resolution size is the same as 'getFrameSize'. + */ + getDesignResolutionSize() : Size; + /** Sets the container to desired pixel resolution and fit the game content to it. + This function is very useful for adaptation in mobile browsers. + In some HD android devices, the resolution is very high, but its browser performance may not be very good. + In this case, enabling retina display is very costy and not suggested, and if retina is disabled, the image may be blurry. + But this API can be helpful to set a desired pixel resolution which is in between. + This API will do the following: + 1. Set viewport's width to the desired width in pixel + 2. Set body width to the exact pixel resolution + 3. The resolution policy will be reset with designed view size in points. + @param width Design resolution width. + @param height Design resolution height. + @param resolutionPolicy The resolution policy desired + */ + setRealPixelResolution(width : number, height : number, resolutionPolicy : ResolutionPolicy|number) : void; + /** Sets view port rectangle with points. + @param w width + @param h height + */ + setViewPortInPoints(x : number, y : number, w : number, h : number) : void; + /** Sets Scissor rectangle with points. + */ + setScissorInPoints(x : number, y : number, w : number, h : number) : void; + /** Returns whether GL_SCISSOR_TEST is enable + */ + isScissorEnabled() : boolean; + /** Returns the current scissor rectangle + */ + getScissorRect() : Rect; + /** Sets the name of the view + */ + setViewName(viewName : string) : void; + /** Returns the name of the view + */ + getViewName() : string; + /** Returns the view port rectangle. + */ + getViewPortRect() : Rect; + /** Returns scale factor of the horizontal direction (X axis). + */ + getScaleX() : number; + /** Returns scale factor of the vertical direction (Y axis). + */ + getScaleY() : number; + /** Returns device pixel ratio for retina display. + */ + getDevicePixelRatio() : number; + /** Returns the real location in view for a translation based on a related position + @param tx The X axis translation + @param ty The Y axis translation + @param relatedPos The related position object including "left", "top", "width", "height" informations + */ + convertToLocationInView(tx : number, ty : number, relatedPos : any) : Vec2; + } + /**

cc.ContainerStrategy class is the root strategy class of container's scale strategy, + it controls the behavior of how to scale the cc.container and cc.game.canvas object

*/ + export class ContainerStrategy { + /** Manipulation before appling the strategy + @param view The target view + */ + preApply(view : View) : void; + /** Function to apply this strategy + */ + apply(view : View, designedResolution : Size) : void; + /** Manipulation after applying the strategy + @param view The target view + */ + postApply(view : View) : void; + } + /**

cc.ContentStrategy class is the root strategy class of content's scale strategy, + it controls the behavior of how to scale the scene and setup the viewport for the game

*/ + export class ContentStrategy { + /** Manipulation before applying the strategy + @param view The target view + */ + preApply(view : View) : void; + /** Function to apply this strategy + The return value is {scale: [scaleX, scaleY], viewport: {cc.Rect}}, + The target view can then apply these value to itself, it's preferred not to modify directly its private variables + */ + apply(view : View, designedResolution : Size) : any; + /** Manipulation after applying the strategy + @param view The target view + */ + postApply(view : View) : void; + } + /** undefined */ + export class EqualToFrame extends ContainerStrategy { + } + /** undefined */ + export class ProportionalToFrame extends ContainerStrategy { + } + /** undefined */ + export class EqualToWindow extends EqualToFrame { + } + /** undefined */ + export class ProportionalToWindow extends ProportionalToFrame { + } + /** undefined */ + export class OriginalContainer extends ContainerStrategy { + } + /**

cc.ResolutionPolicy class is the root strategy class of scale strategy, + its main task is to maintain the compatibility with Cocos2d-x

*/ + export class ResolutionPolicy { + /** + @param containerStg The container strategy + @param contentStg The content strategy + */ + ResolutionPolicy(containerStg : ContainerStrategy, contentStg : ContentStrategy) : void; + /** Manipulation before applying the resolution policy + @param view The target view + */ + preApply(view : View) : void; + /** Function to apply this resolution policy + The return value is {scale: [scaleX, scaleY], viewport: {cc.Rect}}, + The target view can then apply these value to itself, it's preferred not to modify directly its private variables + @param view The target view + @param designedResolution The user defined design resolution + */ + apply(view : View, designedResolution : Size) : any; + /** Manipulation after appyling the strategy + @param view The target view + */ + postApply(view : View) : void; + /** Setup the container's scale strategy + */ + setContainerStrategy(containerStg : ContainerStrategy) : void; + /** Setup the content's scale strategy + */ + setContentStrategy(contentStg : ContentStrategy) : void; + /** The entire application is visible in the specified area without trying to preserve the original aspect ratio.
+ Distortion can occur, and the application may appear stretched or compressed. */ + EXACT_FIT : number; + /** The entire application fills the specified area, without distortion but possibly with some cropping,
+ while maintaining the original aspect ratio of the application. */ + NO_BORDER : number; + /** The entire application is visible in the specified area without distortion while maintaining the original
+ aspect ratio of the application. Borders can appear on two sides of the application. */ + SHOW_ALL : number; + /** The application takes the height of the design resolution size and modifies the width of the internal
+ canvas so that it fits the aspect ratio of the device
+ no distortion will occur however you must make sure your application works on different
+ aspect ratios */ + FIXED_HEIGHT : number; + /** The application takes the width of the design resolution size and modifies the height of the internal
+ canvas so that it fits the aspect ratio of the device
+ no distortion will occur however you must make sure your application works on different
+ aspect ratios */ + FIXED_WIDTH : number; + /** Unknow policy */ + UNKNOWN : number; + } + /** cc.visibleRect is a singleton object which defines the actual visible rect of the current view, + it should represent the same rect as cc.view.getViewportRect() */ + export class visibleRect { + /** initialize + */ + init(visibleRect : Rect) : void; + /** Top left coordinate of the screen related to the game scene. */ + topLeft : Vec2; + /** Top right coordinate of the screen related to the game scene. */ + topRight : Vec2; + /** Top center coordinate of the screen related to the game scene. */ + top : Vec2; + /** Bottom left coordinate of the screen related to the game scene. */ + bottomLeft : Vec2; + /** Bottom right coordinate of the screen related to the game scene. */ + bottomRight : Vec2; + /** Bottom center coordinate of the screen related to the game scene. */ + bottom : Vec2; + /** Center coordinate of the screen related to the game scene. */ + center : Vec2; + /** Left center coordinate of the screen related to the game scene. */ + left : Vec2; + /** Right center coordinate of the screen related to the game scene. */ + right : Vec2; + /** Width of the screen. */ + width : number; + /** Height of the screen. */ + height : number; + } + /** The CallbacksHandler is an abstract class that can register and unregister callbacks by key. + Subclasses should implement their own methods about how to invoke the callbacks. */ + export class _CallbacksHandler { + constructor(); + /** + @param target can be null + */ + add(key : string, callback : Function, target? : any) : boolean; + /** Check if the specified key has any registered callback. If a callback is also specified, + it will only return true if the callback is registered. + */ + has(key : string, callback? : Function, target? : any) : boolean; + /** Removes all callbacks registered in a certain event type or all callbacks registered with a certain target + @param key The event key to be removed or the target to be removed + */ + removeAll(key : string|any) : void; + /** + */ + remove(key : string, callback : Function, target : any) : boolean; + } + /** !#en The callbacks invoker to handle and invoke callbacks by key. + !#zh CallbacksInvoker 用来根据 Key 管理并调用回调方法。 */ + export class CallbacksInvoker extends _CallbacksHandler { + constructor(); + /** + */ + invoke(key : string, p1? : any, p2? : any, p3? : any, p4? : any, p5? : any) : void; + /** + */ + invokeAndRemove(key : string, p1? : any, p2? : any, p3? : any, p4? : any, p5? : any) : void; + /** + @param remove remove callbacks after invoked + */ + bindKey(key : string, remove? : boolean) : Function; + } + /** !#en Contains information collected during deserialization + !#zh 包含反序列化时的一些信息 */ + export class Details { + constructor(); + /** list of the depends assets' uuid */ + uuidList : String[]; + /** the obj list whose field needs to load asset by uuid */ + uuidObjList : any[]; + /** the corresponding field name which referenced to the asset */ + uuidPropList : String[]; + /** the corresponding field name which referenced to the raw object */ + rawProp : string; + reset() : void; + /** + */ + getUuidOf(obj : any, propName : string) : string; + /** + */ + assignAssetsBy(getter : Function) : boolean; + /** + */ + push(obj : any, propName : string, uuid : string) : void; + } + /** undefined */ + export class url { + /** Returns the url of raw assets, you will only need this if the raw asset is inside the "resources" folder. + + @example + ```js + --- + var url = cc.url.raw("textures/myTexture.png"); + console.log(url); // "resources/raw/textures/myTexture.png" + + ``` + */ + raw(url : string) : string; + /** Returns the url of builtin raw assets. This method can only used in editor. + + @example + ```js + --- + var url = cc.url.builtinRaw("textures/myTexture.png"); + console.log(url); // "resources/default-raw/textures/myTexture.png" + + ``` + */ + builtinRaw(url : string) : string; + } + /** A cc.SpriteFrame has:
+ - texture: A cc.Texture2D that will be used by the _ccsg.Sprite
+ - rectangle: A rectangle of the texture
+
+ You can modify the frame of a _ccsg.Sprite by doing:
*/ + export class SpriteFrame extends Asset { + constructor(); + /** Constructor of SpriteFrame class + @param rotated Whether the frame is rotated in the texture + @param offset The offset of the frame in the texture + @param originalSize The size of the frame in the texture + + @example + ```js + // ---------------------------------------------------- + // 1. Create a cc.SpriteFrame with image path + var url = cc.url.raw('resources/textures/grossini_dance.png'); + var frame1 = new cc.SpriteFrame(url, cc.Rect(0, 0, 90, 128)); + + // ---------------------------------------------------- + // 2. Create a cc.SpriteFrame with a texture, rect, rotated, offset and originalSize in pixels. + var url = cc.url.raw('resources/textures/grossini_dance.png'); + var texture = cc.textureCache.addImage(url); + var frame1 = new cc.SpriteFrame(texture, cc.Rect(0, 0, 90, 128)); + var frame2 = new cc.SpriteFrame(texture, cc.Rect(0, 0, 90, 128), false, 0, cc.Size(90, 128)); + + // ---------------------------------------------------- + // 3. load a cc.SpriteFrame with image path (Recommend) + var url = 'resources://test assets/PurpleMonster.png/PurpleMonster'; + var self = this; + cc.loader.load(url, function (err, spriteFrame) { + var node = new cc.Node("New Sprite"); + var sprite = node.addComponent(cc.Sprite); + sprite.spriteFrame = spriteFrame; + node.parent = self.node + } + ); + + ``` + */ + SpriteFrame(filename? : string|Texture2D, rect? : Rect, rotated? : boolean, offset? : Vec2, originalSize? : Size) : void; + /** Top border of the sprite */ + insetTop : number; + /** Bottom border of the sprite */ + insetBottom : number; + /** Left border of the sprite */ + insetLeft : number; + /** Right border of the sprite */ + insetRight : number; + /** Returns whether the texture have been loaded + */ + textureLoaded() : boolean; + /** Add a event listener for texture loaded event. + */ + addLoadedEventListener(callback : Function, target : any) : void; + /** Returns whether the sprite frame is rotated in the texture. + */ + isRotated() : boolean; + /** Set whether the sprite frame is rotated in the texture. + */ + setRotated(bRotated : boolean) : void; + /** Returns the rect of the sprite frame in the texture. + */ + getRect() : Rect; + /** Sets the rect of the sprite frame in the texture. + */ + setRect(rect : Rect) : void; + /** Returns the original size of the trimmed image. + */ + getOriginalSize() : Size; + /** Sets the original size of the trimmed image. + */ + setOriginalSize(size : Size) : void; + /** Returns the texture of the frame. + */ + getTexture() : Texture2D; + /** Sets the texture of the frame, the texture is retained automatically. + */ + _refreshTexture(texture : Texture2D) : void; + /** Returns the offset of the frame in the texture. + */ + getOffset() : Vec2; + /** Sets the offset of the frame in the texture. + */ + setOffset(offsets : Vec2) : void; + /** Clone the sprite frame. + */ + clone() : SpriteFrame; + /** Initializes SpriteFrame with Texture, rect, rotated, offset and originalSize in pixels.
+ Please pass parameters to the constructor to initialize the sprite, do not call this function yourself. + */ + initWithTexture(texture : string|Texture2D, rect? : Rect, rotated? : boolean, offset? : Vec2, originalSize? : Size) : boolean; + /** Copy the sprite frame + */ + copyWithZone() : SpriteFrame; + /** Copy the sprite frame + */ + copy() : SpriteFrame; + } + /**

+ This class allows to easily create OpenGL or Canvas 2D textures from images, text or raw data.
+ The created cc.Texture2D object will always have power-of-two dimensions.
+ Depending on how you create the cc.Texture2D object, the actual image area of the texture might be smaller than the texture dimensions
+ i.e. "contentSize" != (pixelsWide, pixelsHigh) and (maxS, maxT) != (1.0, 1.0).
+ Be aware that the content of the generated textures will be upside-down!

*/ + export class Texture2D extends RawAsset { + /** Get width in pixels. + */ + getPixelWidth() : number; + /** Get height of in pixels. + */ + getPixelHeight() : number; + /** Get content size. + */ + getContentSize() : Size; + /** Get content size in pixels. + */ + getContentSizeInPixels() : Size; + /** Init with HTML element. + + @example + ```js + var img = new Image(); + img.src = dataURL; + texture.initWithElement(img); + texture.handleLoadedTexture(); + ``` + */ + initWithElement(element : HTMLImageElement|HTMLCanvasElement) : void; + /** Intializes with a texture2d with data. + */ + initWithData(data : any[], pixelFormat : number, pixelsWide : number, pixelsHigh : number, contentSize : Size) : boolean; + /** Initializes a texture from a UIImage object. + Extensions to make it easy to create a CCTexture2D object from an image file. + Note that RGBA type textures will have their alpha premultiplied - use the blending mode (gl.ONE, gl.ONE_MINUS_SRC_ALPHA). + */ + initWithImage(uiImage : HTMLImageElement) : boolean; + /** HTMLElement Object getter. + */ + getHtmlElementObj() : HTMLImageElement; + /** Check whether texture is loaded. + */ + isLoaded() : boolean; + /** Handler of texture loaded event. + */ + handleLoadedTexture(premultiplied? : boolean) : void; + /** Description of cc.Texture2D. + */ + description() : string; + /** Release texture. + */ + releaseTexture() : void; + /** Pixel format of the texture. + */ + getPixelFormat() : number; + /** Whether or not the texture has their Alpha premultiplied, + support only in WebGl rendering mode. + */ + hasPremultipliedAlpha() : boolean; + /** Whether or not use mipmap, support only in WebGl rendering mode. + */ + hasMipmaps() : boolean; + /** Sets the min filter, mag filter, wrap s and wrap t texture parameters.
+ If the texture size is NPOT (non power of 2), then in can only use gl.CLAMP_TO_EDGE in gl.TEXTURE_WRAP_{S,T}. + @param texParams texParams object or minFilter + */ + setTexParameters(texParams : any|number, magFilter? : number, wrapS? : Texture2D.WrapMode, wrapT? : Texture2D.WrapMode) : void; + /** WebGLTexture Object. */ + name : WebGLTexture; + /** Pixel format of the texture. */ + pixelFormat : number; + /** Width in pixels. */ + pixelWidth : number; + /** Height in pixels. */ + pixelHeight : number; + /** Content width in points. */ + width : number; + /** Content height in points. */ + height : number; + } + /**

A class that implements a Texture Atlas.
+ Supported features:
+ The atlas file can be a PNG, JPG.
+ Quads can be updated in runtime
+ Quads can be added in runtime
+ Quads can be removed in runtime
+ Quads can be re-ordered in runtime
+ The TextureAtlas capacity can be increased or decreased in runtime.

*/ + export class TextureAtlas { + constructor(); + /**

Creates a TextureAtlas with an filename and with an initial capacity for Quads.
+ The TextureAtlas capacity can be increased in runtime.

+ Constructor of cc.TextureAtlas + + @example + ```js + -------------------------- + 1. //creates a TextureAtlas with filename + var textureAtlas = new cc.TextureAtlas("res/hello.png", 3); + + 2. //creates a TextureAtlas with texture + var texture = cc.textureCache.addImage("hello.png"); + var textureAtlas = new cc.TextureAtlas(texture, 3); + + ``` + */ + TextureAtlas(fileName : string|Texture2D, capacity : number) : void; + /** Quantity of quads that are going to be drawn. + */ + getTotalQuads() : number; + /** Quantity of quads that can be stored with the current texture atlas size. + */ + getCapacity() : number; + /** Texture of the texture atlas. + */ + getTexture() : Image; + /** Set texture for texture atlas. + */ + setTexture(texture : Image) : void; + /** specify if the array buffer of the VBO needs to be updated. + */ + setDirty(dirty : boolean) : void; + /** whether or not the array buffer of the VBO needs to be updated. + */ + isDirty() : boolean; + /** Quads that are going to be rendered. + */ + getQuads() : any[]; + /** + */ + setQuads(quads : any[]) : void; + /**

Initializes a TextureAtlas with a filename and with a certain capacity for Quads.
+ The TextureAtlas capacity can be increased in runtime.
+ WARNING: Do not reinitialize the TextureAtlas because it will leak memory.

+ + @example + ```js + -------------------------------------------------- + var textureAtlas = new cc.TextureAtlas(); + textureAtlas.initWithTexture("hello.png", 3); + + ``` + */ + initWithFile(file : string, capacity : number) : boolean; + /**

Initializes a TextureAtlas with a previously initialized Texture2D object, and
+ with an initial capacity for Quads.
+ The TextureAtlas capacity can be increased in runtime.
+ WARNING: Do not reinitialize the TextureAtlas because it will leak memory

+ + @example + ```js + --------------------------- + var texture = cc.textureCache.addImage("hello.png"); + var textureAtlas = new cc.TextureAtlas(); + textureAtlas.initWithTexture(texture, 3); + + ``` + */ + initWithTexture(texture : Image, capacity : number) : boolean; + /**

Updates a Quad (texture, vertex and color) at a certain index
+ index must be between 0 and the atlas capacity - 1

+ */ + updateQuad(quad : V3F_C4B_T2F_Quad, index : number) : void; + /**

Inserts a Quad (texture, vertex and color) at a certain index
+ index must be between 0 and the atlas capacity - 1

+ */ + insertQuad(quad : V3F_C4B_T2F_Quad, index : number) : void; + /**

+ Inserts a c array of quads at a given index
+ index must be between 0 and the atlas capacity - 1
+ this method doesn't enlarge the array when amount + index > totalQuads
+

+ */ + insertQuads(quads : any[], index : number, amount : number) : void; + /**

Removes the quad that is located at a certain index and inserts it at a new index
+ This operation is faster than removing and inserting in a quad in 2 different steps

+ */ + insertQuadFromIndex(fromIndex : number, newIndex : number) : void; + /**

Removes a quad at a given index number.
+ The capacity remains the same, but the total number of quads to be drawn is reduced in 1

+ */ + removeQuadAtIndex(index : number) : void; + /** Removes a given number of quads at a given index. + */ + removeQuadsAtIndex(index : number, amount : number) : void; + /**

Removes all Quads.
+ The TextureAtlas capacity remains untouched. No memory is freed.
+ The total number of quads to be drawn will be 0

+ */ + removeAllQuads() : void; + /**

Resize the capacity of the CCTextureAtlas.
+ The new capacity can be lower or higher than the current one
+ It returns YES if the resize was successful.
+ If it fails to resize the capacity it will return NO with a new capacity of 0.
+ no used for js

+ */ + resizeCapacity(newCapacity : number) : boolean; + /** Used internally by CCParticleBatchNode
+ don't use this unless you know what you're doing. + */ + increaseTotalQuadsWith(amount : number) : void; + /** Moves an amount of quads from oldIndex at newIndex. + */ + moveQuadsFromIndex(oldIndex : number, amount : number, newIndex : number) : void; + /** Ensures that after a realloc quads are still empty
+ Used internally by CCParticleBatchNode. + */ + fillWithEmptyQuadsFromIndex(index : number, amount : number) : void; + /**

Draws n quads from an index (offset).
+ n + start can't be greater than the capacity of the atlas

+ */ + drawNumberOfQuads(n : number, start : number) : void; + /** Indicates whether or not the array buffer of the VBO needs to be updated. */ + dirty : boolean; + /** Image texture for cc.TextureAtlas. */ + texture : Image; + /** Quantity of quads that can be stored with the current texture atlas size. */ + capacity : number; + /** Quantity of quads that are going to be drawn. */ + totalQuads : number; + /** Quads that are going to be rendered. */ + quads : any[]; + } + /** cc.textureCache is a singleton object, it's the global cache for cc.Texture2D */ + export class textureCache { + /** Description + */ + description() : string; + /** Returns an already created texture. Returns null if the texture doesn't exist. + + @example + ```js + ------------------ + var key = cc.textureCache.textureForKey("hello.png"); + + ``` + */ + textureForKey(textureKeyName : string) : Texture2D; + /** Returns an already created texture. Returns null if the texture doesn't exist. + + @example + ```js + ------------------ + var key = cc.textureCache.getTextureForKey("hello.png"); + + ``` + */ + getTextureForKey(textureKeyName : string) : Texture2D; + /** + + @example + ```js + --------- + var key = cc.textureCache.getKeyByTexture(texture); + + ``` + */ + getKeyByTexture(texture : Image) : string; + /** + + @example + ```js + --------------- + var cacheTextureForColor = cc.textureCache.getTextureColors(texture); + + ``` + */ + getTextureColors(texture : Image) : any[]; + /**

Purges the dictionary of loaded textures.
+ Call this method if you receive the "Memory Warning"
+ In the short term: it will free some resources preventing your app from being killed
+ In the medium term: it will allocate more resources
+ In the long term: it will be the same

+ + @example + ```js + -------- + cc.textureCache.removeAllTextures(); + + ``` + */ + removeAllTextures() : void; + /** Deletes a texture from the cache given a texture. + + @example + ```js + ----- + cc.textureCache.removeTexture(texture); + + ``` + */ + removeTexture(texture : Image) : void; + /** Deletes a texture from the cache given a its key name. + + @example + ```js + ------ + cc.textureCache.removeTexture("hello.png"); + + ``` + */ + removeTextureForKey(textureKeyName : string) : void; + /**

Returns a Texture2D object given an file image
+ If the file image was not previously loaded, it will create a new Texture2D
+ object and it will return it. It will use the filename as a key.
+ Otherwise it will return a reference of a previously loaded image.
+ Supported image extensions: .png, .jpg, .gif

+ + @example + ```js + ---- + cc.textureCache.addImage("hello.png"); + + ``` + */ + addImage(url : string, cb : Function, target : any) : Texture2D; + /** Cache the image data. + */ + cacheImage(path : string, texture : Image|HTMLImageElement|HTMLCanvasElement) : void; + /**

Returns a Texture2D object given an UIImage image
+ If the image was not previously loaded, it will create a new Texture2D object and it will return it.
+ Otherwise it will return a reference of a previously loaded image
+ The "key" parameter will be used as the "key" for the cache.
+ If "key" is null, then a new texture will be created each time.

+ */ + addUIImage(image : HTMLImageElement|HTMLCanvasElement, key : string) : Texture2D; + } + /** A base node for CCNode and CCEScene, it will: + - provide the same api with origin cocos2d rendering node (SGNode) + - maintains properties of the internal SGNode + - retain and release the SGNode + - serialize datas for SGNode (but SGNode itself will not being serialized) + - notifications if some properties changed + - define some interfaces shares between CCNode and CCEScene */ + export class _BaseNode extends Object { + /** !#en Name of node. + !#zh 该节点名称。 */ + name : string; + /** !#en The parent of the node. + !#zh 该节点的父节点。 */ + parent : Node; + /** !#en The uuid for editor, will be stripped before building project. + !#zh 用于编辑器使用的 uuid,在构建项目之前将会被剔除。 */ + uuid : string; + /** !#en Skew x + !#zh 该节点 Y 轴倾斜角度。 */ + skewX : number; + /** !#en Skew y + !#zh 该节点 X 轴倾斜角度。 */ + skewY : number; + /** !#en Z order in depth which stands for the drawing order. + !#zh 该节点渲染排序的 Z 轴深度。 */ + zIndex : number; + /** !#en Rotation of node. + !#zh 该节点旋转角度。 */ + rotation : number; + /** !#en Rotation on x axis. + !#zh 该节点 X 轴旋转角度。 */ + rotationX : number; + /** !#en Rotation on y axis. + !#zh 该节点 Y 轴旋转角度。 */ + rotationY : number; + /** !#en Scale on x axis. + !#zh 节点 X 轴缩放。 */ + scaleX : number; + /** !#en Scale on y axis. + !#zh 节点 Y 轴缩放。 */ + scaleY : number; + /** !#en x axis position of node. + !#zh 节点 X 轴坐标。 */ + x : number; + /** !#en y axis position of node. + !#zh 节点 Y 轴坐标。 */ + y : number; + /** !#en All children nodes. + !#zh 节点的所有子节点。 */ + children : Node[]; + /** !#en All children nodes. + !#zh 节点的子节点数量。 */ + childrenCount : number; + /** !#en Anchor point's position on x axis. + !#zh 节点 X 轴锚点位置。 */ + anchorX : number; + /** !#en Anchor point's position on y axis. + !#zh 节点 Y 轴锚点位置。 */ + anchorY : number; + /** !#en Width of node. + !#zh 节点宽度。 */ + width : number; + /** !#en Height of node. + !#zh 节点高度。 */ + height : number; + /** !#en Tag of node. + !#zh 节点标签。 */ + tag : number; + /** !#en Opacity of node, default value is 255. + !#zh 节点透明度,默认值为 255。 */ + opacity : number; + /** !#en Indicate whether node's opacity value affect its child nodes, default value is false. + !#zh 节点的不透明度值是否影响其子节点,默认值为 false。 */ + cascadeOpacity : boolean; + /** !#en Color of node, default value is white: (255, 255, 255). + !#zh 节点颜色。默认为白色,数值为:(255,255,255)。 */ + color : Color; + /** !#en + Properties configuration function
+ All properties in attrs will be set to the node,
+ when the setter of the node is available,
+ the property will be set via setter function.
+ !#zh 属性配置函数。在 attrs 的所有属性将被设置为节点属性。 + @param attrs Properties to be set to node + + @example + ```js + var attrs = { key: 0, num: 100 }; + node.attr(attrs); + ``` + */ + attr(attrs : any) : void; + /** !#en + Defines the oder in which the nodes are renderer. + Nodes that have a Global Z Order lower, are renderer first. +
+ In case two or more nodes have the same Global Z Order, the oder is not guaranteed. + The only exception if the Nodes have a Global Z Order == 0. In that case, the Scene Graph order is used. +
+ By default, all nodes have a Global Z Order = 0. That means that by default, the Scene Graph order is used to render the nodes. +
+ Global Z Order is useful when you need to render nodes in an order different than the Scene Graph order. +
+ Limitations: Global Z Order can't be used used by Nodes that have SpriteBatchNode as one of their ancestors. + And if ClippingNode is one of the ancestors, then "global Z order" will be relative to the ClippingNode. + !#zh + 定义节点的渲染顺序。 + 节点具有全局 Z 顺序,顺序越小的节点,最先渲染。 +
+ 假设两个或者更多的节点拥有相同的全局 Z 顺序,那么渲染顺序无法保证。 + 唯一的例外是如果节点的全局 Z 顺序为零,那么场景中的顺序是可以使用默认的。 +
+ 所有的节点全局 Z 顺序都是零。这就是说,默认使用场景中的顺序来渲染节点。 +
+ 全局 Z 顺序是非常有用的当你需要渲染节点按照不同的顺序而不是场景顺序。 +
+ 局限性: 全局 Z 顺序不能够被拥有继承 “SpriteBatchNode” 的节点使用。 + 并且如果 “ClippingNode” 是其中之一的上代,那么 “global Z order” 将会和 “ClippingNode” 有关。 + + @example + ```js + node.setGlobalZOrder(0); + ``` + */ + setGlobalZOrder(globalZOrder : number) : void; + /** !#en Return the Node's Global Z Order. + !#zh 获取节点的全局 Z 顺序。 + + @example + ```js + cc.log("Global Z Order: " + node.getGlobalZOrder()); + ``` + */ + getGlobalZOrder() : number; + /** !#en + Returns the scale factor of the node. + Assertion will fail when _scaleX != _scaleY. + !#zh 获取节点的缩放。当 X 轴和 Y 轴有相同的缩放数值时。 + + @example + ```js + cc.log("Node Scale: " + node.getScale()); + ``` + */ + getScale() : number; + /** !#en Sets the scale factor of the node. 1.0 is the default scale factor. This function can modify the X and Y scale at the same time. + !#zh 设置节点的缩放比例,默认值为 1.0。这个函数可以在同一时间修改 X 和 Y 缩放。 + @param scale scaleX or scale + + @example + ```js + node.setScale(cc.v2(1, 1)); + node.setScale(1, 1); + ``` + */ + setScale(scale : number|Vec2, scaleY? : number) : void; + /** !#en Returns a copy of the position (x,y) of the node in cocos2d coordinates. (0,0) is the left-bottom corner. + !#zh 获取在父节点坐标系中节点的位置( x , y )。 + + @example + ```js + cc.log("Node Position: " + node.getPosition()); + ``` + */ + getPosition() : Vec2; + /** !#en + Changes the position (x,y) of the node in cocos2d coordinates.
+ The original point (0,0) is at the left-bottom corner of screen.
+ Usually we use cc.v2(x,y) to compose CCVec2 object.
+ and Passing two numbers (x,y) is more efficient than passing CCPoint object. + !#zh + 设置节点在父坐标系中的位置。
+ 可以通过 2 种方式设置坐标点:
+ 1.传入 cc.v2(x, y) 类型为 cc.Vec2 的对象。
+ 2.传入 2 个数值 x 和 y。 + @param newPosOrxValue The position (x,y) of the node in coordinates or the X coordinate for position + @param yValue Y coordinate for position + + @example + ```js + node.setPosition(cc.v2(0, 0)); + node.setPosition(0, 0); + + ``` + */ + setPosition(newPosOrxValue : Vec2|number, yValue? : number) : void; + /** !#en + Returns a copy of the anchor point.
+ Anchor point is the point around which all transformations and positioning manipulations take place.
+ It's like a pin in the node where it is "attached" to its parent.
+ The anchorPoint is normalized, like a percentage. (0,0) means the bottom-left corner and (1,1) means the top-right corner.
+ But you can use values higher than (1,1) and lower than (0,0) too.
+ The default anchor point is (0.5,0.5), so it starts at the center of the node. + !#zh + 获取节点锚点,用百分比表示。
+ 锚点应用于所有变换和坐标点的操作,它就像在节点上连接其父节点的大头针。
+ 锚点是标准化的,就像百分比一样。(0,0) 表示左下角,(1,1) 表示右上角。
+ 但是你可以使用比(1,1)更高的值或者比(0,0)更低的值。
+ 默认的锚点是(0.5,0.5),因此它开始于节点的中心位置。
+ 注意:Creator 中的锚点仅用于定位所在的节点,子节点的定位不受影响。 + + @example + ```js + cc.log("Node AnchorPoint: " + node.getAnchorPoint()); + ``` + */ + getAnchorPoint() : Vec2; + /** !#en + Sets the anchor point in percent.
+ anchor point is the point around which all transformations and positioning manipulations take place.
+ It's like a pin in the node where it is "attached" to its parent.
+ The anchorPoint is normalized, like a percentage. (0,0) means the bottom-left corner and (1,1) means the top-right corner.
+ But you can use values higher than (1,1) and lower than (0,0) too.
+ The default anchor point is (0.5,0.5), so it starts at the center of the node. + !#zh + 设置锚点的百分比。
+ 锚点应用于所有变换和坐标点的操作,它就像在节点上连接其父节点的大头针。
+ 锚点是标准化的,就像百分比一样。(0,0) 表示左下角,(1,1) 表示右上角。
+ 但是你可以使用比(1,1)更高的值或者比(0,0)更低的值。
+ 默认的锚点是(0.5,0.5),因此它开始于节点的中心位置。
+ 注意:Creator 中的锚点仅用于定位所在的节点,子节点的定位不受影响。 + @param point The anchor point of node or The x axis anchor of node. + @param y The y axis anchor of node. + + @example + ```js + node.setAnchorPoint(cc.v2(1, 1)); + node.setAnchorPoint(1, 1); + ``` + */ + setAnchorPoint(point : Vec2|number, y? : number) : void; + /** !#en + Returns a copy of the anchor point in absolute pixels.
+ you can only read it. If you wish to modify it, use setAnchorPoint. + !#zh + 返回锚点的绝对像素位置。
+ 你只能读它。如果您要修改它,使用 setAnchorPoint。 + + @example + ```js + cc.log("AnchorPointInPoints: " + node.getAnchorPointInPoints()); + ``` + */ + getAnchorPointInPoints() : Vec2; + /** !#en + Returns a copy the untransformed size of the node.
+ The contentSize remains the same no matter the node is scaled or rotated.
+ All nodes has a size. Layer and Scene has the same size of the screen by default.
+ !#zh 获取节点自身大小,不受该节点是否被缩放或者旋转的影响。 + @param ignoreSizeProvider true if you need to get the original size of the node + + @example + ```js + cc.log("Content Size: " + node.getContentSize()); + ``` + */ + getContentSize(ignoreSizeProvider? : boolean) : Size; + /** !#en + Sets the untransformed size of the node.
+ The contentSize remains the same no matter the node is scaled or rotated.
+ All nodes has a size. Layer and Scene has the same size of the screen. + !#zh 设置节点原始大小,不受该节点是否被缩放或者旋转的影响。 + @param size The untransformed size of the node or The untransformed size's width of the node. + @param height The untransformed size's height of the node. + + @example + ```js + node.setContentSize(cc.size(100, 100)); + node.setContentSize(100, 100); + ``` + */ + setContentSize(size : Size|number, height? : number) : void; + /** !#en + Returns a "local" axis aligned bounding box of the node.
+ The returned box is relative only to its parent. + !#zh 返回父节坐标系下的轴向对齐的包围盒。 + + @example + ```js + var boundingBox = node.getBoundingBox(); + ``` + */ + getBoundingBox() : Rect; + /** !#en Stops all running actions and schedulers. + !#zh 停止所有正在播放的动作和计时器。 + + @example + ```js + node.cleanup(); + ``` + */ + cleanup() : void; + /** !#en Returns a child from the container given its tag. + !#zh 通过标签获取节点的子节点。 + @param aTag An identifier to find the child node. + + @example + ```js + var child = node.getChildByTag(1001); + ``` + */ + getChildByTag(aTag : number) : Node; + /** !#en Returns a child from the container given its uuid. + !#zh 通过 uuid 获取节点的子节点。 + @param uuid The uuid to find the child node. + + @example + ```js + var child = node.getChildByUuid(uuid); + ``` + */ + getChildByUuid(uuid : string) : Node; + /** !#en Returns a child from the container given its name. + !#zh 通过名称获取节点的子节点。 + @param name A name to find the child node. + + @example + ```js + var child = node.getChildByName("Test Node"); + ``` + */ + getChildByName(name : string) : Node; + /** !#en + "add" logic MUST only be in this method
+ !#zh + 添加子节点,并且可以修改该节点的 局部 Z 顺序和标签。 + @param child A child node + @param localZOrder Z order for drawing priority. Please refer to setZOrder(int) + @param tag An integer or a name to identify the node easily. Please refer to setTag(int) and setName(string) + + @example + ```js + node.addChild(newNode, 1, 1001); + ``` + */ + addChild(child : Node, localZOrder? : number, tag? : number|string) : void; + /** !#en + Remove itself from its parent node. If cleanup is true, then also remove all actions and callbacks.
+ If the cleanup parameter is not passed, it will force a cleanup.
+ If the node orphan, then nothing happens. + !#zh + 从父节点中删除一个节点。cleanup 参数为 true,那么在这个节点上所有的动作和回调都会被删除,反之则不会。
+ 如果不传入 cleanup 参数,默认是 true 的。
+ 如果这个节点是一个孤节点,那么什么都不会发生。 + @param cleanup true if all actions and callbacks on this node should be removed, false otherwise. + + @example + ```js + node.removeFromParent(); + node.removeFromParent(false); + ``` + */ + removeFromParent(cleanup? : boolean) : void; + /** !#en + Removes a child from the container. It will also cleanup all running actions depending on the cleanup parameter.

+ If the cleanup parameter is not passed, it will force a cleanup.
+ "remove" logic MUST only be on this method
+ If a class wants to extend the 'removeChild' behavior it only needs
+ to override this method. + !#zh + 移除节点中指定的子节点,是否需要清理所有正在运行的行为取决于 cleanup 参数。
+ 如果 cleanup 参数不传入,默认为 true 表示清理。
+ @param child The child node which will be removed. + @param cleanup true if all running actions and callbacks on the child node will be cleanup, false otherwise. + + @example + ```js + node.removeChild(newNode); + node.removeChild(newNode, false); + ``` + */ + removeChild(child : Node, cleanup? : boolean) : void; + /** !#en + Removes a child from the container by tag value. It will also cleanup all running actions depending on the cleanup parameter. + If the cleanup parameter is not passed, it will force a cleanup.
+ !#zh + 通过标签移除节点中指定的子节点,是否需要清理所有正在运行的行为取决于 cleanup 参数。
+ 如果 cleanup 参数不传入,默认为 true 表示清理。 + @param tag An integer number that identifies a child node + @param cleanup true if all running actions and callbacks on the child node will be cleanup, false otherwise. + + @example + ```js + node.removeChildByTag(1001); + node.removeChildByTag(1001, false); + ``` + */ + removeChildByTag(tag : number, cleanup? : boolean) : void; + /** !#en + Removes all children from the container and do a cleanup all running actions depending on the cleanup parameter.
+ If the cleanup parameter is not passed, it will force a cleanup. + !#zh + 移除节点所有的子节点,是否需要清理所有正在运行的行为取决于 cleanup 参数。
+ 如果 cleanup 参数不传入,默认为 true 表示清理。 + @param cleanup true if all running actions on all children nodes should be cleanup, false otherwise. + + @example + ```js + node.removeAllChildren(); + node.removeAllChildren(false); + ``` + */ + removeAllChildren(cleanup? : boolean) : void; + /** !#en + Returns the matrix that transform parent's space coordinates to the node's (local) space coordinates.
+ The matrix is in Pixels. The returned transform is readonly and cannot be changed. + !#zh + 返回将父节点的坐标系转换成节点(局部)的空间坐标系的矩阵。
+ 该矩阵以像素为单位。返回的矩阵是只读的,不能更改。 + + @example + ```js + var affineTransform = node.getParentToNodeTransform(); + ``` + */ + getParentToNodeTransform() : AffineTransform; + /** !#en Returns the world affine transform matrix. The matrix is in Pixels. + !#zh 返回节点到世界坐标系的仿射变换矩阵。矩阵单位是像素。 + + @example + ```js + var affineTransform = node.getNodeToWorldTransform(); + ``` + */ + getNodeToWorldTransform() : AffineTransform; + /** !#en + Returns the world affine transform matrix. The matrix is in Pixels.
+ This method is AR (Anchor Relative). + !#zh + 返回节点到世界坐标仿射变换矩阵。矩阵单位是像素。
+ 该方法基于节点坐标。 + + @example + ```js + var mat = node.getNodeToWorldTransformAR(); + ``` + */ + getNodeToWorldTransformAR() : AffineTransform; + /** !#en Returns the inverse world affine transform matrix. The matrix is in Pixels. + !#en 返回世界坐标系到节点坐标系的逆矩阵。 + + @example + ```js + var affineTransform = node.getWorldToNodeTransform(); + ``` + */ + getWorldToNodeTransform() : AffineTransform; + /** !#en Converts a Point to node (local) space coordinates. The result is in Vec2. + !#zh 将一个点转换到节点 (局部) 坐标系。结果以 Vec2 为单位。 + + @example + ```js + var newVec2 = node.convertToNodeSpace(cc.v2(100, 100)); + ``` + */ + convertToNodeSpace(worldPoint : Vec2) : Vec2; + /** !#en Converts a Point to world space coordinates. The result is in Points. + !#zh 将一个点转换到世界空间坐标系。结果以 Vec2 为单位。 + + @example + ```js + var newVec2 = node.convertToWorldSpace(cc.v2(100, 100)); + ``` + */ + convertToWorldSpace(nodePoint : Vec2) : Vec2; + /** !#en + Converts a Point to node (local) space coordinates. The result is in Points.
+ treating the returned/received node point as anchor relative. + !#zh + 将一个点转换到节点 (局部) 空间坐标系。结果以 Vec2 为单位。
+ 返回值将基于节点坐标。 + + @example + ```js + var newVec2 = node.convertToNodeSpaceAR(cc.v2(100, 100)); + ``` + */ + convertToNodeSpaceAR(worldPoint : Vec2) : Vec2; + /** !#en + Converts a local Point to world space coordinates.The result is in Points.
+ treating the returned/received node point as anchor relative. + !#zh + 将一个点转换到世界空间坐标系。结果以 Vec2 为单位。
+ 返回值将基于节点坐标。 + + @example + ```js + var newVec2 = node.convertToWorldSpaceAR(cc.v2(100, 100)); + ``` + */ + convertToWorldSpaceAR(nodePoint : Vec2) : Vec2; + /** !#en convenience methods which take a cc.Touch instead of cc.Vec2. + !#zh 将触摸点转换成本地坐标系中位置。 + @param touch The touch object + + @example + ```js + var newVec2 = node.convertTouchToNodeSpace(touch); + ``` + */ + convertTouchToNodeSpace(touch : Touch) : Vec2; + /** !#en converts a cc.Touch (world coordinates) into a local coordinate. This method is AR (Anchor Relative). + !#zh 转换一个 cc.Touch(世界坐标)到一个局部坐标,该方法基于节点坐标。 + @param touch The touch object + + @example + ```js + var newVec2 = node.convertTouchToNodeSpaceAR(touch); + ``` + */ + convertTouchToNodeSpaceAR(touch : Touch) : Vec2; + /** !#en + Returns the matrix that transform the node's (local) space coordinates into the parent's space coordinates.
+ The matrix is in Pixels. + !#zh 返回这个将节点(局部)的空间坐标系转换成父节点的空间坐标系的矩阵。这个矩阵以像素为单位。 + + @example + ```js + var affineTransform = node.getNodeToParentTransform(); + ``` + */ + getNodeToParentTransform() : AffineTransform; + /** !#en + Returns the matrix that transform the node's (local) space coordinates into the parent's space coordinates.
+ The matrix is in Pixels.
+ This method is AR (Anchor Relative). + !#zh + 返回这个将节点(局部)的空间坐标系转换成父节点的空间坐标系的矩阵。
+ 这个矩阵以像素为单位。
+ 该方法基于节点坐标。 + + @example + ```js + var affineTransform = node.getNodeToParentTransformAR(); + ``` + */ + getNodeToParentTransformAR() : AffineTransform; + /** !#en + Returns a "world" axis aligned bounding box of the node.
+ The bounding box contains self and active children's world bounding box. + !#zh + 返回节点在世界坐标系下的对齐轴向的包围盒(AABB)。
+ 该边框包含自身和已激活的子节点的世界边框。 + + @example + ```js + var newRect = node.getBoundingBoxToWorld(); + ``` + */ + getBoundingBoxToWorld() : Rect; + /** !#en + Returns the displayed opacity of Node, + the difference between displayed opacity and opacity is that displayed opacity is calculated based on opacity and parent node's opacity when cascade opacity enabled. + !#zh + 获取节点显示透明度, + 显示透明度和透明度之间的不同之处在于当启用级连透明度时, + 显示透明度是基于自身透明度和父节点透明度计算的。 + + @example + ```js + var displayOpacity = node.getDisplayedOpacity(); + ``` + */ + getDisplayedOpacity() : number; + /** !#en + Returns the displayed color of Node, + the difference between displayed color and color is that displayed color is calculated based on color and parent node's color when cascade color enabled. + !#zh + 获取节点的显示透明度, + 显示透明度和透明度之间的不同之处在于显示透明度是基于透明度和父节点透明度启用级连透明度时计算的。 + + @example + ```js + var displayColor = node.getDisplayedColor(); + ``` + */ + getDisplayedColor() : Color; + /** !#en + Set whether color should be changed with the opacity value, + useless in ccsg.Node, but this function is override in some class to have such behavior. + !#zh 设置更改透明度时是否修改RGB值, + + @example + ```js + node.setOpacityModifyRGB(true); + ``` + */ + setOpacityModifyRGB(opacityValue : boolean) : void; + /** !#en Get whether color should be changed with the opacity value. + !#zh 更改透明度时是否修改RGB值。 + + @example + ```js + var hasChange = node.isOpacityModifyRGB(); + ``` + */ + isOpacityModifyRGB() : boolean; + /** !#en Get the sibling index. + !#zh 获取同级索引。 + + @example + ```js + var index = node.getSiblingIndex(); + ``` + */ + getSiblingIndex() : number; + /** !#en Set the sibling index of this node. + !#zh 设置节点同级索引。 + + @example + ```js + node.setSiblingIndex(1); + ``` + */ + setSiblingIndex(index : number) : void; + /** !#en Is this node a child of the given node? + !#zh 是否是指定节点的子节点? + + @example + ```js + node.isChildOf(newNode); + ``` + */ + isChildOf(parent : Node) : boolean; + /** !#en Sorts the children array depends on children's zIndex and arrivalOrder, + normally you won't need to invoke this function. + !#zh 根据子节点的 zIndex 和 arrivalOrder 进行排序,正常情况下开发者不需要手动调用这个函数。 + */ + sortAllChildren() : void; + /** !#en position of node. + !#zh 节点相对父节点的坐标。 */ + position : Vec2; + /** !#en Scale of node. + !#zh 节点缩放 */ + scale : number; + /** !#en Returns the x axis position of the node in cocos2d coordinates. + !#zh 获取节点 X 轴坐标。 + + @example + ```js + var posX = node.getPositionX(); + ``` + */ + getPositionX() : number; + /** !#en Sets the x axis position of the node in cocos2d coordinates. + !#zh 设置节点 X 轴坐标。 + + @example + ```js + node.setPositionX(1); + ``` + */ + setPositionX(x : number) : void; + /** !#en Returns the y axis position of the node in cocos2d coordinates. + !#zh 获取节点 Y 轴坐标。 + + @example + ```js + var posY = node.getPositionY(); + ``` + */ + getPositionY() : number; + /** !#en Sets the y axis position of the node in cocos2d coordinates. + !#zh 设置节点 Y 轴坐标。 + @param y The new position in y axis + + @example + ```js + node.setPositionY(100); + ``` + */ + setPositionY(y : number) : void; + /** !#en Returns the local Z order of this node. + !#zh 获取节点局部 Z 轴顺序。 + + @example + ```js + var localZorder = node.getLocalZOrder(); + ``` + */ + getLocalZOrder() : number; + /** !#en + LocalZOrder is the 'key' used to sort the node relative to its siblings.
+
+ The Node's parent will sort all its children based ont the LocalZOrder value.
+ If two nodes have the same LocalZOrder, then the node that was added first to the children's array
+ will be in front of the other node in the array.
+ Also, the Scene Graph is traversed using the "In-Order" tree traversal algorithm ( http://en.wikipedia.org/wiki/Tree_traversal#In-order )
+ And Nodes that have LocalZOder values smaller than 0 are the "left" subtree
+ While Nodes with LocalZOder greater than 0 are the "right" subtree. + !#zh + LocalZOrder 是 “key” (关键)来分辨节点和它兄弟节点的相关性。 + 父节点将会通过 LocalZOrder 的值来分辨所有的子节点。 + 如果两个节点有同样的 LocalZOrder,那么先加入子节点数组的节点将会显示在后加入的节点的前面。 + 同样的,场景图使用 “In-Order(按顺序)” 遍历数算法来遍历 + ( http://en.wikipedia.org/wiki/Tree_traversal#In-order ) 并且拥有小于 0 的 LocalZOrder 的值的节点是 “ left ” 子树(左子树) + 所以拥有大于 0 的 LocalZOrder 的值得节点是 “ right ”子树(右子树)。 + + @example + ```js + node.setLocalZOrder(1); + ``` + */ + setLocalZOrder(localZOrder : number) : void; + /** !#en Returns whether node's opacity value affect its child nodes. + !#zh 返回节点的不透明度值是否影响其子节点。 + + @example + ```js + cc.log(node.isCascadeOpacityEnabled()); + ``` + */ + isCascadeOpacityEnabled() : boolean; + /** !#en Enable or disable cascade opacity, if cascade enabled, child nodes' opacity will be the multiplication of parent opacity and its own opacity. + !#zh 启用或禁用级连不透明度,如果级连启用,子节点的不透明度将是父不透明度乘上它自己的不透明度。 + + @example + ```js + node.setCascadeOpacityEnabled(true); + ``` + */ + setCascadeOpacityEnabled(cascadeOpacityEnabled : boolean) : void; + /** !#en Enable or disable cascade color, if cascade enabled, child nodes' opacity will be the cascade value of parent color and its own color. + !#zh 启用或禁用级连颜色,如果级连启用,子节点的颜色将是父颜色和它自己的颜色的级连值。 + + @example + ```js + node.setCascadeColorEnabled(true); + ``` + */ + setCascadeColorEnabled(cascadeColorEnabled : boolean) : void; + } + /** !#en + cc.AffineTransform class represent an affine transform matrix. It's composed basically by translation, rotation, scale transformations.
+ Please do not use its constructor directly, use cc.affineTransformMake alias function instead. + !#zh + cc.AffineTransform 类代表一个仿射变换矩阵。它基本上是由平移旋转,缩放转变所组成。
+ 请不要直接使用它的构造,请使用 cc.affineTransformMake 函数代替。 */ + export class AffineTransform { + /** !#en Create a cc.AffineTransform object with all contents in the matrix. + !#zh 用在矩阵中的所有内容创建一个 cc.AffineTransform 对象。 + */ + affineTransformMake(a : number, b : number, c : number, d : number, tx : number, ty : number) : AffineTransform; + /** !#en Clone a cc.AffineTransform object from the specified transform. + !#zh 克隆指定的 cc.AffineTransform 对象。 + */ + affineTransformClone(t : AffineTransform) : AffineTransform; + /** !#en Apply the affine transformation on a point. + !#zh 对一个点应用矩阵变换。 + @param point or x. + @param transOrY transform matrix or y. + @param t transform matrix or y. + */ + pointApplyAffineTransform(point : Vec2|number, transOrY : AffineTransform|number, t : AffineTransform) : Vec2; + /** !#en Apply the affine transformation on a size. + !#zh 应用 Size 到仿射变换矩阵上。 + */ + sizeApplyAffineTransform(size : Size, t : AffineTransform) : Size; + /** !#en + Create a identity transformation matrix:
+ [ 1, 0, 0,
+ 0, 1, 0 ] + !#zh + 单位矩阵:
+ [ 1, 0, 0,
+ 0, 1, 0 ] + */ + affineTransformMakeIdentity() : AffineTransform; + /** !#en Apply the affine transformation on a rect. + !#zh 应用 Rect 到仿射变换矩阵上。 + */ + rectApplyAffineTransform(rect : Rect, anAffineTransform : AffineTransform) : Rect; + /** !#en Apply the affine transformation on a rect, and truns to an Oriented Bounding Box. + !#zh 应用 Rect 到仿射变换矩阵上, 并转换为有向包围盒 + */ + obbApplyAffineTransform(rect : Rect, anAffineTransform : AffineTransform, out_bl : Vec2, out_tl : Vec2, out_tr : Vec2, out_br : Vec2) : void; + /** !#en Create a new affine transformation with a base transformation matrix and a translation based on it. + !#zh 基于一个基础矩阵加上一个平移操作来创建一个新的矩阵。 + @param t The base affine transform object. + @param tx The translation on x axis. + @param ty The translation on y axis. + */ + affineTransformTranslate(t : AffineTransform, tx : number, ty : number) : AffineTransform; + /** !#en Create a new affine transformation with a base transformation matrix and a scale based on it. + !#zh 创建一个基础变换矩阵,并在此基础上进行了 Scale 仿射变换。 + @param t The base affine transform object. + @param sx The scale on x axis. + @param sy The scale on y axis. + */ + affineTransformScale(t : AffineTransform, sx : number, sy : number) : AffineTransform; + /** !#en Create a new affine transformation with a base transformation matrix and a rotation based on it. + !#zh 创建一个基础变换矩阵,并在此基础上进行了 Rotation 仿射变换。 + @param aTransform The base affine transform object. + @param anAngle The angle to rotate. + */ + affineTransformRotate(aTransform : AffineTransform, anAngle : number) : AffineTransform; + /** !#en + Concatenate a transform matrix to another and return the result:
+ t' = t1 * t2 + !#zh 拼接两个矩阵,并返回结果:
+ t' = t1 * t2 + @param t1 The first transform object. + @param t2 The transform object to concatenate. + */ + affineTransformConcat(t1 : AffineTransform, t2 : AffineTransform) : AffineTransform; + /** !#en + Concatenate a transform matrix to another
+ The results are reflected in the first matrix.
+ t' = t1 * t2 + !#zh + 拼接两个矩阵,将结果保存到第一个矩阵。
+ t' = t1 * t2 + @param t1 The first transform object. + @param t2 The transform object to concatenate. + */ + affineTransformConcatIn(t1 : AffineTransform, t2 : AffineTransform) : AffineTransform; + /** !#en Return true if an affine transform equals to another, false otherwise. + !#zh 判断两个矩阵是否相等。 + */ + affineTransformEqualToTransform(t1 : AffineTransform, t2 : AffineTransform) : boolean; + /** !#en Get the invert transform of an AffineTransform object. + !#zh 求逆矩阵。 + */ + affineTransformInvert(t : AffineTransform) : AffineTransform; + } + /** !#en + Representation of RGBA colors. + + Each color component is a floating point value with a range from 0 to 255. + + You can also use the convenience method {{#crossLink "cc/color:method"}}cc.color{{/crossLink}} to create a new Color. + + !#zh + cc.Color 用于表示颜色。 + + 它包含 RGBA 四个以浮点数保存的颜色分量,每个的值都在 0 到 255 之间。 + + 您也可以通过使用 {{#crossLink "cc/color:method"}}cc.color{{/crossLink}} 的便捷方法来创建一个新的 Color。 */ + export class Color extends ValueType { + /** + @param r red component of the color, default value is 0. + @param g green component of the color, defualt value is 0. + @param b blue component of the color, default value is 0. + @param a alpha component of the color, default value is 255. + */ + Color(r? : number, g? : number, b? : number, a? : number) : Color; + /** !#en Solid white, RGBA is [255, 255, 255, 255]. + !#zh 纯白色,RGBA 是 [255, 255, 255, 255]。 */ + WHITE : Color; + /** !#en Solid black, RGBA is [0, 0, 0, 255]. + !#zh 纯黑色,RGBA 是 [0, 0, 0, 255]。 */ + BLACK : Color; + /** !#en Transparent, RGBA is [0, 0, 0, 0]. + !#zh 透明,RGBA 是 [0, 0, 0, 0]。 */ + TRANSPARENT : Color; + /** !#en Grey, RGBA is [127.5, 127.5, 127.5]. + !#zh 灰色,RGBA 是 [127.5, 127.5, 127.5]。 */ + GRAY : Color; + /** !#en Solid red, RGBA is [255, 0, 0]. + !#zh 纯红色,RGBA 是 [255, 0, 0]。 */ + RED : Color; + /** !#en Solid green, RGBA is [0, 255, 0]. + !#zh 纯绿色,RGBA 是 [0, 255, 0]。 */ + GREEN : Color; + /** !#en Solid blue, RGBA is [0, 0, 255]. + !#zh 纯蓝色,RGBA 是 [0, 0, 255]。 */ + BLUE : Color; + /** !#en Yellow, RGBA is [255, 235, 4]. + !#zh 黄色,RGBA 是 [255, 235, 4]。 */ + YELLOW : Color; + /** !#en Orange, RGBA is [255, 127, 0]. + !#zh 橙色,RGBA 是 [255, 127, 0]。 */ + ORANGE : Color; + /** !#en Cyan, RGBA is [0, 255, 255]. + !#zh 青色,RGBA 是 [0, 255, 255]。 */ + CYAN : Color; + /** !#en Magenta, RGBA is [255, 0, 255]. + !#zh 洋红色(品红色),RGBA 是 [255, 0, 255]。 */ + MAGENTA : Color; + /** !#en Clone a new color from the current color. + !#zh 克隆当前颜色。 + + @example + ```js + var color = new cc.Color(); + var newColor = color.clone();// Color {r: 0, g: 0, b: 0, a: 255} + ``` + */ + clone() : Color; + /** !#en TODO + !#zh 判断两个颜色是否相等。 + + @example + ```js + var color1 = cc.Color.WHITE; + var color2 = new cc.Color(255, 255, 255); + cc.log(color1.equals(color2)); // true; + color2 = cc.Color.RED; + cc.log(color2.equals(color1)); // false; + ``` + */ + equals(other: (r: number, g: number, b: number, a: number) => void) : boolean; + /** !#en TODO + !#zh 线性插值 + @param ratio the interpolation coefficient. + @param out optional, the receiving vector. + + @example + ```js + // Converts a white color to a black one trough time. + update: function (dt) { + var color = this.node.color; + if (color.equals(cc.Color.BLACK)) { + return; + } + this.ratio += dt * 0.1; + this.node.color = cc.Color.WHITE.lerp(cc.Color.BLACK, ratio); + } + + ``` + */ + lerp(to: (r: number, g: number, b: number, a: number) => void, ratio : number, out: (r: number, g: number, b: number, a: number) => void) : Color; + /** !#en TODO + !#zh 转换为方便阅读的字符串。 + + @example + ```js + var color = cc.Color.WHITE; + color.toString(); // "rgba(255, 255, 255, 255)" + ``` + */ + toString() : string; + /** !#en TODO + !#zh 设置当前的红色值,并返回当前对象。 + @param red the new Red component. + + @example + ```js + var color = new cc.Color(); + color.setR(255); // Color {r: 255, g: 0, b: 0, a: 255} + ``` + */ + setR(red : number) : Color; + /** !#en TODO + !#zh 设置当前的绿色值,并返回当前对象。 + @param green the new Green component. + + @example + ```js + var color = new cc.Color(); + color.setG(255); // Color {r: 0, g: 255, b: 0, a: 255} + ``` + */ + setG(green : number) : Color; + /** !#en TODO + !#zh 设置当前的蓝色值,并返回当前对象。 + @param blue the new Blue component. + + @example + ```js + var color = new cc.Color(); + color.setB(255); // Color {r: 0, g: 0, b: 255, a: 255} + ``` + */ + setB(blue : number) : Color; + /** !#en TODO + !#zh 设置当前的透明度,并返回当前对象。 + @param alpha the new Alpha component. + + @example + ```js + var color = new cc.Color(); + color.setA(0); // Color {r: 0, g: 0, b: 0, a: 0} + ``` + */ + setA(alpha : number) : Color; + /** !#en TODO + !#zh 转换为 CSS 格式。 + @param opt "rgba", "rgb", "#rgb" or "#rrggbb". + + @example + ```js + var color = cc.Color.BLACK; + color.toCSS(); // "#000"; + color.toCSS("rgba"); // "rgba(0,0,0,1.00)"; + color.toCSS("rgb"); // "rgba(0,0,0)"; + color.toCSS("#rgb"); // "#000"; + color.toCSS("#rrggbb"); // "#000000"; + ``` + */ + toCSS(opt : string) : string; + /** !#en Clamp this color to make all components between 0 to 255。 + !#zh 限制颜色数值,在 0 到 255 之间。 + + @example + ```js + var color = new cc.Color(1000, 0, 0, 255); + color.clamp(); + cc.log(color); // (255, 0, 0, 255) + ``` + */ + clamp() : void; + /** !#en TODO + !#zh 读取 16 进制。 + + @example + ```js + var color = cc.Color.BLACK; + color.fromHEX("#FFFF33"); // Color {r: 255, g: 255, b: 51, a: 255}; + ``` + */ + fromHEX(hexString : string) : Color; + /** !#en TODO + !#zh 转换为 16 进制。 + @param fmt "#rgb" or "#rrggbb". + + @example + ```js + var color = cc.Color.BLACK; + color.toHEX("#rgb"); // "000"; + color.toHEX("#rrggbb"); // "000000"; + ``` + */ + toHEX(fmt : string) : string; + /** !#en Convert to 24bit rgb value. + !#zh 转换为 24bit 的 RGB 值。 + + @example + ```js + var color = cc.Color.YELLOW; + color.toRGBValue(); // 16771844; + ``` + */ + toRGBValue() : number; + /** !#en TODO + !#zh 读取 HSV(色彩模型)格式。 + + @example + ```js + var color = cc.Color.YELLOW; + color.fromHSV(0, 0, 1); // Color {r: 255, g: 255, b: 255, a: 255}; + ``` + */ + fromHSV(h : number, s : number, v : number) : Color; + /** !#en TODO + !#zh 转换为 HSV(色彩模型)格式。 + + @example + ```js + var color = cc.Color.YELLOW; + color.toHSV(); // Object {h: 0.1533864541832669, s: 0.9843137254901961, v: 1}; + ``` + */ + toHSV() : any; + /** !#en TODO + !#zh RGB 转换为 HSV。 + @param r red, must be [0, 255]. + @param g red, must be [0, 255]. + @param b red, must be [0, 255]. + + @example + ```js + cc.Color.rgb2hsv(255, 255, 255); // Object {h: 0, s: 0, v: 1}; + ``` + */ + rgb2hsv(r : number, g : number, b : number) : any; + /** !#en TODO + !#zh HSV 转换为 RGB。 + + @example + ```js + cc.Color.hsv2rgb(0, 0, 1); // Object {r: 255, g: 255, b: 255}; + ``` + */ + hsv2rgb(h : number, s : number, v : number) : any; + } + /** !#en A 2D rectangle defined by x, y position and width, height. + !#zh 通过位置和宽高定义的 2D 矩形。 */ + export class Rect extends ValueType { + /** !#en + Constructor of cc.Rect class. + see {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} for convenience method. + !#zh + cc.Rect类的构造函数。可以通过 {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} 简便方法进行创建。 + */ + Rect(x? : number, y? : number, w? : number, h? : number) : Rect; + /** !#en Creates a rectangle from two coordinate values. + !#zh 根据指定 2 个坐标创建出一个矩形区域。 + + @example + ```js + cc.Rect.fromMinMax(cc.v2(10, 10), cc.v2(20, 20)); // Rect {x: 10, y: 10, width: 10, height: 10}; + ``` + */ + fromMinMax(v1 : Vec2, v2 : Vec2) : Rect; + /** !#en Checks if rect contains. + !#zh + 判断 2 个矩形是否有包含。
+ 返回 1 为 a 包含 b,如果 -1 为 b 包含 a, + 0 这则都不包含。 + @param a Rect a + @param b Rect b + + @example + ```js + var a = new cc.rect(0, 0, 10, 10); + var b = new cc.rect(5, 5, 5, 5); + var c = new cc.rect(20, 20, 10, 10); + cc.Rect.contain(a, b); // 1; + cc.Rect.contain(b, a); // -1; + cc.Rect.contain(a, c); // 0; + ``` + */ + contain(a: (x: number, y: number, w: number, h: number) => void, b: (x: number, y: number, w: number, h: number) => void) : number; + /** !#en TODO + !#zh 克隆一个新的 Rect。 + + @example + ```js + var a = new cc.rect(0, 0, 10, 10); + a.clone();// Rect {x: 0, y: 0, width: 10, height: 10} + ``` + */ + clone() : Rect; + /** !#en TODO + !#zh 是否等于指定的矩形。 + @param other !#en + Constructor of cc.Rect class. + see {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} for convenience method. + !#zh + cc.Rect类的构造函数。可以通过 {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} 简便方法进行创建。 + + @example + ```js + var a = new cc.rect(0, 0, 10, 10); + var b = new cc.rect(0, 0, 10, 10); + a.equals(b);// true; + ``` + */ + equals(other: (x: number, y: number, w: number, h: number) => void) : boolean; + /** !#en TODO + !#zh 线性插值 + @param to !#en + Constructor of cc.Rect class. + see {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} for convenience method. + !#zh + cc.Rect类的构造函数。可以通过 {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} 简便方法进行创建。 + @param ratio the interpolation coefficient. + @param out optional, the receiving vector. + + @example + ```js + var a = new cc.rect(0, 0, 10, 10); + var b = new cc.rect(50, 50, 100, 100); + update (dt) { + // method 1; + var c = a.lerp(b, dt * 0.1); + // method 2; + a.lerp(b, dt * 0.1, c); + } + ``` + */ + lerp(to: (x: number, y: number, w: number, h: number) => void, ratio : number, out: (x: number, y: number, w: number, h: number) => void) : Rect; + /** !#en TODO + !#zh 转换为方便阅读的字符串 + + @example + ```js + var a = new cc.rect(0, 0, 10, 10); + a.toString();// "(0.00, 0.00, 10.00, 10.00)"; + ``` + */ + toString() : string; + /** !#en TODO + !#zh 矩形 x 轴上的最小值。 */ + xMin : number; + /** !#en TODO + !#zh 矩形 y 轴上的最小值。 */ + yMin : number; + /** !#en TODO + !#zh 矩形 x 轴上的最大值。 */ + xMax : number; + /** !#en TODO + !#zh 矩形 y 轴上的最大值。 */ + yMax : number; + /** !#en TODO + !#zh 矩形的中心点。 */ + center : number; + /** !#en TODO + !#zh 矩形的大小。 */ + size : Size; + /** !#en TODO + !#zh 当前矩形与指定矩形是否相交。 + @param rect !#en + Constructor of cc.Rect class. + see {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} for convenience method. + !#zh + cc.Rect类的构造函数。可以通过 {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} 简便方法进行创建。 + + @example + ```js + var a = new cc.rect(0, 0, 10, 10); + var b = new cc.rect(0, 0, 20, 20); + a.intersects(b);// true + ``` + */ + intersects(rect: (x: number, y: number, w: number, h: number) => void) : void; + /** !#en TODO + !#zh 当前矩形是否包含指定坐标点。 + Returns true if the point inside this rectangle. + + @example + ```js + var a = new cc.rect(0, 0, 10, 10); + var b = new cc.v2(0, 5); + a.contains(b);// true + ``` + */ + contains(point : Vec2) : void; + /** !#en Returns true if the other rect totally inside this rectangle. + !#zh 当前矩形是否包含指定矩形。 + @param rect !#en + Constructor of cc.Rect class. + see {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} for convenience method. + !#zh + cc.Rect类的构造函数。可以通过 {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} 简便方法进行创建。 + + @example + ```js + var a = new cc.rect(0, 0, 10, 10); + var b = new cc.rect(0, 0, 20, 20); + a.containsRect(b);// true + ``` + */ + containsRect(rect: (x: number, y: number, w: number, h: number) => void) : void; + } + /** !#en + cc.Size is the class for size object,
+ please do not use its constructor to create sizes,
+ use {{#crossLink "cc/size:method"}}{{/crossLink}} alias function instead.
+ It will be deprecated soon, please use cc.Vec2 instead. + + !#zh + cc.Size 是 size 对象的类。
+ 请不要使用它的构造函数创建的 size,
+ 使用 {{#crossLink "cc/size:method"}}{{/crossLink}} 别名函数。
+ 它不久将被取消,请使用cc.Vec2代替。 */ + export class Size { + /** + */ + Size(width : number, height : number) : Size; + /** !#en return a Size object with width = 0 and height = 0. + !#zh 返回一个宽度为 0 和高度为 0 的 Size 对象。 */ + ZERO : Size; + /** !#en TODO + !#zh 克隆 size 对象。 + + @example + ```js + var a = new cc.size(10, 10); + a.clone();// return Size {width: 0, height: 0}; + ``` + */ + clone() : Size; + /** !#en TODO + !#zh 当前 Size 对象是否等于指定 Size 对象。 + + @example + ```js + var a = new cc.size(10, 10); + a.equals(new cc.size(10, 10));// return true; + ``` + */ + equals(other: (width: number, height: number) => void) : boolean; + /** !#en TODO + !#zh 线性插值。 + @param to !#en + Constructor of cc.Rect class. + see {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} for convenience method. + !#zh + cc.Rect类的构造函数。可以通过 {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} 简便方法进行创建。 + @param ratio the interpolation coefficient. + @param out optional, the receiving vector. + + @example + ```js + var a = new cc.size(10, 10); + var b = new cc.rect(50, 50, 100, 100); + update (dt) { + // method 1; + var c = a.lerp(b, dt * 0.1); + // method 2; + a.lerp(b, dt * 0.1, c); + } + ``` + */ + lerp(to: (x: number, y: number, w: number, h: number) => void, ratio : number, out: (width: number, height: number) => void) : Size; + /** !#en TODO + !#zh 转换为方便阅读的字符串。 + + @example + ```js + var a = new cc.size(10, 10); + a.toString();// return "(10.00, 10.00)"; + ``` + */ + toString() : string; + /** !#en + Helper function that creates a cc.Size.
+ Please use cc.p or cc.v2 instead, it will soon replace cc.Size. + !#zh + 创建一个 cc.Size 对象的帮助函数。
+ 注意:可以使用 cc.p 或者是 cc.v2 代替,它们将很快取代 cc.Size。 + @param w width or a size object + @param h height + + @example + ```js + var size1 = cc.size(); + var size2 = cc.size(100,100); + var size3 = cc.size(size2); + var size4 = cc.size({width: 100, height: 100}); + + ``` + */ + size(w : number|Size, h : number) : Size; + /** !#en Check whether a point's value equals to another. + !#zh 检查 Size 对象是否等于另一个。 + + @example + ```js + var a = new cc.size(10, 10); + var b = new cc.size(10, 10); + cc.sizeEqualToSize(a, b);// return true; + var b = new cc.size(5, 10); + cc.sizeEqualToSize(a, b);// return false; + ``` + */ + sizeEqualToSize(size1: (width: number, height: number) => void, size2: (width: number, height: number) => void) : boolean; + } + /** !#en the device accelerometer reports values for each axis in units of g-force. + !#zh 设备重力传感器传递的各个轴的数据。 */ + export class Acceleration { + constructor(); + /** + */ + Acceleration(x : number, y : number, z : number, timestamp : number) : Acceleration; + } + /** !#en Blend Function used for textures. + !#zh 图像的混合方式。 */ + export class BlendFunc { + constructor(); + /** + @param src1 source blend function + @param dst1 destination blend function + */ + BlendFunc(src1 : number, dst1 : number) : BlendFunc; + } + /** !#en + Enum for blend factor + Refer to: http://www.andersriggelsen.dk/glblendfunc.php + !#zh + 混合因子 + 可参考: http://www.andersriggelsen.dk/glblendfunc.php */ + export enum BlendFactor { + ONE = 0, + ZERO = 0, + SRC_ALPHA = 0, + SRC_COLOR = 0, + DST_ALPHA = 0, + DST_COLOR = 0, + ONE_MINUS_SRC_ALPHA = 0, + ONE_MINUS_SRC_COLOR = 0, + ONE_MINUS_DST_ALPHA = 0, + ONE_MINUS_DST_COLOR = 0, + blendFuncDisable = 0, + } + /** undefined */ + export class WebGLColor { + constructor(); + /** + */ + WebGLColor(r : number, g : number, b : number, a : number, arrayBuffer : any[], offset : number) : WebGLColor; + BYTES_PER_ELEMENT : number; + } + /** undefined */ + export class Vertex2F { + /** + */ + Vertex2F(x : number, y : number, arrayBuffer : any[], offset : number) : Vertex2F; + BYTES_PER_ELEMENT : number; + } + /** undefined */ + export class Vertex3F { + constructor(); + /** + */ + Vertex3F(x : number, y : number, z : number, arrayBuffer : any[], offset : number) : Vertex3F; + BYTES_PER_ELEMENT : number; + } + /** undefined */ + export class Tex2F { + constructor(); + /** + */ + Tex2F(u : number, v : number, arrayBuffer : any[], offset : number) : Tex2F; + BYTES_PER_ELEMENT : number; + } + /** undefined */ + export class Quad2 { + constructor(); + /** + */ + Quad2(tl: (x: number, y: number, arrayBuffer: any[], offset: number) => void, tr: (x: number, y: number, arrayBuffer: any[], offset: number) => void, bl: (x: number, y: number, arrayBuffer: any[], offset: number) => void, br: (x: number, y: number, arrayBuffer: any[], offset: number) => void, arrayBuffer : any[], offset : number) : Quad2; + BYTES_PER_ELEMENT : number; + } + /** A 3D Quad. 4 * 3 floats */ + export class Quad3 { + /** + */ + Quad3(bl1: (x: number, y: number, z: number, arrayBuffer: any[], offset: number) => void, br1: (x: number, y: number, z: number, arrayBuffer: any[], offset: number) => void, tl1: (x: number, y: number, z: number, arrayBuffer: any[], offset: number) => void, tr1: (x: number, y: number, z: number, arrayBuffer: any[], offset: number) => void) : Quad3; + } + /** undefined */ + export class V3F_C4B_T2F { + constructor(); + /** + */ + V3F_C4B_T2F(vertices: (x: number, y: number, z: number, arrayBuffer: any[], offset: number) => void, colors: (r: number, g: number, b: number, a: number) => void, texCoords: (u: number, v: number, arrayBuffer: any[], offset: number) => void, arrayBuffer : any[], offset : number) : V3F_C4B_T2F; + BYTES_PER_ELEMENT() : void; + } + /** undefined */ + export class V3F_C4B_T2F_Quad { + constructor(); + /** + */ + V3F_C4B_T2F_Quad(tl: (vertices: Vertex3F, colors: Color, texCoords: Tex2F, arrayBuffer: any[], offset: number) => void, bl: (vertices: Vertex3F, colors: Color, texCoords: Tex2F, arrayBuffer: any[], offset: number) => void, tr: (vertices: Vertex3F, colors: Color, texCoords: Tex2F, arrayBuffer: any[], offset: number) => void, br: (vertices: Vertex3F, colors: Color, texCoords: Tex2F, arrayBuffer: any[], offset: number) => void, arrayBuffer : any[], offset : number) : V3F_C4B_T2F_Quad; + BYTES_PER_ELEMENT : number; + } + /** undefined */ + export class V2F_C4B_T2F { + constructor(); + /** + */ + V2F_C4B_T2F(vertices: (x: number, y: number, arrayBuffer: any[], offset: number) => void, colors: (r: number, g: number, b: number, a: number) => void, texCoords: (u: number, v: number, arrayBuffer: any[], offset: number) => void, arrayBuffer : any[], offset : number) : V2F_C4B_T2F; + BYTES_PER_ELEMENT : number; + } + /** undefined */ + export class V2F_C4B_T2F_Triangle { + constructor(); + /** + */ + V2F_C4B_T2F_Triangle(a: (vertices: Vertex2F, colors: Color, texCoords: Tex2F, arrayBuffer: any[], offset: number) => void, b: (vertices: Vertex2F, colors: Color, texCoords: Tex2F, arrayBuffer: any[], offset: number) => void, c: (vertices: Vertex2F, colors: Color, texCoords: Tex2F, arrayBuffer: any[], offset: number) => void, arrayBuffer : any[], offset : number) : V2F_C4B_T2F_Triangle; + } + /** !#en The base class of all value types. + !#zh 所有值类型的基类。 */ + export class ValueType { + constructor(); + /** !#en This method returns an exact copy of current value. + !#zh 克隆当前值,该方法返回一个新对象,新对象的值和原对象相等。 + */ + clone() : ValueType; + /** !#en Compares this object with the other one. + !#zh 当前对象是否等于指定对象。 + */ + equals(other : ValueType) : boolean; + /** !#en TODO + !#zh 转换为方便阅读的字符串。 + */ + toString() : string; + /** !#en + Linearly interpolates between this value to to value by ratio which is in the range [0, 1]. + When ratio = 0 returns this. When ratio = 1 return to. When ratio = 0.5 returns the average of this and to. + !#zh + 线性插值。
+ 当 ratio = 0 时返回自身,ratio = 1 时返回目标,ratio = 0.5 返回自身和目标的平均值。。 + @param to the to value + @param ratio the interpolation coefficient + */ + lerp(to : ValueType, ratio : number) : ValueType; + } + /** !#en Representation of 2D vectors and points. + !#zh 表示 2D 向量和坐标 */ + export class Vec2 extends ValueType { + constructor(); + /** !#en + Constructor + see {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} or {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + !#zh + 构造函数,可查看 {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} 或者 {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + */ + Vec2(x? : number, y? : number) : Vec2; + /** !#en clone a Vec2 value + !#zh 克隆一个 Vec2 值 + */ + clone() : Vec2; + /** !#en TODO + !#zh 设置向量值。 + @param newValue !#en new value to set. !#zh 要设置的新值 + */ + set(newValue: (x: number, y: number) => void) : Vec2; + /** !#en TODO + !#zh 当前的向量是否与指定的向量相等。 + @param other !#en + Constructor + see {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} or {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + !#zh + 构造函数,可查看 {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} 或者 {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + */ + equals(other: (x: number, y: number) => void) : boolean; + /** !#en TODO + !#zh 转换为方便阅读的字符串。 + */ + toString() : string; + /** !#en TODO + !#zh 线性插值。 + @param to !#en + Constructor + see {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} or {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + !#zh + 构造函数,可查看 {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} 或者 {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + @param ratio the interpolation coefficient + @param out optional, the receiving vector + */ + lerp(to: (x: number, y: number) => void, ratio : number, out: (x: number, y: number) => void) : Vec2; + /** !#en Adds this vector. If you want to save result to another vector, use add() instead. + !#zh 向量加法。如果你想保存结果到另一个向量,使用 add() 代替。 + @param vector !#en + Constructor + see {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} or {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + !#zh + 构造函数,可查看 {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} 或者 {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + + @example + ```js + var v = cc.v2(10, 10); + v.addSelf(cc.v2(5, 5));// return Vec2 {x: 15, y: 15}; + ``` + */ + addSelf(vector: (x: number, y: number) => void) : Vec2; + /** !#en Adds two vectors, and returns the new result. + !#zh 向量加法,并返回新结果。 + @param vector !#en + Constructor + see {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} or {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + !#zh + 构造函数,可查看 {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} 或者 {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + @param out optional, the receiving vector + + @example + ```js + var v = cc.v2(10, 10); + v.add(cc.v2(5, 5)); // return Vec2 {x: 15, y: 15}; + var v1; + v.add(cc.v2(5, 5), v1); // return Vec2 {x: 15, y: 15}; + ``` + */ + add(vector: (x: number, y: number) => void, out: (x: number, y: number) => void) : Vec2; + /** !#en Subtracts one vector from this. If you want to save result to another vector, use sub() instead. + !#zh 向量减法。如果你想保存结果到另一个向量,可使用 sub() 代替。 + @param vector !#en + Constructor + see {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} or {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + !#zh + 构造函数,可查看 {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} 或者 {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + + @example + ```js + var v = cc.v2(10, 10); + v.subSelf(cc.v2(5, 5));// return Vec2 {x: 5, y: 5}; + ``` + */ + subSelf(vector: (x: number, y: number) => void) : Vec2; + /** !#en Subtracts one vector from this, and returns the new result. + !#zh 向量减法,并返回新结果。 + @param vector !#en + Constructor + see {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} or {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + !#zh + 构造函数,可查看 {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} 或者 {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + @param out optional, the receiving vector + + @example + ```js + var v = cc.v2(10, 10); + v.sub(cc.v2(5, 5)); // return Vec2 {x: 5, y: 5}; + var v1; + v.sub(cc.v2(5, 5), v1); // return Vec2 {x: 5, y: 5}; + ``` + */ + sub(vector: (x: number, y: number) => void, out: (x: number, y: number) => void) : Vec2; + /** !#en Multiplies this by a number. If you want to save result to another vector, use mul() instead. + !#zh 缩放当前向量。如果你想结果保存到另一个向量,可使用 mul() 代替。 + + @example + ```js + var v = cc.v2(10, 10); + v.mulSelf(5);// return Vec2 {x: 50, y: 50}; + ``` + */ + mulSelf(num : number) : Vec2; + /** !#en Multiplies by a number, and returns the new result. + !#zh 缩放当前向量,并返回新结果。 + @param out optional, the receiving vector + + @example + ```js + var v = cc.v2(10, 10); + v.mul(5); // return Vec2 {x: 50, y: 50}; + var v1; + v.mul(5, v1); // return Vec2 {x: 50, y: 50}; + ``` + */ + mul(num : number, out: (x: number, y: number) => void) : Vec2; + /** !#en Multiplies two vectors. + !#zh 分量相乘。 + @param vector !#en + Constructor + see {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} or {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + !#zh + 构造函数,可查看 {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} 或者 {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + + @example + ```js + var v = cc.v2(10, 10); + v.scaleSelf(cc.v2(5, 5));// return Vec2 {x: 50, y: 50}; + ``` + */ + scaleSelf(vector: (x: number, y: number) => void) : Vec2; + /** !#en Multiplies two vectors, and returns the new result. + !#zh 分量相乘,并返回新的结果。 + @param vector !#en + Constructor + see {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} or {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + !#zh + 构造函数,可查看 {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} 或者 {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + @param out optional, the receiving vector + + @example + ```js + var v = cc.v2(10, 10); + v.scale(cc.v2(5, 5)); // return Vec2 {x: 50, y: 50}; + var v1; + v.scale(cc.v2(5, 5), v1); // return Vec2 {x: 50, y: 50}; + ``` + */ + scale(vector: (x: number, y: number) => void, out: (x: number, y: number) => void) : Vec2; + /** !#en Divides by a number. If you want to save result to another vector, use div() instead. + !#zh 向量除法。如果你想结果保存到另一个向量,可使用 div() 代替。 + @param vector !#en + Constructor + see {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} or {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + !#zh + 构造函数,可查看 {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} 或者 {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + + @example + ```js + var v = cc.v2(10, 10); + v.divSelf(5); // return Vec2 {x: 2, y: 2}; + ``` + */ + divSelf(vector: (x: number, y: number) => void) : Vec2; + /** !#en Divides by a number, and returns the new result. + !#zh 向量除法,并返回新的结果。 + @param vector !#en + Constructor + see {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} or {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + !#zh + 构造函数,可查看 {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} 或者 {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + @param out optional, the receiving vector + + @example + ```js + var v = cc.v2(10, 10); + v.div(5); // return Vec2 {x: 2, y: 2}; + var v1; + v.div(5, v1); // return Vec2 {x: 2, y: 2}; + ``` + */ + div(vector: (x: number, y: number) => void, out: (x: number, y: number) => void) : Vec2; + /** !#en Negates the components. If you want to save result to another vector, use neg() instead. + !#zh 向量取反。如果你想结果保存到另一个向量,可使用 neg() 代替。 + + @example + ```js + var v = cc.v2(10, 10); + v.negSelf(); // return Vec2 {x: -10, y: -10}; + ``` + */ + negSelf() : Vec2; + /** !#en Negates the components, and returns the new result. + !#zh 返回取反后的新向量。 + @param out optional, the receiving vector + + @example + ```js + var v = cc.v2(10, 10); + var v1; + v.neg(v1); // return Vec2 {x: -10, y: -10}; + ``` + */ + neg(out: (x: number, y: number) => void) : Vec2; + /** !#en Dot product + !#zh 当前向量与指定向量进行点乘。 + @param vector !#en + Constructor + see {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} or {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + !#zh + 构造函数,可查看 {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} 或者 {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + + @example + ```js + var v = cc.v2(10, 10); + v.dot(cc.v2(5, 5)); // return 100; + ``` + */ + dot(vector: (x: number, y: number) => void) : number; + /** !#en Cross product + !#zh 当前向量与指定向量进行叉乘。 + @param vector !#en + Constructor + see {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} or {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + !#zh + 构造函数,可查看 {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} 或者 {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + + @example + ```js + var v = cc.v2(10, 10); + v.cross(cc.v2(5, 5)); // return 0; + ``` + */ + cross(vector: (x: number, y: number) => void) : number; + /** !#en Returns the length of this vector. + !#zh 返回该向量的长度。 + + @example + ```js + var v = cc.v2(10, 10); + v.mag(); // return 14.142135623730951; + ``` + */ + mag() : number; + /** !#en Returns the squared length of this vector. + !#zh 返回该向量的长度平方。 + + @example + ```js + var v = cc.v2(10, 10); + v.magSqr(); // return 200; + ``` + */ + magSqr() : number; + /** !#en Make the length of this vector to 1. + !#zh 向量归一化,让这个向量的长度为 1。 + + @example + ```js + var v = cc.v2(10, 10); + v.normalizeSelf(); // return Vec2 {x: 0.7071067811865475, y: 0.7071067811865475}; + ``` + */ + normalizeSelf() : Vec2; + /** !#en + Returns this vector with a magnitude of 1.
+
+ Note that the current vector is unchanged and a new normalized vector is returned. If you want to normalize the current vector, use normalizeSelf function. + !#zh + 返回归一化后的向量。
+
+ 注意,当前向量不变,并返回一个新的归一化向量。如果你想来归一化当前向量,可使用 normalizeSelf 函数。 + @param out optional, the receiving vector + */ + normalize(out: (x: number, y: number) => void) : Vec2; + /** !#en Get angle in radian between this and vector. + !#zh 夹角的弧度。 + @param vector !#en + Constructor + see {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} or {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + !#zh + 构造函数,可查看 {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} 或者 {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + */ + angle(vector: (x: number, y: number) => void) : number; + /** !#en Get angle in radian between this and vector with direction. + !#zh 带方向的夹角的弧度。 + @param vector !#en + Constructor + see {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} or {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + !#zh + 构造函数,可查看 {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} 或者 {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + */ + signAngle(vector: (x: number, y: number) => void) : number; + /** !#en rotate + !#zh 返回旋转给定弧度后的新向量。 + @param out optional, the receiving vector + */ + rotate(radians : number, out: (x: number, y: number) => void) : Vec2; + /** !#en rotate self + !#zh 按指定弧度旋转向量。 + */ + rotateSelf(radians : number) : Vec2; + /** !#en return a Vec2 object with x = 1 and y = 1. + !#zh 新 Vec2 对象。 */ + ONE : Vec2; + /** !#en return a Vec2 object with x = 0 and y = 0. + !#zh 返回 x = 0 和 y = 0 的 Vec2 对象。 */ + ZERO : Vec2; + /** !#en return a Vec2 object with x = 0 and y = 1. + !#zh 返回 x = 0 和 y = 1 的 Vec2 对象。 */ + up : Vec2; + /** !#en return a Vec2 object with x = 1 and y = 0. + !#zh 返回 x = 1 和 y = 0 的 Vec2 对象。 */ + RIGHT : Vec2; + } + + /**************************************************** + * Node + *****************************************************/ + + export module Node { + /** !#en The event type supported by Node + !#zh Node 支持的事件类型 */ + export enum EventType { + TOUCH_START = 0, + TOUCH_MOVE = 0, + TOUCH_END = 0, + TOUCH_CANCEL = 0, + MOUSE_DOWN = 0, + MOUSE_MOVE = 0, + MOUSE_ENTER = 0, + MOUSE_LEAVE = 0, + MOUSE_UP = 0, + MOUSE_WHEEL = 0, + } + } + + /**************************************************** + * ParticleSystem + *****************************************************/ + + export module ParticleSystem { + /** !#en Enum for emitter modes + !#zh 发射模式 */ + export enum EmitterMode { + GRAVITY = 0, + RADIUS = 0, + } + } + + /**************************************************** + * ParticleSystem + *****************************************************/ + + export module ParticleSystem { + /** !#en Enum for particles movement type. + !#zh 粒子位置类型 */ + export enum PositionType { + FREE = 0, + RELATIVE = 0, + GROUPED = 0, + } + } + + /**************************************************** + * TiledMap + *****************************************************/ + + export module TiledMap { + /** !#en The orientation of tiled map. + !#zh Tiled Map 地图方向。 */ + export enum Orientation { + ORTHO = 0, + HEX = 0, + ISO = 0, + NONE = 0, + MAP = 0, + LAYER = 0, + OBJECTGROUP = 0, + OBJECT = 0, + TILE = 0, + HORIZONTAL = 0, + VERTICAL = 0, + DIAGONAL = 0, + FLIPPED_ALL = 0, + FLIPPED_MASK = 0, + } + } + + /**************************************************** + * Button + *****************************************************/ + + export module Button { + /** !#en Enum for transition type. + !#zh 过渡类型 */ + export enum Transition { + NONE = 0, + COLOR = 0, + SPRITE = 0, + } + } + + /**************************************************** + * Component + *****************************************************/ + + export module Component { + /** !#en + Component will register a event to target component's handler. + And it will trigger the handler when a certain event occurs. + + !@zh + “EventHandler” 类用来设置场景中的事件回调, + 该类允许用户设置回调目标节点,目标组件名,组件方法名, + 并可通过 emit 方法调用目标函数。 */ + export class EventHandler { + /** !#en Event target + !#zh 目标节点 */ + target : Node; + /** !#en Component name + !#zh 目标组件名 */ + component : string; + /** !#en Event handler + !#zh 响应事件函数名 */ + handler : string; + /** + */ + emitEvents(events : Component.EventHandler[]) : void; + /** !#en Emit event with params + !#zh 触发目标组件上的指定 handler 函数,该参数是回调函数的参数值(可不填)。 + + @example + ```js + // Call Function + var eventHandler = new cc.Component.EventHandler(); + eventHandler.target = newTarget; + eventHandler.component = "MainMenu"; + eventHandler.handler = "OnClick" + eventHandler.emit("This is the argument to the callback function!"); + ``` + */ + emit(params : any) : void; + } + } + + /**************************************************** + * EditBox + *****************************************************/ + + export module EditBox { + /** !#en Enum for keyboard return types + !#zh 键盘的返回键类型 */ + export enum KeyboardReturnType { + DEFAULT = 0, + DONE = 0, + SEND = 0, + SEARCH = 0, + GO = 0, + } + } + + /**************************************************** + * EditBox + *****************************************************/ + + export module EditBox { + /** !#en The EditBox's InputMode defines the type of text that the user is allowed to enter. + !#zh 输入模式 */ + export enum InputMode { + ANY = 0, + EMAIL_ADDR = 0, + NUMERIC = 0, + PHONE_NUMBER = 0, + URL = 0, + DECIMAL = 0, + SINGLE_LINE = 0, + } + } + + /**************************************************** + * EditBox + *****************************************************/ + + export module EditBox { + /** !#en Enum for the EditBox's input flags + !#zh 定义了一些用于设置文本显示和文本格式化的标志位。 */ + export enum InputFlag { + PASSWORD = 0, + SENSITIVE = 0, + INITIAL_CAPS_WORD = 0, + INITIAL_CAPS_SENTENCE = 0, + INITIAL_CAPS_ALL_CHARACTERS = 0, + } + } + + /**************************************************** + * Label + *****************************************************/ + + export module Label { + /** !#en Enum for Overflow. + !#zh Overflow 类型 */ + export enum Overflow { + NONE = 0, + CLAMP = 0, + SHRINK = 0, + RESIZE_HEIGHT = 0, + } + } + + /**************************************************** + * Label + *****************************************************/ + + export module Label { + /** !#en Enum for font type. + !#zh Type 类型 */ + export enum Type { + TTF = 0, + BMFont = 0, + SystemFont = 0, + } + } + + /**************************************************** + * Layout + *****************************************************/ + + export module Layout { + /** !#en Enum for Layout type + !#zh 布局类型 */ + export enum Type { + NONE = 0, + HORIZONTAL = 0, + VERTICAL = 0, + GRID = 0, + } + } + + /**************************************************** + * Layout + *****************************************************/ + + export module Layout { + /** !#en Enum for Layout Resize Mode + !#zh 缩放模式 */ + export enum ResizeMode { + NONE = 0, + CONTAINER = 0, + CHILDREN = 0, + } + } + + /**************************************************** + * Layout + *****************************************************/ + + export module Layout { + /** !#en Enum for Grid Layout start axis direction. + !#zh 布局轴向,只用于 GRID 布局。 */ + export enum AxisDirection { + HORIZONTAL = 0, + VERTICAL = 0, + } + } + + /**************************************************** + * Layout + *****************************************************/ + + export module Layout { + /** !#en Enum for vertical layout direction. + !#zh 垂直方向布局方式 */ + export enum VerticalDirection { + BOTTOM_TO_TOP = 0, + TOP_TO_BOTTOM = 0, + } + } + + /**************************************************** + * Layout + *****************************************************/ + + export module Layout { + /** !#en Enum for horizontal layout direction. + !#zh 水平方向布局方式 */ + export enum HorizontalDirection { + LEFT_TO_RIGHT = 0, + RIGHT_TO_LEFT = 0, + } + } + + /**************************************************** + * Mask + *****************************************************/ + + export module Mask { + /** !#en the type for mask. + !#zh 遮罩组件的类型 */ + export enum Type { + RECT = 0, + ELLIPSE = 0, + type = 0, + segements = 0, + } + } + + /**************************************************** + * ProgressBar + *****************************************************/ + + export module ProgressBar { + /** !#en Enum for ProgressBar mode + !#zh 进度条模式 */ + export enum Mode { + HORIZONTAL = 0, + VERTICAL = 0, + FILLED = 0, + } + } + + /**************************************************** + * Scrollbar + *****************************************************/ + + export module Scrollbar { + /** Enum for Scrollbar direction */ + export enum Direction { + HORIZONTAL = 0, + VERTICAL = 0, + } + } + + /**************************************************** + * ScrollView + *****************************************************/ + + export module ScrollView { + /** !#en Enum for ScrollView event type. + !#zh 滚动视图事件类型 */ + export enum EventType { + SCROLL_TO_TOP = 0, + SCROLL_TO_BOTTOM = 0, + SCROLL_TO_LEFT = 0, + SCROLL_TO_RIGHT = 0, + SCROLLING = 0, + BOUNCE_TOP = 0, + BOUNCE_BOTTOM = 0, + BOUNCE_LEFT = 0, + BOUNCE_RIGHT = 0, + AUTOSCROLL_ENDED = 0, + } + } + + /**************************************************** + * Sprite + *****************************************************/ + + export module Sprite { + /** !#en Enum for sprite type. + !#zh Sprite 类型 */ + export enum SpriteType { + SIMPLE = 0, + SLICED = 0, + TILED = 0, + FILLED = 0, + } + } + + /**************************************************** + * Sprite + *****************************************************/ + + export module Sprite { + /** !#en Enum for fill type. + !#zh 填充类型 */ + export enum FillType { + HORIZONTAL = 0, + VERTICAL = 0, + RADIAL = 0, + } + } + + /**************************************************** + * Sprite + *****************************************************/ + + export module Sprite { + /** !#en Sprite Size can track trimmed size, raw size or none. + !#zh 精灵尺寸调整模式 */ + export enum SizeMode { + CUSTOM = 0, + TRIMMED = 0, + RAW = 0, + } + } + + /**************************************************** + * VideoPlayer + *****************************************************/ + + export module VideoPlayer { + /** !#en Enum for video resouce type type. + !#zh 视频来源 */ + export enum ResourceType { + REMOTE = 0, + LOCAL = 0, + } + } + + /**************************************************** + * Event + *****************************************************/ + + export module Event { + /** !#en The Custom event + !#zh 自定义事件 */ + export class EventCustom extends Event { + constructor(); + /** + @param type The name of the event (case-sensitive), e.g. "click", "fire", or "submit" + @param bubbles A boolean indicating whether the event bubbles up through the tree or not + */ + EventCustom(type : string, bubbles : boolean) : EventCustom; + /** !#en A reference to the detailed data of the event + !#zh 事件的详细数据 */ + detail : any; + /** !#en Sets user data + !#zh 设置用户数据 + */ + setUserData(data : any) : void; + /** !#en Gets user data + !#zh 获取用户数据 + */ + getUserData() : any; + /** !#en Gets event name + !#zh 获取事件名称 + */ + getEventName() : string; + } + } + + /**************************************************** + * Event + *****************************************************/ + + export module Event { + /** !#en The mouse event + !#zh 鼠标事件类型 */ + export class EventMouse extends Event { + /** + @param eventType The mouse event type, UP, DOWN, MOVE, CANCELED + @param bubbles A boolean indicating whether the event bubbles up through the tree or not + */ + constructor(eventType : number, bubbles? : boolean); + /** !#en Sets scroll data. + !#zh 设置鼠标的滚动数据。 + */ + setScrollData(scrollX : number, scrollY : number) : void; + /** !#en Returns the x axis scroll value. + !#zh 获取鼠标滚动的X轴距离,只有滚动时才有效。 + */ + getScrollX() : number; + /** !#en Returns the y axis scroll value. + !#zh 获取滚轮滚动的 Y 轴距离,只有滚动时才有效。 + */ + getScrollY() : number; + /** !#en Sets cursor location. + !#zh 设置当前鼠标位置。 + */ + setLocation(x : number, y : number) : void; + /** !#en Returns cursor location. + !#zh 获取鼠标位置对象,对象包含 x 和 y 属性。 + */ + getLocation() : Vec2; + /** !#en Returns the current cursor location in screen coordinates. + !#zh 获取当前事件在游戏窗口内的坐标位置对象,对象包含 x 和 y 属性。 + */ + getLocationInView() : Vec2; + /** !#en Returns the previous touch location. + !#zh 获取鼠标点击在上一次事件时的位置对象,对象包含 x 和 y 属性。 + */ + getPreviousLocation() : Vec2; + /** !#en Returns the delta distance from the previous location to current location. + !#zh 获取鼠标距离上一次事件移动的距离对象,对象包含 x 和 y 属性。 + */ + getDelta() : Vec2; + /** !#en Returns the X axis delta distance from the previous location to current location. + !#zh 获取鼠标距离上一次事件移动的 X 轴距离。 + */ + getDeltaX() : number; + /** !#en Returns the Y axis delta distance from the previous location to current location. + !#zh 获取鼠标距离上一次事件移动的 Y 轴距离。 + */ + getDeltaY() : number; + /** !#en Sets mouse button. + !#zh 设置鼠标按键。 + */ + setButton(button : number) : void; + /** !#en Returns mouse button. + !#zh 获取鼠标按键。 + */ + getButton() : number; + /** !#en Returns location X axis data. + !#zh 获取鼠标当前位置 X 轴。 + */ + getLocationX() : number; + /** !#en Returns location Y axis data. + !#zh 获取鼠标当前位置 Y 轴。 + */ + getLocationY() : number; + } + } + + /**************************************************** + * Event + *****************************************************/ + + export module Event { + /** !#en The touch event + !#zh 触摸事件 */ + export class EventTouch extends Event { + /** + @param touchArr The array of the touches + @param bubbles A boolean indicating whether the event bubbles up through the tree or not + */ + constructor(touchArr : any[], bubbles : boolean); + /** !#en Returns event code. + !#zh 获取事件类型。 + */ + getEventCode() : number; + /** !#en Returns touches of event. + !#zh 获取触摸点的列表。 + */ + getTouches() : any[]; + /** !#en Sets touch location. + !#zh 设置当前触点位置 + */ + setLocation(x : number, y : number) : void; + /** !#en Returns touch location. + !#zh 获取触点位置。 + */ + getLocation() : Vec2; + /** !#en Returns the current touch location in screen coordinates. + !#zh 获取当前触点在游戏窗口中的位置。 + */ + getLocationInView() : Vec2; + /** !#en Returns the previous touch location. + !#zh 获取触点在上一次事件时的位置对象,对象包含 x 和 y 属性。 + */ + getPreviousLocation() : Vec2; + /** !#en Returns the start touch location. + !#zh 获获取触点落下时的位置对象,对象包含 x 和 y 属性。 + */ + getStartLocation() : Vec2; + /** !#en Returns the id of cc.Touch. + !#zh 触点的标识 ID,可以用来在多点触摸中跟踪触点。 + */ + getID() : number; + /** !#en Returns the delta distance from the previous location to current location. + !#zh 获取触点距离上一次事件移动的距离对象,对象包含 x 和 y 属性。 + */ + getDelta() : Vec2; + /** !#en Returns the X axis delta distance from the previous location to current location. + !#zh 获取触点距离上一次事件移动的 x 轴距离。 + */ + getDeltaX() : number; + /** !#en Returns the Y axis delta distance from the previous location to current location. + !#zh 获取触点距离上一次事件移动的 y 轴距离。 + */ + getDeltaY() : number; + /** !#en Returns location X axis data. + !#zh 获取当前触点 X 轴位置。 + */ + getLocationX() : number; + /** !#en Returns location Y axis data. + !#zh 获取当前触点 Y 轴位置。 + */ + getLocationY() : number; + } + } + + /**************************************************** + * Event + *****************************************************/ + + export module Event { + /** !#en The acceleration event + !#zh 加速度事件 */ + export class EventAcceleration extends Event { + /** + @param acc The acceleration + @param bubbles A boolean indicating whether the event bubbles up through the tree or not + */ + constructor(acc : any, bubbles : boolean); + } + } + + /**************************************************** + * Event + *****************************************************/ + + export module Event { + /** !#en The keyboard event + !#zh 键盘事件 */ + export class EventKeyboard extends Event { + /** + @param keyCode The key code of which triggered this event + @param isPressed A boolean indicating whether the key have been pressed + @param bubbles A boolean indicating whether the event bubbles up through the tree or not + */ + constructor(keyCode : number, isPressed : boolean, bubbles : boolean); + } + } + + /**************************************************** + * Pipeline + *****************************************************/ + + export module Pipeline { + /** The downloader pipe, it can download several types of files: + 1. Text + 2. Image + 3. Script + 4. Audio + All unknown type will be downloaded as plain text. + You can pass custom supported types in the constructor. */ + export class Downloader { + /** Constructor of Downloader, you can pass custom supported types. + @param extMap Custom supported types with corresponded handler + + @example + ```js + var downloader = new Downloader({ + // This will match all url with `.scene` extension or all url with `scene` type + 'scene' : function (url, callback) {} + }); + ``` + */ + Downloader(extMap : any) : void; + /** Add custom supported types handler or modify existing type handler. + @param extMap Custom supported types with corresponded handler + */ + addHandlers(extMap : any) : void; + } + } + + /**************************************************** + * Pipeline + *****************************************************/ + + export module Pipeline { + /** The loader pipe, it can load several types of files: + 1. Images + 2. JSON + 3. Plist + 4. Audio + 5. Font + 6. Cocos Creator scene + It will not interfere with items of unknown type. + You can pass custom supported types in the constructor. */ + export class Loader { + /** Constructor of Loader, you can pass custom supported types. + @param extMap Custom supported types with corresponded handler + + @example + ```js + var loader = new Loader({ + // This will match all url with `.scene` extension or all url with `scene` type + 'scene' : function (url, callback) {} + }); + ``` + */ + Loader(extMap : any) : void; + /** Add custom supported types handler or modify existing type handler. + @param extMap Custom supported types with corresponded handler + */ + addHandlers(extMap : any) : void; + } + } + + /**************************************************** + * Texture2D + *****************************************************/ + + export module Texture2D { + /** The texture wrap mode */ + export enum WrapMode { + REPEAT = 0, + CLAMP_TO_EDGE = 0, + MIRRORED_REPEAT = 0, + } + } + + /**************************************************** + * Label + *****************************************************/ + + export module Label { + /** !#en Enum for text alignment. + !#zh 文本对齐类型 */ + export enum TextAlignment { + LEFT = 0, + CENTER = 0, + RIGHT = 0, + } + } + + /**************************************************** + * Label + *****************************************************/ + + export module Label { + /** !#en Enum for vertical text alignment. + !#zh 文本垂直对齐类型 */ + export enum VerticalTextAlignment { + TOP = 0, + CENTER = 0, + BOTTOM = 0, + } + } +} +/** !#en +The global main namespace of Spine, all classes, functions, +properties and constants of Spine are defined in this namespace +!#zh +Spine 的全局的命名空间, +与 Spine 相关的所有的类,函数,属性,常量都在这个命名空间中定义。 */ +declare module sp { + /** !#en + The official spine runtime.
+ See http://en.esotericsoftware.com/spine-using-runtimes + !#zh + 官方 Spine Runtime。
+ 可查看 Spine 官方文档 http://en.esotericsoftware.com/spine-using-runtimes */ + export var spine : any; + /** !#en + The skeleton of Spine
+
+ (Skeleton has a reference to a SkeletonData and stores the state for skeleton instance, + which consists of the current pose's bone SRT, slot colors, and which slot attachments are visible.
+ Multiple skeletons can use the same SkeletonData which includes all animations, skins, and attachments.)
+ !#zh + Spine 骨骼动画
+
+ (Skeleton 具有对骨骼数据的引用并且存储了骨骼实例的状态, + 它由当前的骨骼动作,slot 颜色,和可见的 slot attachments 组成。
+ 多个 Skeleton 可以使用相同的骨骼数据,其中包括所有的动画,皮肤和 attachments。 */ + export class Skeleton extends cc._RendererUnderSG { + constructor(); + /** !#en The skeletal animation is paused? + !#zh 该骨骼动画是否暂停。 */ + paused : boolean; + /** !#en + The skeleton data contains the skeleton information (bind pose bones, slots, draw order, + attachments, skins, etc) and animations but does not hold any state.
+ Multiple skeletons can share the same skeleton data. + !#zh + 骨骼数据包含了骨骼信息(绑定骨骼动作,slots,渲染顺序, + attachments,皮肤等等)和动画但不持有任何状态。
+ 多个 Skeleton 可以共用相同的骨骼数据。 */ + skeletonData : SkeletonData; + /** !#en The name of default skin. + !#zh 默认的皮肤名称。 */ + defaultSkin : string; + /** !#en The name of default animation. + !#zh 默认的动画名称。 */ + defaultAnimation : string; + /** !#en The name of current playing animation. + !#zh 当前播放的动画名称。 */ + animation : string; + _defaultSkinIndex : number; + /** !#en TODO + !#zh 是否循环播放当前骨骼动画。 */ + loop : boolean; + /** !#en The time scale of this skeleton. + !#zh 当前骨骼中所有动画的时间缩放率。 */ + timeScale : number; + /** !#en Indicates whether open debug slots. + !#zh 是否显示 slot 的 debug 信息。 */ + debugSlots : boolean; + /** !#en Indicates whether open debug bones. + !#zh 是否显示 bone 的 debug 信息。 */ + debugBones : boolean; + /** !#en Computes the world SRT from the local SRT for each bone. + !#zh 重新更新所有骨骼的世界 Transform, + 当获取 bone 的数值未更新时,即可使用该函数进行更新数值。 + + @example + ```js + var bone = spine.findBone('head'); + cc.log(bone.worldX); // return 0; + spine.updateWorldTransform(); + bone = spine.findBone('head'); + cc.log(bone.worldX); // return -23.12; + ``` + */ + updateWorldTransform() : void; + /** !#en Sets the bones and slots to the setup pose. + !#zh 还原到起始动作 + */ + setToSetupPose() : void; + /** !#en + Sets the bones to the setup pose, + using the values from the `BoneData` list in the `SkeletonData`. + !#zh + 设置 bone 到起始动作 + 使用 SkeletonData 中的 BoneData 列表中的值。 + */ + setBonesToSetupPose() : void; + /** !#en + Sets the slots to the setup pose, + using the values from the `SlotData` list in the `SkeletonData`. + !#zh + 设置 slot 到起始动作。 + 使用 SkeletonData 中的 SlotData 列表中的值。 + */ + setSlotsToSetupPose() : void; + /** !#en + Finds a bone by name. + This does a string comparison for every bone. + !#zh + 通过名称查找 bone。 + 这里对每个 bone 的名称进行了对比。 + */ + findBone(boneName : string) : spine.Bone; + /** !#en + Finds a slot by name. + This does a string comparison for every slot. + !#zh + 通过名称查找 slot。 + 这里对每个 slot 的名称进行了比较。 + */ + findSlot(slotName : string) : spine.Slot; + /** !#en + Finds a skin by name and makes it the active skin. + This does a string comparison for every skin. + Note that setting the skin does not change which attachments are visible. + !#zh + 按名称查找皮肤,激活该皮肤。 + 这里对每个皮肤的名称进行了比较。 + 注意:设置皮肤不会改变 attachment 的可见性。。 + */ + setSkin(skinName : string) : spine.Skin; + /** !#en + Returns the attachment for the slot and attachment name. + The skeleton looks first in its skin, then in the skeleton data’s default skin. + !#zh + 通过 slot 和 attachment 的名称获取 attachment。 + Skeleton 优先查找它的皮肤,然后才是 Skeleton Data 中默认的皮肤。 + */ + getAttachment(slotName : string, attachmentName : string) : spine.RegionAttachment; + /** !#en + Sets the attachment for the slot and attachment name. + The skeleton looks first in its skin, then in the skeleton data’s default skin. + !#zh + 通过 slot 和 attachment 的名字来设置 attachment。 + Skeleton 优先查找它的皮肤,然后才是 Skeleton Data 中默认的皮肤。 + */ + setAttachment(slotName : string, attachmentName : string) : void; + /** !#en Sets skeleton data to sp.Skeleton. + !#zh 设置 Skeleton 中的 Skeleton Data。 + */ + setSkeletonData(skeletonData : spine.SkeletonData, ownsSkeletonData : spine.SkeletonData) : void; + /** !#en Sets animation state data. + !#zh 设置动画状态数据。 + */ + setAnimationStateData(stateData : spine.AnimationStateData) : void; + /** !#en + Mix applies all keyframe values, + interpolated for the specified time and mixed with the current values. + !#zh 为所有关键帧设定混合及混合时间(从当前值开始差值)。 + */ + setMix(fromAnimation : string, toAnimation : string, duration : number) : void; + /** !#en Sets event listener. + !#zh 设置动画事件监听器。 + */ + setAnimationListener(target : any, callback : Function) : void; + /** !#en Set the current animation. Any queued animations are cleared. + !#zh 设置当前动画。队列中的任何的动画将被清除。 + */ + setAnimation(trackIndex : number, name : string, loop : boolean) : spine.TrackEntry; + /** !#en Adds an animation to be played delay seconds after the current or last queued animation. + !#zh 添加一个动画到动画队列尾部,还可以延迟指定的秒数。 + */ + addAnimation(trackIndex : number, name : string, loop : boolean, delay? : number) : spine.TrackEntry; + /** !#en Returns track entry by trackIndex. + !#zh 通过 track 索引获取 TrackEntry。 + */ + getCurrent(trackIndex : void) : spine.TrackEntry; + /** !#en Clears all tracks of animation state. + !#zh 清除所有 track 的动画状态。 + */ + clearTracks() : void; + /** !#en Clears track of animation state by trackIndex. + !#zh 清除出指定 track 的动画状态。 + */ + clearTrack(trackIndex : number) : void; + /** !#en Set the start event listener. + !#zh 用来设置开始播放动画的事件监听。 + */ + setStartListener(listener : Function) : void; + /** !#en Set the end event listener. + !#zh 用来设置动画播放完后的事件监听。 + */ + setEndListener(listener : Function) : void; + } + /** !#en The skeleton data of spine. + !#zh Spine 的 骨骼数据。 */ + export class SkeletonData extends cc.Asset { + /** !#en See http://en.esotericsoftware.com/spine-json-format + !#zh 可查看 Spine 官方文档 http://zh.esotericsoftware.com/spine-json-format */ + skeletonJson : any; + atlasText : string; + textures : Texture2D; + /** !#en + A scale can be specified on the JSON or binary loader which will scale the bone positions, + image sizes, and animation translations. + This can be useful when using different sized images than were used when designing the skeleton + in Spine. For example, if using images that are half the size than were used in Spine, + a scale of 0.5 can be used. This is commonly used for games that can run with either low or high + resolution texture atlases. + see http://en.esotericsoftware.com/spine-using-runtimes#Scaling + !#zh 可查看 Spine 官方文档: http://zh.esotericsoftware.com/spine-using-runtimes#Scaling */ + scale : number; + /** !#en Get the included SkeletonData used in spine runtime. + !#zh 获取 Spine Runtime 使用的 SkeletonData。 + */ + getRuntimeData(quiet? : boolean) : spine.SkeletonData; + } + /** !#en The event type of spine skeleton animation. + !#zh 骨骼动画事件类型。 */ + export enum AnimationEventType { + START = 0, + END = 0, + COMPLETE = 0, + EVENT = 0, + } +} +/** This module provides some JavaScript utilities. +All members can be accessed with cc.js */ +declare module js { + /** Check the obj whether is number or not + If a number is created by using 'new Number(10086)', the typeof it will be "object"... + Then you can use this function if you care about this case. + */ + export function isNumber(obj : any) : boolean; + /** Check the obj whether is string or not. + If a string is created by using 'new String("blabla")', the typeof it will be "object"... + Then you can use this function if you care about this case. + */ + export function isString(obj : any) : boolean; + /** copy all properties not defined in obj from arguments[1...n] + @param obj object to extend its properties + @param sourceObj source object to copy properties from + */ + export function addon(obj : any, sourceObj : any) : any; + /** copy all properties from arguments[1...n] to obj + */ + export function mixin(obj : any, sourceObj : any) : any; + /** Derive the class from the supplied base class. + Both classes are just native javascript constructors, not created by cc.Class, so + usually you will want to inherit using {{#crossLink "cc/Class:method"}}cc.Class {{/crossLink}} instead. + @param base the baseclass to inherit + */ + export function extend(cls : Function, base : Function) : Function; + /** Removes all enumerable properties from object + */ + export function clear(obj : any) : void; + /** Get property descriptor in object and all its ancestors + */ + export function getPropertyDescriptor(obj : any, name : string) : any; + /** Get class name of the object, if object is just a {} (and which class named 'Object'), it will return null. + (modified from the code from this stackoverflow post) + @param obj instance or constructor + */ + export function getClassName(obj : any|Function) : string; + /** Register the class by specified name manually + */ + export function setClassName(className : string, constructor : Function) : void; + /** Unregister a class from fireball. + + If you dont need a registered class anymore, you should unregister the class so that Fireball will not keep its reference anymore. + Please note that its still your responsibility to free other references to the class. + @param constructor the class you will want to unregister, any number of classes can be added + */ + export function unregisterClass(constructor : Function) : void; + /** Get the registered class by name + */ + export function getClassByName(classname : string) : Function; + /** Define get set accessor, just help to call Object.defineProperty(...) + */ + export function getset(obj : any, prop : string, getter : Function, setter : Function, enumerable? : boolean) : void; + /** Define get accessor, just help to call Object.defineProperty(...) + */ + export function get(obj : any, prop : string, getter : Function, enumerable? : boolean) : void; + /** Define set accessor, just help to call Object.defineProperty(...) + */ + export function set(obj : any, prop : string, setter : Function, enumerable? : boolean) : void; + /** Defines a polyfill field for obsoleted codes. + @param obj YourObject or YourClass.prototype + @param obsoleted "OldParam" or "YourClass.OldParam" + @param newPropName "NewParam" + */ + export function obsolete(obj : any, obsoleted : string, newPropName : string, writable? : boolean) : void; + /** Defines all polyfill fields for obsoleted codes corresponding to the enumerable properties of props. + @param obj YourObject or YourClass.prototype + @param objName "YourObject" or "YourClass" + */ + export function obsoletes(obj : any, objName : any, props : any, writable? : boolean) : void; + /** A string tool to construct a string with format string. + for example: + cc.js.formatStr("a: %s, b: %s", a, b); + cc.js.formatStr(a, b, c); + */ + export function formatStr() : string; + /** undefined */ + export class array { + /** Removes the first occurrence of a specific object from the array. + */ + remove(array : any[], value : any) : boolean; + /** Removes the array item at the specified index. + */ + removeAt(array : any[], index : number) : void; + /** Determines whether the array contains a specific value. + */ + contains(array : any[], value : any) : boolean; + /** Verify array's Type + */ + verifyType(array : any[], type : Function) : boolean; + /** Removes from array all values in minusArr. For each Value in minusArr, the first matching instance in array will be removed. + @param array Source Array + @param minusArr minus Array + */ + removeArray(array : any[], minusArr : any[]) : void; + /** Inserts some objects at index + */ + appendObjectsAt(array : any[], addObjs : any[], index : number) : any[]; + /** Copy an array's item to a new array (its performance is better than Array.slice) + */ + copy(array : any[]) : any[]; + /** Exact same function as Array.prototype.indexOf. + HACK: ugliy hack for Baidu mobile browser compatibility, + stupid Baidu guys modify Array.prototype.indexOf for all pages loaded, + their version changes strict comparison to non-strict comparison, + it also ignores the second parameter of the original API, + and this will cause event handler enter infinite loop. + Baidu developers, if you ever see this documentation, + here is the standard: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf + Seriously ! + @param searchElement Element to locate in the array. + @param fromIndex The index to start the search at + */ + indexOf(searchElement : any, fromIndex? : number) : number; + } +} \ No newline at end of file diff --git a/cc_moba/jsconfig.json b/cc_moba/jsconfig.json new file mode 100644 index 0000000..05394dd --- /dev/null +++ b/cc_moba/jsconfig.json @@ -0,0 +1,13 @@ +{ + "compilerOptions": { + "target": "es6", + "module": "commonjs" + }, + "exclude": [ + "node_modules", + "library", + "local", + "settings", + "temp" + ] +} \ No newline at end of file diff --git a/cc_moba/project.json b/cc_moba/project.json new file mode 100644 index 0000000..1866de0 --- /dev/null +++ b/cc_moba/project.json @@ -0,0 +1,4 @@ +{ + "engine": "cocos-creator-js", + "packages": "packages" +} \ No newline at end of file diff --git a/cc_moba/settings/builder.json b/cc_moba/settings/builder.json new file mode 100644 index 0000000..d6b5dbb --- /dev/null +++ b/cc_moba/settings/builder.json @@ -0,0 +1,13 @@ +{ + "excludeScenes": [], + "orientation": { + "landscapeLeft": true, + "landscapeRight": true, + "portrait": false, + "upsideDown": false + }, + "packageName": "org.cocos2d.xiaoxiao", + "startScene": "2366f3b6-28bb-4920-a824-a5a391045a87", + "title": "xiaoxiao", + "webOrientation": "auto" +} \ No newline at end of file diff --git a/cc_moba/settings/project.json b/cc_moba/settings/project.json new file mode 100644 index 0000000..1197de4 --- /dev/null +++ b/cc_moba/settings/project.json @@ -0,0 +1,11 @@ +{ + "collision-matrix": [ + [ + true + ] + ], + "group-list": [ + "default" + ], + "start-scene": "2366f3b6-28bb-4920-a824-a5a391045a87" +} \ No newline at end of file diff --git a/cc_moba/xiaoxiao/HEAD b/cc_moba/xiaoxiao/HEAD new file mode 100644 index 0000000..cb089cd --- /dev/null +++ b/cc_moba/xiaoxiao/HEAD @@ -0,0 +1 @@ +ref: refs/heads/master diff --git a/cc_moba/xiaoxiao/config b/cc_moba/xiaoxiao/config new file mode 100644 index 0000000..90e1647 --- /dev/null +++ b/cc_moba/xiaoxiao/config @@ -0,0 +1,7 @@ +[core] + repositoryformatversion = 0 + filemode = false + bare = true + symlinks = false + ignorecase = true + hideDotFiles = dotGitOnly diff --git a/cc_moba/xiaoxiao/description b/cc_moba/xiaoxiao/description new file mode 100644 index 0000000..498b267 --- /dev/null +++ b/cc_moba/xiaoxiao/description @@ -0,0 +1 @@ +Unnamed repository; edit this file 'description' to name the repository. diff --git a/cc_moba/xiaoxiao/hooks/applypatch-msg.sample b/cc_moba/xiaoxiao/hooks/applypatch-msg.sample new file mode 100644 index 0000000..a5d7b84 --- /dev/null +++ b/cc_moba/xiaoxiao/hooks/applypatch-msg.sample @@ -0,0 +1,15 @@ +#!/bin/sh +# +# An example hook script to check the commit log message taken by +# applypatch from an e-mail message. +# +# The hook should exit with non-zero status after issuing an +# appropriate message if it wants to stop the commit. The hook is +# allowed to edit the commit message file. +# +# To enable this hook, rename this file to "applypatch-msg". + +. git-sh-setup +commitmsg="$(git rev-parse --git-path hooks/commit-msg)" +test -x "$commitmsg" && exec "$commitmsg" ${1+"$@"} +: diff --git a/cc_moba/xiaoxiao/hooks/commit-msg.sample b/cc_moba/xiaoxiao/hooks/commit-msg.sample new file mode 100644 index 0000000..b58d118 --- /dev/null +++ b/cc_moba/xiaoxiao/hooks/commit-msg.sample @@ -0,0 +1,24 @@ +#!/bin/sh +# +# An example hook script to check the commit log message. +# Called by "git commit" with one argument, the name of the file +# that has the commit message. The hook should exit with non-zero +# status after issuing an appropriate message if it wants to stop the +# commit. The hook is allowed to edit the commit message file. +# +# To enable this hook, rename this file to "commit-msg". + +# Uncomment the below to add a Signed-off-by line to the message. +# Doing this in a hook is a bad idea in general, but the prepare-commit-msg +# hook is more suited to it. +# +# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') +# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" + +# This example catches duplicate Signed-off-by lines. + +test "" = "$(grep '^Signed-off-by: ' "$1" | + sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { + echo >&2 Duplicate Signed-off-by lines. + exit 1 +} diff --git a/cc_moba/xiaoxiao/hooks/post-update.sample b/cc_moba/xiaoxiao/hooks/post-update.sample new file mode 100644 index 0000000..ec17ec1 --- /dev/null +++ b/cc_moba/xiaoxiao/hooks/post-update.sample @@ -0,0 +1,8 @@ +#!/bin/sh +# +# An example hook script to prepare a packed repository for use over +# dumb transports. +# +# To enable this hook, rename this file to "post-update". + +exec git update-server-info diff --git a/cc_moba/xiaoxiao/hooks/pre-applypatch.sample b/cc_moba/xiaoxiao/hooks/pre-applypatch.sample new file mode 100644 index 0000000..4142082 --- /dev/null +++ b/cc_moba/xiaoxiao/hooks/pre-applypatch.sample @@ -0,0 +1,14 @@ +#!/bin/sh +# +# An example hook script to verify what is about to be committed +# by applypatch from an e-mail message. +# +# The hook should exit with non-zero status after issuing an +# appropriate message if it wants to stop the commit. +# +# To enable this hook, rename this file to "pre-applypatch". + +. git-sh-setup +precommit="$(git rev-parse --git-path hooks/pre-commit)" +test -x "$precommit" && exec "$precommit" ${1+"$@"} +: diff --git a/cc_moba/xiaoxiao/hooks/pre-commit.sample b/cc_moba/xiaoxiao/hooks/pre-commit.sample new file mode 100644 index 0000000..68d62d5 --- /dev/null +++ b/cc_moba/xiaoxiao/hooks/pre-commit.sample @@ -0,0 +1,49 @@ +#!/bin/sh +# +# An example hook script to verify what is about to be committed. +# Called by "git commit" with no arguments. The hook should +# exit with non-zero status after issuing an appropriate message if +# it wants to stop the commit. +# +# To enable this hook, rename this file to "pre-commit". + +if git rev-parse --verify HEAD >/dev/null 2>&1 +then + against=HEAD +else + # Initial commit: diff against an empty tree object + against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 +fi + +# If you want to allow non-ASCII filenames set this variable to true. +allownonascii=$(git config --bool hooks.allownonascii) + +# Redirect output to stderr. +exec 1>&2 + +# Cross platform projects tend to avoid non-ASCII filenames; prevent +# them from being added to the repository. We exploit the fact that the +# printable range starts at the space character and ends with tilde. +if [ "$allownonascii" != "true" ] && + # Note that the use of brackets around a tr range is ok here, (it's + # even required, for portability to Solaris 10's /usr/bin/tr), since + # the square bracket bytes happen to fall in the designated range. + test $(git diff --cached --name-only --diff-filter=A -z $against | + LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 +then + cat <<\EOF +Error: Attempt to add a non-ASCII file name. + +This can cause problems if you want to work with people on other platforms. + +To be portable it is advisable to rename the file. + +If you know what you are doing you can disable this check using: + + git config hooks.allownonascii true +EOF + exit 1 +fi + +# If there are whitespace errors, print the offending file names and fail. +exec git diff-index --check --cached $against -- diff --git a/cc_moba/xiaoxiao/hooks/pre-push.sample b/cc_moba/xiaoxiao/hooks/pre-push.sample new file mode 100644 index 0000000..6187dbf --- /dev/null +++ b/cc_moba/xiaoxiao/hooks/pre-push.sample @@ -0,0 +1,53 @@ +#!/bin/sh + +# An example hook script to verify what is about to be pushed. Called by "git +# push" after it has checked the remote status, but before anything has been +# pushed. If this script exits with a non-zero status nothing will be pushed. +# +# This hook is called with the following parameters: +# +# $1 -- Name of the remote to which the push is being done +# $2 -- URL to which the push is being done +# +# If pushing without using a named remote those arguments will be equal. +# +# Information about the commits which are being pushed is supplied as lines to +# the standard input in the form: +# +# +# +# This sample shows how to prevent push of commits where the log message starts +# with "WIP" (work in progress). + +remote="$1" +url="$2" + +z40=0000000000000000000000000000000000000000 + +while read local_ref local_sha remote_ref remote_sha +do + if [ "$local_sha" = $z40 ] + then + # Handle delete + : + else + if [ "$remote_sha" = $z40 ] + then + # New branch, examine all commits + range="$local_sha" + else + # Update to existing branch, examine new commits + range="$remote_sha..$local_sha" + fi + + # Check for WIP commit + commit=`git rev-list -n 1 --grep '^WIP' "$range"` + if [ -n "$commit" ] + then + echo >&2 "Found WIP commit in $local_ref, not pushing" + exit 1 + fi + fi +done + +exit 0 diff --git a/cc_moba/xiaoxiao/hooks/pre-rebase.sample b/cc_moba/xiaoxiao/hooks/pre-rebase.sample new file mode 100644 index 0000000..9773ed4 --- /dev/null +++ b/cc_moba/xiaoxiao/hooks/pre-rebase.sample @@ -0,0 +1,169 @@ +#!/bin/sh +# +# Copyright (c) 2006, 2008 Junio C Hamano +# +# The "pre-rebase" hook is run just before "git rebase" starts doing +# its job, and can prevent the command from running by exiting with +# non-zero status. +# +# The hook is called with the following parameters: +# +# $1 -- the upstream the series was forked from. +# $2 -- the branch being rebased (or empty when rebasing the current branch). +# +# This sample shows how to prevent topic branches that are already +# merged to 'next' branch from getting rebased, because allowing it +# would result in rebasing already published history. + +publish=next +basebranch="$1" +if test "$#" = 2 +then + topic="refs/heads/$2" +else + topic=`git symbolic-ref HEAD` || + exit 0 ;# we do not interrupt rebasing detached HEAD +fi + +case "$topic" in +refs/heads/??/*) + ;; +*) + exit 0 ;# we do not interrupt others. + ;; +esac + +# Now we are dealing with a topic branch being rebased +# on top of master. Is it OK to rebase it? + +# Does the topic really exist? +git show-ref -q "$topic" || { + echo >&2 "No such branch $topic" + exit 1 +} + +# Is topic fully merged to master? +not_in_master=`git rev-list --pretty=oneline ^master "$topic"` +if test -z "$not_in_master" +then + echo >&2 "$topic is fully merged to master; better remove it." + exit 1 ;# we could allow it, but there is no point. +fi + +# Is topic ever merged to next? If so you should not be rebasing it. +only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` +only_next_2=`git rev-list ^master ${publish} | sort` +if test "$only_next_1" = "$only_next_2" +then + not_in_topic=`git rev-list "^$topic" master` + if test -z "$not_in_topic" + then + echo >&2 "$topic is already up-to-date with master" + exit 1 ;# we could allow it, but there is no point. + else + exit 0 + fi +else + not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` + /usr/bin/perl -e ' + my $topic = $ARGV[0]; + my $msg = "* $topic has commits already merged to public branch:\n"; + my (%not_in_next) = map { + /^([0-9a-f]+) /; + ($1 => 1); + } split(/\n/, $ARGV[1]); + for my $elem (map { + /^([0-9a-f]+) (.*)$/; + [$1 => $2]; + } split(/\n/, $ARGV[2])) { + if (!exists $not_in_next{$elem->[0]}) { + if ($msg) { + print STDERR $msg; + undef $msg; + } + print STDERR " $elem->[1]\n"; + } + } + ' "$topic" "$not_in_next" "$not_in_master" + exit 1 +fi + +exit 0 + +################################################################ + +This sample hook safeguards topic branches that have been +published from being rewound. + +The workflow assumed here is: + + * Once a topic branch forks from "master", "master" is never + merged into it again (either directly or indirectly). + + * Once a topic branch is fully cooked and merged into "master", + it is deleted. If you need to build on top of it to correct + earlier mistakes, a new topic branch is created by forking at + the tip of the "master". This is not strictly necessary, but + it makes it easier to keep your history simple. + + * Whenever you need to test or publish your changes to topic + branches, merge them into "next" branch. + +The script, being an example, hardcodes the publish branch name +to be "next", but it is trivial to make it configurable via +$GIT_DIR/config mechanism. + +With this workflow, you would want to know: + +(1) ... if a topic branch has ever been merged to "next". Young + topic branches can have stupid mistakes you would rather + clean up before publishing, and things that have not been + merged into other branches can be easily rebased without + affecting other people. But once it is published, you would + not want to rewind it. + +(2) ... if a topic branch has been fully merged to "master". + Then you can delete it. More importantly, you should not + build on top of it -- other people may already want to + change things related to the topic as patches against your + "master", so if you need further changes, it is better to + fork the topic (perhaps with the same name) afresh from the + tip of "master". + +Let's look at this example: + + o---o---o---o---o---o---o---o---o---o "next" + / / / / + / a---a---b A / / + / / / / + / / c---c---c---c B / + / / / \ / + / / / b---b C \ / + / / / / \ / + ---o---o---o---o---o---o---o---o---o---o---o "master" + + +A, B and C are topic branches. + + * A has one fix since it was merged up to "next". + + * B has finished. It has been fully merged up to "master" and "next", + and is ready to be deleted. + + * C has not merged to "next" at all. + +We would want to allow C to be rebased, refuse A, and encourage +B to be deleted. + +To compute (1): + + git rev-list ^master ^topic next + git rev-list ^master next + + if these match, topic has not merged in next at all. + +To compute (2): + + git rev-list master..topic + + if this is empty, it is fully merged to "master". diff --git a/cc_moba/xiaoxiao/hooks/prepare-commit-msg.sample b/cc_moba/xiaoxiao/hooks/prepare-commit-msg.sample new file mode 100644 index 0000000..f093a02 --- /dev/null +++ b/cc_moba/xiaoxiao/hooks/prepare-commit-msg.sample @@ -0,0 +1,36 @@ +#!/bin/sh +# +# An example hook script to prepare the commit log message. +# Called by "git commit" with the name of the file that has the +# commit message, followed by the description of the commit +# message's source. The hook's purpose is to edit the commit +# message file. If the hook fails with a non-zero status, +# the commit is aborted. +# +# To enable this hook, rename this file to "prepare-commit-msg". + +# This hook includes three examples. The first comments out the +# "Conflicts:" part of a merge commit. +# +# The second includes the output of "git diff --name-status -r" +# into the message, just before the "git status" output. It is +# commented because it doesn't cope with --amend or with squashed +# commits. +# +# The third example adds a Signed-off-by line to the message, that can +# still be edited. This is rarely a good idea. + +case "$2,$3" in + merge,) + /usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;; + +# ,|template,) +# /usr/bin/perl -i.bak -pe ' +# print "\n" . `git diff --cached --name-status -r` +# if /^#/ && $first++ == 0' "$1" ;; + + *) ;; +esac + +# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') +# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" diff --git a/cc_moba/xiaoxiao/hooks/update.sample b/cc_moba/xiaoxiao/hooks/update.sample new file mode 100644 index 0000000..d847583 --- /dev/null +++ b/cc_moba/xiaoxiao/hooks/update.sample @@ -0,0 +1,128 @@ +#!/bin/sh +# +# An example hook script to blocks unannotated tags from entering. +# Called by "git receive-pack" with arguments: refname sha1-old sha1-new +# +# To enable this hook, rename this file to "update". +# +# Config +# ------ +# hooks.allowunannotated +# This boolean sets whether unannotated tags will be allowed into the +# repository. By default they won't be. +# hooks.allowdeletetag +# This boolean sets whether deleting tags will be allowed in the +# repository. By default they won't be. +# hooks.allowmodifytag +# This boolean sets whether a tag may be modified after creation. By default +# it won't be. +# hooks.allowdeletebranch +# This boolean sets whether deleting branches will be allowed in the +# repository. By default they won't be. +# hooks.denycreatebranch +# This boolean sets whether remotely creating branches will be denied +# in the repository. By default this is allowed. +# + +# --- Command line +refname="$1" +oldrev="$2" +newrev="$3" + +# --- Safety check +if [ -z "$GIT_DIR" ]; then + echo "Don't run this script from the command line." >&2 + echo " (if you want, you could supply GIT_DIR then run" >&2 + echo " $0 )" >&2 + exit 1 +fi + +if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then + echo "usage: $0 " >&2 + exit 1 +fi + +# --- Config +allowunannotated=$(git config --bool hooks.allowunannotated) +allowdeletebranch=$(git config --bool hooks.allowdeletebranch) +denycreatebranch=$(git config --bool hooks.denycreatebranch) +allowdeletetag=$(git config --bool hooks.allowdeletetag) +allowmodifytag=$(git config --bool hooks.allowmodifytag) + +# check for no description +projectdesc=$(sed -e '1q' "$GIT_DIR/description") +case "$projectdesc" in +"Unnamed repository"* | "") + echo "*** Project description file hasn't been set" >&2 + exit 1 + ;; +esac + +# --- Check types +# if $newrev is 0000...0000, it's a commit to delete a ref. +zero="0000000000000000000000000000000000000000" +if [ "$newrev" = "$zero" ]; then + newrev_type=delete +else + newrev_type=$(git cat-file -t $newrev) +fi + +case "$refname","$newrev_type" in + refs/tags/*,commit) + # un-annotated tag + short_refname=${refname##refs/tags/} + if [ "$allowunannotated" != "true" ]; then + echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 + echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 + exit 1 + fi + ;; + refs/tags/*,delete) + # delete tag + if [ "$allowdeletetag" != "true" ]; then + echo "*** Deleting a tag is not allowed in this repository" >&2 + exit 1 + fi + ;; + refs/tags/*,tag) + # annotated tag + if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 + then + echo "*** Tag '$refname' already exists." >&2 + echo "*** Modifying a tag is not allowed in this repository." >&2 + exit 1 + fi + ;; + refs/heads/*,commit) + # branch + if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then + echo "*** Creating a branch is not allowed in this repository" >&2 + exit 1 + fi + ;; + refs/heads/*,delete) + # delete branch + if [ "$allowdeletebranch" != "true" ]; then + echo "*** Deleting a branch is not allowed in this repository" >&2 + exit 1 + fi + ;; + refs/remotes/*,commit) + # tracking branch + ;; + refs/remotes/*,delete) + # delete tracking branch + if [ "$allowdeletebranch" != "true" ]; then + echo "*** Deleting a tracking branch is not allowed in this repository" >&2 + exit 1 + fi + ;; + *) + # Anything else (is there anything else?) + echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 + exit 1 + ;; +esac + +# --- Finished +exit 0 diff --git a/cc_moba/xiaoxiao/info/exclude b/cc_moba/xiaoxiao/info/exclude new file mode 100644 index 0000000..a5196d1 --- /dev/null +++ b/cc_moba/xiaoxiao/info/exclude @@ -0,0 +1,6 @@ +# git ls-files --others --exclude-from=.git/info/exclude +# Lines that start with '#' are comments. +# For a project mostly in C, the following would be a good set of +# exclude patterns (uncomment them if you want to use them): +# *.[oa] +# *~