Commit a9b742fc authored by Friends233's avatar Friends233

爪子动画

parent 19f8d3e9
This diff is collapsed.
// Learn TypeScript:
// - https://docs.cocos.com/creator/2.4/manual/en/scripting/typescript.html
// Learn Attribute:
// - https://docs.cocos.com/creator/2.4/manual/en/scripting/reference/attributes.html
// Learn life-cycle callbacks:
// - https://docs.cocos.com/creator/2.4/manual/en/scripting/life-cycle-callbacks.html
const { ccclass, property } = cc._decorator;
@ccclass
export default class NewClass extends cc.Component {
// LIFE-CYCLE CALLBACKS:
// onLoad () {}
event:cc.Event.EventCustom = null
onAnimCompleted(state) {
this.event.detail = {
state
}
cc.find('Canvas').dispatchEvent(this.event)
console.log(cc.find('Canvas'))
}
start() {
this.event = new cc.Event.EventCustom("test", true)
}
// update (dt) {}
}
{
"ver": "1.1.0",
"uuid": "e1b90feb-a217-4493-849d-9a611900d683",
"uuid": "b257d78d-2c49-4443-ba30-8da525123d13",
"importer": "typescript",
"isPlugin": false,
"loadPluginInWeb": true,
......
{
"ver": "1.1.3",
"uuid": "05e34d5f-d42a-4e7d-ab42-59cbb63484d1",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
/** 关卡信息 */
export const LevelInfo = [
{level:1,colors:['#EC5F33','#E52800','#CA1D00'],countDown:10}
{level:2,colors:['#FF9400','#FF6C00','#EC5F33','#E52800','#CA1D00'],countDown:20}
{level:3,colors:['#FFD34A','#FFC300','#FFB637','#FF9400','#FF6C00','#EC5F33','#E52800','#CA1D00'],countDown:30}
]
\ No newline at end of file
{
"ver": "1.1.0",
"uuid": "2197d5e5-9a2c-4289-b19a-e39572cf784f",
"importer": "typescript",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
// Learn TypeScript:
// - https://docs.cocos.com/creator/2.4/manual/en/scripting/typescript.html
// Learn Attribute:
// - https://docs.cocos.com/creator/2.4/manual/en/scripting/reference/attributes.html
// Learn life-cycle callbacks:
// - https://docs.cocos.com/creator/2.4/manual/en/scripting/life-cycle-callbacks.html
import { LevelInfo } from "./Config/GameConfig";
import { numToChinese, set16ToRgb } from "./utils";
const { ccclass, property } = cc._decorator;
// 爪子状态
const CLIP_STATE = {
/** 默认 */
DEFAULT: 'default',
/** 出钩 */
PLAY: 'clipPlay',
/** 收回 */
STOP: 'clipStop'
}
@ccclass
export default class NewClass extends cc.Component {
/** 单格进度条 */
@property(cc.Prefab)
procItem: cc.Prefab = null
/** 当前关卡 0、1、2... */
actLevel = 0,
/** 关卡目标数量 */
levelObjectives = 0
/** 当前关卡信息 */
actLevelInfo = null
/** 已获得星星数量 */
starNum = 0
/** 倒计时 */
countDown = 0
/** 游戏是否结束 */
isGameOver = false
/** 爪子旋转动画 */
clipAni: cc.Animation = null
clipState = CLIP_STATE.STOP
start() {
this.refreshLevelInfo()
this.clipAni = cc.find('clip/clipWrp/defa', this.node).getComponent(cc.Animation)
this.addNodeEvent()
this.node.on("test", this.onAnimCompleted,this)
}
/** 爪子事件 */
onAnimCompleted({ detail }) {
console.log(detail.state)
if (detail.state === CLIP_STATE.PLAY) {
this.setClipState(CLIP_STATE.STOP)
return
}
if (detail.state === CLIP_STATE.STOP) {
this.setClipState(CLIP_STATE.DEFAULT)
return
}
}
/** 添加节点的事件 */
addNodeEvent() {
const gameBtn = cc.find('gameBtn', this.node)
gameBtn.on(cc.Node.EventType.TOUCH_END, this.playGame, this)
const clip = this.clipAni
clip.on('palyEnd', () => {
console.log('end')
}, this)
clip.on('stop', () => {
}, this)
}
/** 设置爪子状态 */
setClipState(state) {
const ani = cc.find('clip/clipWrp', this.node).getComponent(cc.Animation)
const node = cc.find('clip/clipWrp/defa', this.node)
const clip = node.getComponent(cc.Animation), spf = node.getComponent(cc.Sprite).spriteFrame
spf.insetBottom = 125
spf.insetTop = 10
this.clipState = state
switch (state) {
case CLIP_STATE.DEFAULT:
ani.resume()
break;
case CLIP_STATE.PLAY:
ani.pause()
clip.play(state)
break;
case CLIP_STATE.STOP:
ani.pause()
clip.play(state)
break;
}
}
/** 出钩 */
playGame() {
if (this.isGameOver) return
this.setClipState(CLIP_STATE.PLAY)
this.setStarProc()
if (this.starNum >= this.levelObjectives) {
const nextLevel = this.actLevel + 1
if (nextLevel >= LevelInfo.length) { // 已通关
this.gameOver()
return
}
console.log(`过关`)
this.refreshLevelInfo(nextLevel)
return
}
}
/** 游戏结束 */
gameOver() {
this.isGameOver = true
this.unschedule(this.startCd)
}
/**
* 设置节点lable
* @param value
*/
setLable(key, value) {
cc.find(key, this.node).getComponent(cc.Label).string = value + ''
}
/** 开始倒计时 */
startCd() {
const cd = this.countDown - 1 || 0
if (!cd || cd <= 0) {
this.setLable('cdIcon/cd', `0s`)
console.log('倒计时结束')
this.unschedule(this.startCd)
return
}
this.countDown = cd
this.setLable('cdIcon/cd', `${this.countDown}s`)
}
protected onDestroy(): void {
this.unschedule(this.startCd)
}
/** 刷新关卡信息 */
refreshLevelInfo(level = 0) {
this.isGameOver = false
this.actLevel = level
this.starNum = 0
this.levelObjectives = LevelInfo[level].colors.length
this.actLevelInfo = LevelInfo[level]
this.countDown = this.actLevelInfo.countDown
this.setLable('levelName', `第${numToChinese(level + 1)}关`)
this.setLable('starIcon/starProc', `${this.starNum}/${this.levelObjectives}`)
this.updateGameProc()
this.unschedule(this.startCd)
this.setLable('cdIcon/cd', `${this.countDown}s`)
this.schedule(this.startCd, 1)
}
/** 设置星星进度 */
setStarProc() {
const proc = cc.find('procBg/proc', this.node)
const key = this.starNum
if (key >= this.levelObjectives) return
const node = cc.instantiate(this.procItem)
const rgbAry = set16ToRgb(this.actLevelInfo.colors[key])
node.color = new cc.Color(...rgbAry)
node.setParent(proc)
this.starNum++
this.setLable('starIcon/starProc', `${this.starNum}/${this.levelObjectives}`)
}
/** 更新游戏进度条信息 */
updateGameProc() {
const procBg = this.node.getChildByName('procBg'), proc = procBg.getChildByName('proc')
const actIdx = this.levelObjectives, procItemWidth = 39, procOffset = 1
proc.removeAllChildren()
procBg.width = procItemWidth * actIdx + 12 + (actIdx - 1) * procOffset
proc.width = procItemWidth * actIdx + (actIdx - 1) * procOffset
procBg.x = -(procBg.width / 2)
}
update(dt) {
}
}
{
"ver": "1.1.0",
"uuid": "5798d869-c2d3-4742-ad8e-5d2e00b7f8c6",
"importer": "typescript",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
const {ccclass, property} = cc._decorator;
@ccclass
export default class Helloworld extends cc.Component {
@property(cc.Label)
label: cc.Label = null;
@property
text: string = 'hello';
start () {
// init logic
this.label.string = this.text;
}
}
export const set16ToRgb = (str) => {
if(!str) return
var reg = /^#([0-9A-Fa-f]{3}|[0-9A-Fa-f]{6})$/
if(!reg.test(str)){return;}
let newStr = (str.toLowerCase()).replace(/\#/g,'')
let len = newStr.length;
if(len == 3){
let t = ''
for(var i=0;i<len;i++){
t += newStr.slice(i,i+1).concat(newStr.slice(i,i+1))
}
newStr = t
}
let arr = []; //将字符串分隔,两个两个的分隔
for(var i =0;i<6;i=i+2){
let s = newStr.slice(i,i+2)
arr.push(parseInt("0x" + s))
}
return arr;
}
/**
* 数字转换为汉字(0-10)
* @param num 0-10
* @returns
*/
export const numToChinese = (num) =>{
const numMap = ['零','一','二','三','四','五','六','七','八','九','十']
return numMap[num]
}
{
"ver": "1.1.0",
"uuid": "6aca37ab-a485-4f2e-9316-e1b2700d147a",
"importer": "typescript",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.3",
"uuid": "f473c4e7-898b-45f1-bb3e-ba4646a8bf3e",
"uuid": "0706a333-c2f7-4ac0-aa6f-0ec92fab3a43",
"importer": "folder",
"isBundle": true,
"bundleName": "resources",
......
{
"ver": "1.1.3",
"uuid": "645cc3ee-16f1-4626-95fd-6a511fec26f6",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.3",
"uuid": "9b8ef703-b7c4-4dd3-a3f5-86826ce9b5d0",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
This diff is collapsed.
{
"ver": "2.1.2",
"uuid": "728720a9-5341-458b-8a29-451eb2e596ea",
"importer": "animation-clip",
"subMetas": {}
}
\ No newline at end of file
{
"__type__": "cc.AnimationClip",
"_name": "clipPlay",
"_objFlags": 0,
"_native": "",
"_duration": 1.5,
"sample": 60,
"speed": 1,
"wrapMode": 1,
"curveData": {
"props": {
"height": [
{
"frame": 0,
"value": 148
},
{
"frame": 1.5,
"value": 648
}
]
}
},
"events": [
{
"frame": 1.5,
"func": "onAnimCompleted",
"params": [
"clipPlay"
]
}
]
}
\ No newline at end of file
{
"ver": "2.1.2",
"uuid": "4ab0d7a5-4856-4174-95a8-440505fb37c0",
"importer": "animation-clip",
"subMetas": {}
}
\ No newline at end of file
{
"__type__": "cc.AnimationClip",
"_name": "clipRation",
"_objFlags": 0,
"_native": "",
"_duration": 4,
"sample": 30,
"speed": 1,
"wrapMode": 2,
"curveData": {
"props": {
"angle": [
{
"frame": 0,
"value": 0
},
{
"frame": 1,
"value": 30
},
{
"frame": 3,
"value": -30
},
{
"frame": 4,
"value": 0
}
]
}
},
"events": []
}
\ No newline at end of file
{
"ver": "2.1.2",
"uuid": "eb1b6e0b-fd11-424c-ab1d-1be80e3ae8c8",
"importer": "animation-clip",
"subMetas": {}
}
\ No newline at end of file
{
"__type__": "cc.AnimationClip",
"_name": "clipStop",
"_objFlags": 0,
"_native": "",
"_duration": 1.5,
"sample": 60,
"speed": 1,
"wrapMode": 36,
"curveData": {
"props": {
"height": [
{
"frame": 0,
"value": 148
},
{
"frame": 1.5,
"value": 648
}
]
}
},
"events": [
{
"frame": 0,
"func": "onAnimCompleted",
"params": [
"clipStop"
]
}
]
}
\ No newline at end of file
{
"ver": "2.1.2",
"uuid": "7d156361-594e-49a9-b5f6-5982f013494b",
"importer": "animation-clip",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.3",
"uuid": "d1e422cd-7ef8-4941-ae8f-d2f35ea0f549",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "2506708c-6913-41a2-8c6c-43fc54fff509",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 750,
"height": 1624,
"platformSettings": {},
"subMetas": {
"bg": {
"ver": "1.0.6",
"uuid": "cc67cedd-0675-4a69-a1d5-6176445d6fe5",
"importer": "sprite-frame",
"rawTextureUuid": "2506708c-6913-41a2-8c6c-43fc54fff509",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 750,
"height": 1624,
"rawWidth": 750,
"rawHeight": 1624,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "6fbe3208-9b42-4c28-9d99-157ded4ae601",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 148,
"height": 46,
"platformSettings": {},
"subMetas": {
"cdIcon": {
"ver": "1.0.6",
"uuid": "ca3cf2d5-93cb-4d00-b2b8-7f51cb792fe6",
"importer": "sprite-frame",
"rawTextureUuid": "6fbe3208-9b42-4c28-9d99-157ded4ae601",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 148,
"height": 46,
"rawWidth": 148,
"rawHeight": 46,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "8c8d8879-5dcb-4e40-aa76-3a2006fc4bd5",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 108,
"height": 148,
"platformSettings": {},
"subMetas": {
"clipDefault": {
"ver": "1.0.6",
"uuid": "32bd8441-2d13-4800-9440-790335c686d8",
"importer": "sprite-frame",
"rawTextureUuid": "8c8d8879-5dcb-4e40-aa76-3a2006fc4bd5",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 108,
"height": 148,
"rawWidth": 108,
"rawHeight": 148,
"borderTop": 4,
"borderBottom": 125,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "1.1.3",
"uuid": "536d743c-1f3a-4adc-bee5-b4b7c389a4fd",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "8b7b9436-f6cd-414e-8d60-eff05cf7e2e2",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00000": {
"ver": "1.0.6",
"uuid": "12fa6426-b4e8-4566-b187-464b9b22063a",
"importer": "sprite-frame",
"rawTextureUuid": "8b7b9436-f6cd-414e-8d60-eff05cf7e2e2",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -2,
"trimX": 0,
"trimY": 10,
"width": 120,
"height": 138,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "5b652225-41c7-4156-872f-72f99d734747",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00001": {
"ver": "1.0.6",
"uuid": "73e552a8-0c92-4930-9293-df6344040156",
"importer": "sprite-frame",
"rawTextureUuid": "5b652225-41c7-4156-872f-72f99d734747",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -1.5,
"trimX": 0,
"trimY": 9,
"width": 120,
"height": 139,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "2ff3a9c8-184d-4931-9453-688c4a3af13d",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00002": {
"ver": "1.0.6",
"uuid": "ac1333a2-01f0-4aff-ad79-139433b3b101",
"importer": "sprite-frame",
"rawTextureUuid": "2ff3a9c8-184d-4931-9453-688c4a3af13d",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -0.5,
"trimX": 0,
"trimY": 8,
"width": 120,
"height": 139,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "209de44e-e481-40ec-a8b5-30163c77a930",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00003": {
"ver": "1.0.6",
"uuid": "8f3c3fa6-c8a9-4432-8f7e-f0e8d9d5807c",
"importer": "sprite-frame",
"rawTextureUuid": "209de44e-e481-40ec-a8b5-30163c77a930",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -0.5,
"trimX": 0,
"trimY": 8,
"width": 120,
"height": 139,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "bdf77665-c7ab-49fb-b87a-67e0e32e7586",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00004": {
"ver": "1.0.6",
"uuid": "777b198b-b57d-4e53-8da1-ff08cfe9b54e",
"importer": "sprite-frame",
"rawTextureUuid": "bdf77665-c7ab-49fb-b87a-67e0e32e7586",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 1,
"trimY": 7,
"width": 118,
"height": 140,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "2d10327b-71b5-4982-9ec6-251dadf1d70f",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00005": {
"ver": "1.0.6",
"uuid": "55656326-dbf7-4075-b3b7-f0d03b3c2919",
"importer": "sprite-frame",
"rawTextureUuid": "2d10327b-71b5-4982-9ec6-251dadf1d70f",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0.5,
"trimX": 1,
"trimY": 6,
"width": 118,
"height": 141,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "09d82491-ec9c-475a-ad9f-b744d254515d",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00006": {
"ver": "1.0.6",
"uuid": "1523f600-ef25-4b54-863a-6b06dd515b2b",
"importer": "sprite-frame",
"rawTextureUuid": "09d82491-ec9c-475a-ad9f-b744d254515d",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0.5,
"trimX": 2,
"trimY": 6,
"width": 116,
"height": 141,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "b8dbdd11-8a35-4d81-aa86-10569dd9fa13",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00007": {
"ver": "1.0.6",
"uuid": "39b180d5-846c-4a82-99fb-d091834ac84d",
"importer": "sprite-frame",
"rawTextureUuid": "b8dbdd11-8a35-4d81-aa86-10569dd9fa13",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 1.5,
"trimX": 2,
"trimY": 5,
"width": 116,
"height": 141,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "850f07f4-c3a9-4763-825e-eb2d873229f0",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00008": {
"ver": "1.0.6",
"uuid": "27dea4ba-bd84-41cb-8aad-46384aa8ce27",
"importer": "sprite-frame",
"rawTextureUuid": "850f07f4-c3a9-4763-825e-eb2d873229f0",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 2,
"trimX": 3,
"trimY": 4,
"width": 114,
"height": 142,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "cec8b79e-ca6b-4a85-9fd9-0cbd453e468a",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00009": {
"ver": "1.0.6",
"uuid": "daa5349e-7468-48a9-8e8b-b081364397c8",
"importer": "sprite-frame",
"rawTextureUuid": "cec8b79e-ca6b-4a85-9fd9-0cbd453e468a",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": 2,
"trimX": 4,
"trimY": 4,
"width": 113,
"height": 142,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "f2cfd191-0752-4f0e-97cd-0211b7823dc7",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00010": {
"ver": "1.0.6",
"uuid": "c261bf96-7a62-4341-8842-0b5ea9787d97",
"importer": "sprite-frame",
"rawTextureUuid": "f2cfd191-0752-4f0e-97cd-0211b7823dc7",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 2.5,
"trimX": 4,
"trimY": 3,
"width": 112,
"height": 143,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "fe096bb5-ba88-4666-823b-2f53d0af44aa",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00011": {
"ver": "1.0.6",
"uuid": "1d3d79ae-5808-49e4-910d-514bd772fce6",
"importer": "sprite-frame",
"rawTextureUuid": "fe096bb5-ba88-4666-823b-2f53d0af44aa",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 2.5,
"trimX": 5,
"trimY": 3,
"width": 110,
"height": 143,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "c03fa192-d73e-4ee7-b897-0aa972307174",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00012": {
"ver": "1.0.6",
"uuid": "39322d31-d1f5-4d19-929e-aa21d06c9334",
"importer": "sprite-frame",
"rawTextureUuid": "c03fa192-d73e-4ee7-b897-0aa972307174",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 3,
"trimX": 6,
"trimY": 2,
"width": 108,
"height": 144,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "f37ec953-4950-4d07-910d-56b3f8c734c6",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00013": {
"ver": "1.0.6",
"uuid": "425444fc-9b07-46a5-88d3-e062d9ceed45",
"importer": "sprite-frame",
"rawTextureUuid": "f37ec953-4950-4d07-910d-56b3f8c734c6",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 3,
"trimX": 6,
"trimY": 2,
"width": 108,
"height": 144,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "3b1b2393-4505-4744-96d3-b0ae6eb08a20",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00014": {
"ver": "1.0.6",
"uuid": "9517e469-546f-4bd1-991f-2dfa0ba99236",
"importer": "sprite-frame",
"rawTextureUuid": "3b1b2393-4505-4744-96d3-b0ae6eb08a20",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 3.5,
"trimX": 6,
"trimY": 1,
"width": 108,
"height": 145,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "1f4c0412-8d79-42fa-965b-ac8042f47779",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00015": {
"ver": "1.0.6",
"uuid": "f0b6e396-eb40-4d2a-86ba-d8924646172a",
"importer": "sprite-frame",
"rawTextureUuid": "1f4c0412-8d79-42fa-965b-ac8042f47779",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 3.5,
"trimX": 6,
"trimY": 1,
"width": 108,
"height": 145,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "e5e0336b-3c20-48a7-a143-920a7e62f934",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00016": {
"ver": "1.0.6",
"uuid": "50d4fef8-ce6c-4360-bba7-a52c61b4dea2",
"importer": "sprite-frame",
"rawTextureUuid": "e5e0336b-3c20-48a7-a143-920a7e62f934",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 3.5,
"trimX": 6,
"trimY": 1,
"width": 107,
"height": 145,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "9c6178b6-4818-43ba-9b97-fc520ba9d068",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00017": {
"ver": "1.0.6",
"uuid": "3076ea9e-d164-4602-90ea-8ba35b5875f4",
"importer": "sprite-frame",
"rawTextureUuid": "9c6178b6-4818-43ba-9b97-fc520ba9d068",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 3.5,
"trimX": 7,
"trimY": 1,
"width": 106,
"height": 145,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "836ccb65-0a79-4af8-bc33-1be5f8ef1498",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00018": {
"ver": "1.0.6",
"uuid": "efe5d7c7-accb-4b1a-a9dd-c41a5c294e79",
"importer": "sprite-frame",
"rawTextureUuid": "836ccb65-0a79-4af8-bc33-1be5f8ef1498",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 3.5,
"trimX": 7,
"trimY": 1,
"width": 106,
"height": 145,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "c55d5f42-96b5-451b-9009-dd8c3883f4e4",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00019": {
"ver": "1.0.6",
"uuid": "514991db-07e6-4f83-9039-c8383ff6108e",
"importer": "sprite-frame",
"rawTextureUuid": "c55d5f42-96b5-451b-9009-dd8c3883f4e4",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 4,
"trimX": 7,
"trimY": 0,
"width": 106,
"height": 146,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "6969509c-044a-4070-9040-8522e6b9babd",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00020": {
"ver": "1.0.6",
"uuid": "71f0f750-b024-4d15-b135-7d9ff1bdc0a3",
"importer": "sprite-frame",
"rawTextureUuid": "6969509c-044a-4070-9040-8522e6b9babd",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 3.5,
"trimX": 7,
"trimY": 1,
"width": 106,
"height": 145,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "0bcb6661-4879-4403-97a5-5fc5e56e89a5",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00021": {
"ver": "1.0.6",
"uuid": "1b0666a6-c0c3-463e-b2f7-24b84c80ea29",
"importer": "sprite-frame",
"rawTextureUuid": "0bcb6661-4879-4403-97a5-5fc5e56e89a5",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 3.5,
"trimX": 7,
"trimY": 1,
"width": 106,
"height": 145,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "e4a1d5ee-2bf9-45b7-ba28-e98ce60eab97",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00022": {
"ver": "1.0.6",
"uuid": "db99844e-0d37-405a-9b20-6cb617137f46",
"importer": "sprite-frame",
"rawTextureUuid": "e4a1d5ee-2bf9-45b7-ba28-e98ce60eab97",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 3.5,
"trimX": 8,
"trimY": 1,
"width": 104,
"height": 145,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "cf772068-28c9-4fd7-aac7-5f8ab2051a06",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00023": {
"ver": "1.0.6",
"uuid": "2721cdfd-223f-44fd-9752-994bde5b2a6c",
"importer": "sprite-frame",
"rawTextureUuid": "cf772068-28c9-4fd7-aac7-5f8ab2051a06",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 3.5,
"trimX": 8,
"trimY": 1,
"width": 104,
"height": 145,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "26ff0a23-cf3a-49e9-b3a2-e2f9e67ef4b3",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00024": {
"ver": "1.0.6",
"uuid": "50729527-98ab-4478-bf2f-27f5c0bd0836",
"importer": "sprite-frame",
"rawTextureUuid": "26ff0a23-cf3a-49e9-b3a2-e2f9e67ef4b3",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 3.5,
"trimX": 8,
"trimY": 1,
"width": 104,
"height": 145,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "43284f56-9c25-43f1-8bb3-4efad5045f0f",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00025": {
"ver": "1.0.6",
"uuid": "3d3e9576-84ee-4d07-912b-1d8ae00cdab6",
"importer": "sprite-frame",
"rawTextureUuid": "43284f56-9c25-43f1-8bb3-4efad5045f0f",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 3,
"trimX": 8,
"trimY": 2,
"width": 104,
"height": 144,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "890d183d-5ad2-4d07-89b9-782651bb74fc",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00026": {
"ver": "1.0.6",
"uuid": "ac43bac9-d32e-4627-91ef-b79ab9b7913f",
"importer": "sprite-frame",
"rawTextureUuid": "890d183d-5ad2-4d07-89b9-782651bb74fc",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 2.5,
"trimX": 8,
"trimY": 2,
"width": 104,
"height": 145,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "5edb8160-fa56-4961-92ab-6416102cfe1a",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00027": {
"ver": "1.0.6",
"uuid": "57b95b95-8a8d-40b2-86ca-4bbeba6fb706",
"importer": "sprite-frame",
"rawTextureUuid": "5edb8160-fa56-4961-92ab-6416102cfe1a",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 2,
"trimX": 8,
"trimY": 3,
"width": 104,
"height": 144,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "5eb29aa1-08dd-4e2d-a0b6-b5c2cad7c720",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00028": {
"ver": "1.0.6",
"uuid": "104b5bc6-8b5b-49a0-b2a0-be8408fb2b77",
"importer": "sprite-frame",
"rawTextureUuid": "5eb29aa1-08dd-4e2d-a0b6-b5c2cad7c720",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 2,
"trimX": 8,
"trimY": 3,
"width": 104,
"height": 144,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "60ae18eb-4f6e-45fa-98c3-26dd2ba5f8ca",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00029": {
"ver": "1.0.6",
"uuid": "210f1a12-9703-4a65-9067-6fdd8f4928ad",
"importer": "sprite-frame",
"rawTextureUuid": "60ae18eb-4f6e-45fa-98c3-26dd2ba5f8ca",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 1.5,
"trimX": 8,
"trimY": 4,
"width": 104,
"height": 143,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "36da8b3b-703e-44b7-b08a-ae79cdd176e9",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00030": {
"ver": "1.0.6",
"uuid": "d3bf302f-b552-445d-9372-a5cb9b7307e9",
"importer": "sprite-frame",
"rawTextureUuid": "36da8b3b-703e-44b7-b08a-ae79cdd176e9",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 1,
"trimX": 9,
"trimY": 4,
"width": 102,
"height": 144,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "04d8f2fb-cc77-404f-9cf3-4ca1a07b7c4e",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00031": {
"ver": "1.0.6",
"uuid": "251ddaa5-441b-4ac1-89e8-f0f5d8373e55",
"importer": "sprite-frame",
"rawTextureUuid": "04d8f2fb-cc77-404f-9cf3-4ca1a07b7c4e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0.5,
"trimX": 8,
"trimY": 5,
"width": 104,
"height": 143,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "4aa80b2c-338a-4f51-9f88-1bea750ef610",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00032": {
"ver": "1.0.6",
"uuid": "ea78b58a-78c2-48f2-8a19-29a030939207",
"importer": "sprite-frame",
"rawTextureUuid": "4aa80b2c-338a-4f51-9f88-1bea750ef610",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -0.5,
"trimX": 8,
"trimY": 6,
"width": 104,
"height": 143,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "b0eac1e7-ffb7-4058-b713-66b03ed67f7d",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00033": {
"ver": "1.0.6",
"uuid": "96cbf65a-d705-42dd-85e8-cb8f5186c3dd",
"importer": "sprite-frame",
"rawTextureUuid": "b0eac1e7-ffb7-4058-b713-66b03ed67f7d",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -0.5,
"trimX": 8,
"trimY": 6,
"width": 104,
"height": 143,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.7",
"uuid": "791928da-6271-4c96-a401-1d1225d4e9c0",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 120,
"height": 154,
"platformSettings": {},
"subMetas": {
"夹子待机_00034": {
"ver": "1.0.6",
"uuid": "b728245c-9306-48fa-81d2-b13df6024914",
"importer": "sprite-frame",
"rawTextureUuid": "791928da-6271-4c96-a401-1d1225d4e9c0",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -1.5,
"trimX": 8,
"trimY": 7,
"width": 104,
"height": 143,
"rawWidth": 120,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment