Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
BOY04
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
template admin
BOY04
Commits
19534f5f
Commit
19534f5f
authored
Dec 09, 2023
by
Tt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加小迪
parent
0a8390ce
Changes
12
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
316 additions
and
7 deletions
+316
-7
pg.ts
assets/BOY04/scene/pg.ts
+103
-7
xiaodi.ts
assets/BOY04/scene/xiaodi.ts
+108
-0
xiaodi.ts.meta
assets/BOY04/scene/xiaodi.ts.meta
+9
-0
xiaodi.meta
assets/BOY04/textures/xiaodi.meta
+12
-0
btn_go_dg07_fanka.png
assets/BOY04/textures/xiaodi/btn_go_dg07_fanka.png
+0
-0
btn_go_dg07_fanka.png.meta
assets/BOY04/textures/xiaodi/btn_go_dg07_fanka.png.meta
+36
-0
xiaodi_ske_dg07_fanka.json
assets/BOY04/textures/xiaodi/xiaodi_ske_dg07_fanka.json
+1
-0
xiaodi_ske_dg07_fanka.json.meta
assets/BOY04/textures/xiaodi/xiaodi_ske_dg07_fanka.json.meta
+5
-0
xiaodi_tex_dg07_fanka.json
assets/BOY04/textures/xiaodi/xiaodi_tex_dg07_fanka.json
+1
-0
xiaodi_tex_dg07_fanka.json.meta
assets/BOY04/textures/xiaodi/xiaodi_tex_dg07_fanka.json.meta
+5
-0
xiaodi_tex_dg07_fanka.png
assets/BOY04/textures/xiaodi/xiaodi_tex_dg07_fanka.png
+0
-0
xiaodi_tex_dg07_fanka.png.meta
assets/BOY04/textures/xiaodi/xiaodi_tex_dg07_fanka.png.meta
+36
-0
No files found.
assets/BOY04/scene/pg.ts
View file @
19534f5f
...
...
@@ -13,8 +13,10 @@ class Emitter {
this
.
_callbacks
=
{};
return
this
;
}
clear
()
{
this
.
_callbacks
=
{};
}
on
(
event
,
fn
)
{
this
.
off
(
event
);
if
(
!
this
.
_callbacks
[
event
])
this
.
_callbacks
[
event
]
=
[];
this
.
_callbacks
[
event
].
push
(
fn
);
};
...
...
@@ -26,7 +28,7 @@ class Emitter {
on
.
fn
=
fn
;
this
.
on
(
event
,
on
);
};
off
(
event
,
fn
?:
any
)
{
off
(
event
,
fn
)
{
// all
if
(
0
==
arguments
.
length
)
{
this
.
_callbacks
=
{};
...
...
@@ -73,6 +75,39 @@ class Emitter {
return
!!
this
.
listeners
(
event
).
length
;
};
}
class
TimeCtrl
{
private
current
:
number
;
constructor
()
{
this
.
current
=
0
;
}
fillTime
(
time
)
{
this
.
current
+=
(
time
*
1000
)
return
this
;
}
setTime
(
time
)
{
this
.
current
+=
(
time
*
1000
)
return
this
;
}
wait
()
{
return
new
Promise
((
resolve
,
reject
)
=>
{
let
lastTime
=
new
Date
().
getTime
();
let
id
=
setInterval
(()
=>
{
let
nowTime
=
new
Date
().
getTime
();
this
.
current
-=
(
nowTime
-
lastTime
);
lastTime
=
nowTime
;
if
(
this
.
current
<=
0
)
{
clearInterval
(
id
);
resolve
(
true
);
}
},
1
)
});
}
reset
()
{
this
.
current
=
0
;
return
this
;
}
}
let
pg
=
{
logger
:
{
d
:
function
(
str
)
{
...
...
@@ -227,9 +262,15 @@ let pg = {
if
(
!
cc
.
isValid
(
node
))
return
pg
.
logger
.
i
(
"
节点已销毁
"
);
if
(
!
node
)
return
pg
.
logger
.
w
(
"
节点已销毁
"
);
if
(
w
&&
h
)
{
// 宽高都需要匹配
let
scaleX
=
w
/
nw
;
let
scaleY
=
h
/
nh
;
let
scale
=
scaleX
<=
scaleY
?
scaleX
:
scaleY
;
node
.
width
=
nw
*
scaleX
;
node
.
height
=
nh
*
scaleY
;
}
else
if
(
w
&&
!
h
)
{
// 只匹配宽
let
scale
=
w
/
nw
;
node
.
width
=
nw
*
scale
;
node
.
height
=
nh
*
scale
;
}
...
...
@@ -238,6 +279,18 @@ let pg = {
})
})
},
setNodeImg
(
item
,
target
)
{
return
new
Promise
((
resolve
,
reject
)
=>
{
if
(
!
item
)
return
pg
.
logger
.
w
(
"
图片更换失败,传入了错误的item
"
);
let
spriteFrame
=
target
.
getComponent
(
cc
.
Sprite
).
spriteFrame
;
let
node
=
item
.
node
?
item
.
node
:
item
;
if
(
!
cc
.
isValid
(
node
))
return
pg
.
logger
.
i
(
"
节点已销毁
"
);
let
component
=
node
.
getComponent
(
cc
.
Sprite
);
let
{
width
,
height
}
=
spriteFrame
.
getRect
();
component
.
spriteFrame
=
spriteFrame
;
resolve
({
width
,
height
});
})
},
switchMaterial
(
item
,
id0
=
0
,
id1
=
1
)
{
let
material0
=
item
.
getMaterial
(
id0
);
let
material1
=
item
.
getMaterial
(
id1
);
...
...
@@ -471,33 +524,76 @@ let pg = {
}
},
audio
:
{
playAudioByUrl
(
audio_url
)
{
playAudioByUrl
(
audio_url
,
cb
=
null
,
loadCb
=
null
)
{
return
new
Promise
((
resolve
,
reject
)
=>
{
if
(
!
audio_url
)
return
resolve
(
null
);
cc
.
assetManager
.
loadRemote
(
audio_url
,
(
err
,
audioClip
:
any
)
=>
{
const
audioId
=
cc
.
audioEngine
.
play
(
audioClip
,
false
,
0.8
);
cc
.
audioEngine
.
setFinishCallback
(
audioId
,
()
=>
{
cb
&&
cb
();
});
loadCb
&&
loadCb
(
audioId
);
resolve
(
audioId
);
});
});
},
playBgAudioByUrl
(
audio_url
,
cb
=
null
,
loadCb
=
null
)
{
return
new
Promise
((
resolve
,
reject
)
=>
{
if
(
!
audio_url
)
return
resolve
(
null
);
cc
.
assetManager
.
loadRemote
(
audio_url
,
(
err
,
audioClip
:
any
)
=>
{
const
audioId
=
cc
.
audioEngine
.
playMusic
(
audioClip
,
true
);
cc
.
audioEngine
.
setFinishCallback
(
audioId
,
()
=>
{
cb
&&
cb
();
});
loadCb
&&
loadCb
(
audioId
);
resolve
(
audioId
);
});
});
},
stopAudio
(
audioId
)
{
if
(
!
audioId
)
return
;
cc
.
audioEngine
.
stopEffect
(
audioId
);
},
playAudio
(
audioClip
,
cb
=
null
)
{
if
(
audioClip
)
{
const
audioId
=
cc
.
audioEngine
.
playEffect
(
audioClip
,
false
);
if
(
cb
)
{
cc
.
audioEngine
.
setFinishCallback
(
audioId
,
()
=>
{
cb
();
cb
&&
cb
();
});
}
return
audioId
;
}
},
playLocalAudio
(
audio
:
cc
.
Node
)
{
return
new
Promise
((
resolve
,
reject
)
=>
{
const
id
=
cc
.
audioEngine
.
playEffect
(
audio
.
getComponent
(
cc
.
AudioSource
).
clip
,
false
);
cc
.
audioEngine
.
setFinishCallback
(
id
,
()
=>
{
resolve
(
id
);
});
})
},
getAudioClip
(
audio_url
)
{
return
new
Promise
((
resolve
,
reject
)
=>
{
if
(
!
audio_url
)
return
resolve
(
null
);
cc
.
assetManager
.
loadRemote
(
audio_url
,
(
err
,
audioClip
:
any
)
=>
{
resolve
(
audioClip
);
});
});
}
},
time
:
{
delay
(
time
)
{
return
new
Promise
((
resolve
,
reject
)
=>
{
setTimeout
(()
=>
{
resolve
(
''
);
},
time
*
1000
);
});
},
delayCtrl
():
TimeCtrl
{
return
new
TimeCtrl
();
}
},
hw
:
{
...
...
assets/BOY04/scene/xiaodi.ts
0 → 100644
View file @
19534f5f
import
pg
from
"
./pg
"
;
const
{
ccclass
,
property
}
=
cc
.
_decorator
;
@
ccclass
export
default
class
dg_xiaodi
extends
cc
.
Component
{
@
property
(
cc
.
Node
)
aniRole
:
cc
.
Node
=
null
;
@
property
moveX
:
number
=
500
;
private
defaultX
:
number
;
onLoad
()
{
this
.
defaultX
=
this
.
aniRole
.
x
;
}
private
audioIdEnter
:
any
;
playEnter
(
audioUrl
)
{
return
new
Promise
((
resolve
,
reject
)
=>
{
this
.
node
.
active
=
true
;
let
startX
=
this
.
defaultX
+
this
.
moveX
;
this
.
aniRole
.
x
=
startX
;
cc
.
tween
(
this
.
aniRole
)
.
call
(()
=>
{
pg
.
view
.
playDBAnimation
(
this
.
aniRole
,
'
run
'
);
if
(
this
.
moveX
<
0
)
{
this
.
aniRole
.
scaleX
=
-
this
.
aniRole
.
scaleX
;
}
})
.
to
(
0.5
,
{
x
:
0
})
.
call
(()
=>
{
if
(
this
.
moveX
<
0
)
{
this
.
aniRole
.
scaleX
=
-
this
.
aniRole
.
scaleX
;
}
pg
.
view
.
playDBAnimation
(
this
.
aniRole
,
'
talk
'
);
pg
.
audio
.
playAudioByUrl
(
audioUrl
,
()
=>
{
this
.
audioIdEnter
=
null
;
cc
.
tween
(
this
.
aniRole
)
.
call
(()
=>
{
pg
.
view
.
playDBAnimation
(
this
.
aniRole
,
'
run
'
);
if
(
this
.
moveX
<
0
)
{
this
.
aniRole
.
scaleX
=
-
this
.
aniRole
.
scaleX
;
}
})
.
to
(
0.5
,
{
x
:
-
1500
})
.
call
(()
=>
{
this
.
scheduleOnce
(()
=>
{
resolve
(
''
);
},
0.5
)
})
.
start
();
},
audioId
=>
{
this
.
audioIdEnter
=
audioId
;
})
})
.
start
();
});
}
playEnterEnd
()
{
this
.
node
.
active
=
false
;
if
(
this
.
audioIdEnter
)
{
cc
.
audioEngine
.
stopEffect
(
this
.
audioIdEnter
)
}
}
private
audioIdOver
:
any
;
playOver
(
audioUrl
)
{
this
.
node
.
active
=
true
;
let
startX
=
this
.
defaultX
+
this
.
moveX
;
this
.
aniRole
.
x
=
startX
;
cc
.
tween
(
this
.
aniRole
)
.
call
(()
=>
{
pg
.
view
.
playDBAnimation
(
this
.
aniRole
,
'
run
'
);
if
(
this
.
moveX
<
0
)
{
this
.
aniRole
.
scaleX
=
-
this
.
aniRole
.
scaleX
;
}
})
.
to
(
0.3
,
{
x
:
this
.
defaultX
})
.
call
(()
=>
{
if
(
this
.
moveX
<
0
)
{
this
.
aniRole
.
scaleX
=
-
this
.
aniRole
.
scaleX
;
}
pg
.
view
.
playDBAnimation
(
this
.
aniRole
,
'
talk
'
);
pg
.
audio
.
playAudioByUrl
(
audioUrl
,
()
=>
{
this
.
audioIdOver
=
null
;
pg
.
view
.
playDBAnimation
(
this
.
aniRole
,
'
normal
'
);
},
audioId
=>
{
this
.
audioIdOver
=
audioId
;
})
})
.
start
();
}
playOverEnd
()
{
this
.
node
.
active
=
false
;
if
(
this
.
audioIdOver
)
{
cc
.
audioEngine
.
stopEffect
(
this
.
audioIdOver
)
}
}
start
()
{
}
update
(
dt
)
{
}
}
assets/BOY04/scene/xiaodi.ts.meta
0 → 100644
View file @
19534f5f
{
"ver": "1.0.8",
"uuid": "e017e44d-1470-4c4d-b7b1-154e34a35d8c",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
assets/BOY04/textures/xiaodi.meta
0 → 100644
View file @
19534f5f
{
"ver": "1.1.2",
"uuid": "d796c170-40d5-4ac4-835a-58acf8f40fe2",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
assets/BOY04/textures/xiaodi/btn_go_dg07_fanka.png
0 → 100644
View file @
19534f5f
8.95 KB
assets/BOY04/textures/xiaodi/btn_go_dg07_fanka.png.meta
0 → 100644
View file @
19534f5f
{
"ver": "2.3.5",
"uuid": "cdb949fe-8e2d-4cbd-bd43-f36cb9113c04",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 265,
"height": 175,
"platformSettings": {},
"subMetas": {
"btn_go_dg07_fanka": {
"ver": "1.0.4",
"uuid": "a53cbf71-f5e8-413f-8ca5-5d78b08c2680",
"rawTextureUuid": "cdb949fe-8e2d-4cbd-bd43-f36cb9113c04",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -4,
"offsetY": 1.5,
"trimX": 0,
"trimY": 3,
"width": 257,
"height": 166,
"rawWidth": 265,
"rawHeight": 175,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
assets/BOY04/textures/xiaodi/xiaodi_ske_dg07_fanka.json
0 → 100644
View file @
19534f5f
{
"frameRate"
:
30
,
"name"
:
"小迪"
,
"version"
:
"5.5"
,
"compatibleVersion"
:
"5.5"
,
"armature"
:[{
"type"
:
"Armature"
,
"frameRate"
:
30
,
"name"
:
"Armature"
,
"aabb"
:{
"x"
:
-318
,
"y"
:
-437
,
"width"
:
715
,
"height"
:
943
},
"bone"
:[{
"name"
:
"root"
},{
"name"
:
"bone_ikTarget"
,
"parent"
:
"root"
,
"transform"
:{
"x"
:
-49.49
,
"y"
:
437.8008
}},{
"length"
:
103
,
"name"
:
"good"
,
"parent"
:
"root"
,
"transform"
:{
"x"
:
13.7
,
"y"
:
190.05
,
"skX"
:
-179.1689
,
"skY"
:
-179.1689
}},{
"length"
:
161
,
"name"
:
"run"
,
"parent"
:
"root"
,
"transform"
:{
"x"
:
65.2
,
"y"
:
209.85
,
"skX"
:
-2.5149
,
"skY"
:
-2.5149
}},{
"name"
:
"bone_ikTarget1"
,
"parent"
:
"root"
,
"transform"
:{
"x"
:
98.3493
,
"y"
:
440.83
}},{
"length"
:
157
,
"name"
:
"图层_68"
,
"parent"
:
"run"
,
"transform"
:{
"x"
:
21.5858
,
"y"
:
-48.1992
,
"skX"
:
64.1709
,
"skY"
:
64.1709
}},{
"length"
:
195
,
"name"
:
"身体1"
,
"parent"
:
"good"
,
"transform"
:{
"x"
:
-1.6976
,
"y"
:
3.625
,
"skX"
:
89.4917
,
"skY"
:
89.4917
}},{
"length"
:
130
,
"name"
:
"右腿"
,
"parent"
:
"good"
,
"transform"
:{
"x"
:
-57.7366
,
"y"
:
4.788
,
"skX"
:
-100.8048
,
"skY"
:
-100.8048
}},{
"length"
:
125
,
"name"
:
"图层_64"
,
"parent"
:
"run"
,
"transform"
:{
"x"
:
16.4791
,
"y"
:
-2.5794
,
"skX"
:
162.2788
,
"skY"
:
162.2788
}},{
"length"
:
120
,
"name"
:
"左腿"
,
"parent"
:
"good"
,
"transform"
:{
"x"
:
45.4691
,
"y"
:
-5.9102
,
"skX"
:
-84.7697
,
"skY"
:
-84.7697
}},{
"length"
:
205
,
"name"
:
"身体"
,
"parent"
:
"run"
,
"transform"
:{
"x"
:
9.7236
,
"y"
:
-15.1379
,
"skX"
:
-101.8118
,
"skY"
:
-101.8118
}},{
"length"
:
123
,
"name"
:
"左腿1"
,
"parent"
:
"左腿"
,
"transform"
:{
"x"
:
120.2724
,
"skX"
:
-3.7596
,
"skY"
:
-3.7596
}},{
"name"
:
"图层_65"
,
"parent"
:
"身体"
,
"transform"
:{
"x"
:
153.057
,
"y"
:
73.5619
}},{
"length"
:
303
,
"name"
:
"头1"
,
"parent"
:
"身体1"
,
"transform"
:{
"x"
:
198.0846
,
"y"
:
-0.7938
,
"skX"
:
-1.1336
,
"skY"
:
-1.1336
}},{
"length"
:
122
,
"name"
:
"图层_681"
,
"parent"
:
"图层_68"
,
"transform"
:{
"x"
:
157.0253
,
"skX"
:
-42.4299
,
"skY"
:
-42.4299
}},{
"length"
:
126
,
"name"
:
"右腿1"
,
"parent"
:
"右腿"
,
"transform"
:{
"x"
:
130.7764
,
"skX"
:
8.0638
,
"skY"
:
8.0638
}},{
"length"
:
144
,
"name"
:
"图层_641"
,
"parent"
:
"图层_64"
,
"transform"
:{
"x"
:
125.7627
,
"skX"
:
-35.0512
,
"skY"
:
-35.0512
}},{
"name"
:
"图层_66"
,
"parent"
:
"身体"
,
"transform"
:{
"x"
:
147.6156
,
"y"
:
15.4584
}},{
"length"
:
291
,
"name"
:
"头"
,
"parent"
:
"身体"
,
"transform"
:{
"x"
:
208.1194
,
"y"
:
0.6186
,
"skX"
:
12.3589
,
"skY"
:
12.3589
}},{
"name"
:
"图层34"
,
"parent"
:
"身体1"
,
"transform"
:{
"x"
:
165.9262
,
"y"
:
84.0666
}},{
"name"
:
"图层47"
,
"parent"
:
"身体1"
,
"transform"
:{
"x"
:
172.2568
,
"y"
:
-70.2716
}},{
"name"
:
"耳套"
,
"parent"
:
"头"
,
"transform"
:{
"x"
:
122.5902
,
"y"
:
8.2144
}},{
"length"
:
182
,
"name"
:
"右手2_0"
,
"parent"
:
"图层34"
,
"transform"
:{
"x"
:
5.9368
,
"y"
:
6.5167
,
"skX"
:
151.2625
,
"skY"
:
151.2625
}},{
"length"
:
77
,
"name"
:
"图层44"
,
"parent"
:
"图层_641"
,
"transform"
:{
"x"
:
114.9027
,
"y"
:
-5.8791
,
"skX"
:
-2.0063
,
"skY"
:
-2.0063
}},{
"name"
:
"张嘴"
,
"parent"
:
"头1"
,
"transform"
:{
"x"
:
65.4805
,
"y"
:
7.188
}},{
"length"
:
66
,
"name"
:
"图层38(2)"
,
"parent"
:
"图层_681"
,
"transform"
:{
"x"
:
96.7158
,
"y"
:
-0.8453
,
"skX"
:
-18.5399
,
"skY"
:
-18.5399
}},{
"length"
:
193
,
"name"
:
"右手2"
,
"parent"
:
"图层47"
,
"transform"
:{
"x"
:
-0.7353
,
"y"
:
-15.1461
,
"skX"
:
-155.5964
,
"skY"
:
-155.5964
}},{
"name"
:
"眼睛"
,
"parent"
:
"头"
,
"transform"
:{
"x"
:
149.5066
,
"y"
:
-119.937
}},{
"name"
:
"睁眼"
,
"parent"
:
"头1"
,
"transform"
:{
"x"
:
137.2938
,
"y"
:
87.1027
}},{
"length"
:
43
,
"name"
:
"图层_74"
,
"parent"
:
"头"
,
"transform"
:{
"x"
:
204.8929
,
"y"
:
-131.692
,
"skX"
:
85.4387
,
"skY"
:
85.4387
}},{
"length"
:
103
,
"name"
:
"图层_61"
,
"parent"
:
"图层_66"
,
"transform"
:{
"x"
:
0.5815
,
"y"
:
-2.2769
,
"skX"
:
-114.8033
,
"skY"
:
-114.8033
}},{
"name"
:
"眉毛"
,
"parent"
:
"头1"
,
"transform"
:{
"x"
:
194.0876
,
"y"
:
10.7196
}},{
"length"
:
84
,
"name"
:
"左脚"
,
"parent"
:
"左腿1"
,
"transform"
:{
"x"
:
89.4195
,
"y"
:
4.9127
,
"skX"
:
-1.8254
,
"skY"
:
-1.8254
}},{
"length"
:
83
,
"name"
:
"右脚"
,
"parent"
:
"右腿1"
,
"transform"
:{
"x"
:
87.488
,
"y"
:
9.321
,
"skX"
:
0.9494
,
"skY"
:
0.9494
}},{
"name"
:
"嘴巴"
,
"parent"
:
"头"
,
"transform"
:{
"x"
:
69.8123
,
"y"
:
-163.6993
}},{
"length"
:
87
,
"name"
:
"图层 61_0"
,
"parent"
:
"图层_65"
,
"transform"
:{
"x"
:
2.0922
,
"y"
:
3.5274
,
"skX"
:
145.8459
,
"skY"
:
145.8459
}},{
"length"
:
76
,
"name"
:
"图层_44"
,
"parent"
:
"右手2_0"
,
"transform"
:{
"x"
:
185.9837
,
"y"
:
1.3079
,
"skX"
:
15.5459
,
"skY"
:
15.5459
}},{
"length"
:
63
,
"name"
:
"图层40"
,
"parent"
:
"右手2"
,
"transform"
:{
"x"
:
201.3596
,
"y"
:
-2.3955
,
"skX"
:
-18.7458
,
"skY"
:
-18.7458
}},{
"length"
:
135
,
"name"
:
"图层_611"
,
"parent"
:
"图层_61"
,
"transform"
:{
"x"
:
103.7107
,
"skX"
:
61.7564
,
"skY"
:
61.7564
}},{
"length"
:
94
,
"name"
:
"图层 61_01"
,
"parent"
:
"图层 61_0"
,
"transform"
:{
"x"
:
87.3474
,
"skX"
:
40.691
,
"skY"
:
40.691
}},{
"length"
:
206
,
"name"
:
"眼镜"
,
"parent"
:
"耳套"
,
"transform"
:{
"x"
:
3.315
,
"y"
:
-1.8373
,
"skX"
:
-82.9498
,
"skY"
:
-82.9498
}},{
"name"
:
"图层 36_0"
,
"parent"
:
"睁眼"
,
"transform"
:{
"x"
:
0.0957
,
"y"
:
5.7527
}},{
"name"
:
"图层_36"
,
"parent"
:
"睁眼"
,
"transform"
:{
"x"
:
0.15
,
"y"
:
-151.7222
}},{
"length"
:
74
,
"name"
:
"图层_72"
,
"parent"
:
"图层_611"
,
"transform"
:{
"x"
:
115.2307
,
"y"
:
-0.3592
,
"skX"
:
11.319
,
"skY"
:
11.319
}},{
"length"
:
58
,
"name"
:
"图层_73"
,
"parent"
:
"图层 61_01"
,
"transform"
:{
"x"
:
82.4898
,
"y"
:
3.1094
,
"skX"
:
14.5708
,
"skY"
:
14.5708
}},{
"name"
:
"bone"
,
"parent"
:
"图层_44"
,
"transform"
:{
"x"
:
-330.7683
,
"y"
:
-194.1447
}}],
"slot"
:[{
"name"
:
"图层_73"
,
"parent"
:
"图层_73"
},{
"name"
:
"图层 61_0"
,
"parent"
:
"图层 61_01"
},{
"name"
:
"图层_65"
,
"parent"
:
"图层_65"
},{
"name"
:
"图层44"
,
"parent"
:
"图层44"
},{
"name"
:
"图层_64"
,
"parent"
:
"图层_641"
},{
"name"
:
"图层38(2)"
,
"parent"
:
"图层38(2)"
},{
"name"
:
"图层_68"
,
"parent"
:
"图层_681"
},{
"name"
:
"身体"
,
"parent"
:
"身体"
},{
"displayIndex"
:
-1
,
"name"
:
"图层_66"
,
"parent"
:
"图层_66"
},{
"name"
:
"图层_72"
,
"parent"
:
"图层_72"
},{
"name"
:
"图层_61"
,
"parent"
:
"图层_611"
},{
"name"
:
"头"
,
"parent"
:
"头"
},{
"name"
:
"嘴巴"
,
"parent"
:
"嘴巴"
},{
"name"
:
"眼睛"
,
"parent"
:
"眼睛"
},{
"name"
:
"图层_74"
,
"parent"
:
"图层_74"
},{
"name"
:
"眼镜"
,
"parent"
:
"眼镜"
},{
"name"
:
"耳套"
,
"parent"
:
"耳套"
},{
"name"
:
"右脚"
,
"parent"
:
"右脚"
},{
"name"
:
"右腿"
,
"parent"
:
"右腿1"
},{
"name"
:
"左脚"
,
"parent"
:
"左脚"
},{
"name"
:
"左腿"
,
"parent"
:
"左腿1"
},{
"displayIndex"
:
2
,
"name"
:
"右手2_0"
,
"parent"
:
"右手2_0"
},{
"name"
:
"图层34_0"
,
"parent"
:
"图层34"
},{
"displayIndex"
:
8
,
"name"
:
"图层40"
,
"parent"
:
"图层40"
},{
"displayIndex"
:
2
,
"name"
:
"右手2"
,
"parent"
:
"右手2"
},{
"name"
:
"图层47_0"
,
"parent"
:
"图层47"
},{
"name"
:
"身体1"
,
"parent"
:
"身体1"
},{
"name"
:
"图层_45"
,
"parent"
:
"bone"
},{
"displayIndex"
:
8
,
"name"
:
"图层_44"
,
"parent"
:
"图层_44"
},{
"name"
:
"图层_25"
,
"parent"
:
"bone"
},{
"name"
:
"头1"
,
"parent"
:
"头1"
},{
"displayIndex"
:
3
,
"name"
:
"眉毛"
,
"parent"
:
"眉毛"
},{
"displayIndex"
:
12
,
"name"
:
"张嘴"
,
"parent"
:
"张嘴"
},{
"displayIndex"
:
9
,
"name"
:
"睁眼"
,
"parent"
:
"睁眼"
},{
"name"
:
"图层 36_0"
,
"parent"
:
"图层 36_0"
},{
"name"
:
"图层_36"
,
"parent"
:
"图层_36"
},{
"name"
:
"左脚1"
,
"parent"
:
"左脚"
},{
"name"
:
"左腿1"
,
"parent"
:
"左腿"
},{
"name"
:
"右脚1"
,
"parent"
:
"右脚"
},{
"name"
:
"右腿1"
,
"parent"
:
"右腿"
},{
"name"
:
"图层42"
,
"parent"
:
"图层40"
},{
"name"
:
"已插入图像_11"
,
"parent"
:
"右手2"
},{
"name"
:
"图层47"
,
"parent"
:
"图层47"
},{
"name"
:
"身体2"
,
"parent"
:
"身体1"
},{
"name"
:
"图层34"
,
"parent"
:
"图层34"
},{
"name"
:
"头2"
,
"parent"
:
"头1"
},{
"displayIndex"
:
2
,
"name"
:
"睁眼1"
,
"parent"
:
"睁眼"
},{
"name"
:
"眉毛1"
,
"parent"
:
"眉毛"
},{
"displayIndex"
:
1
,
"name"
:
"嘴巴2"
,
"parent"
:
"张嘴"
},{
"name"
:
"已插入图像"
,
"parent"
:
"右手2_0"
},{
"name"
:
"已插入图像_01"
,
"parent"
:
"图层_44"
},{
"name"
:
"右手2_01"
,
"parent"
:
"右手2_0"
},{
"name"
:
"右手21"
,
"parent"
:
"右手2"
}],
"ik"
:[{
"chain"
:
1
,
"name"
:
"bone_ik1"
,
"bone"
:
"右腿1"
,
"target"
:
"bone_ikTarget1"
},{
"bendPositive"
:
false
,
"chain"
:
1
,
"name"
:
"bone_ik"
,
"bone"
:
"左腿1"
,
"target"
:
"bone_ikTarget"
}],
"skin"
:[{
"slot"
:[{
"name"
:
"图层34"
,
"display"
:[{
"name"
:
"point/图层34"
,
"transform"
:{
"x"
:
-13.04
,
"y"
:
-7.38
,
"skX"
:
89.68
,
"skY"
:
89.68
}}]},{
"name"
:
"身体"
,
"display"
:[{
"name"
:
"run/身体"
,
"transform"
:{
"x"
:
92.8
,
"y"
:
15.7
,
"skX"
:
104.33
,
"skY"
:
104.33
}}]},{
"name"
:
"头1"
,
"display"
:[{
"name"
:
"good/头"
,
"transform"
:{
"x"
:
209.01
,
"y"
:
9.34
,
"skX"
:
91.04
,
"skY"
:
91.04
}}]},{
"name"
:
"图层40"
,
"display"
:[{
"name"
:
"good/图层40"
,
"transform"
:{
"x"
:
24.88
,
"y"
:
0.86
,
"skX"
:
-95.98
,
"skY"
:
-95.98
}},{
"name"
:
"good/图层 44_0"
,
"transform"
:{
"x"
:
-218.84
,
"y"
:
16.34
,
"skX"
:
-95.98
,
"skY"
:
-95.98
}},{
"name"
:
"good/图层_36"
,
"transform"
:{
"x"
:
-114.72
,
"y"
:
-112.71
,
"skX"
:
-95.98
,
"skY"
:
-95.98
}},{
"name"
:
"cheer/图层42_0"
,
"transform"
:{
"x"
:
-273.05
,
"y"
:
137.15
,
"skX"
:
-95.98
,
"skY"
:
-95.98
}},{
"name"
:
"cheer/图层42_1"
,
"transform"
:{
"x"
:
-206.95
,
"y"
:
101.06
,
"skX"
:
-95.98
,
"skY"
:
-95.98
}},{
"name"
:
"expect/图层 39_1"
,
"transform"
:{
"x"
:
-149.27
,
"y"
:
8.55
,
"skX"
:
-95.98
,
"skY"
:
-95.98
}},{
"name"
:
"invite/图层 31_0"
,
"transform"
:{
"x"
:
-154.85
,
"y"
:
70.47
,
"skX"
:
-95.98
,
"skY"
:
-95.98
}},{
"name"
:
"talk/图层42"
,
"transform"
:{
"x"
:
-170.56
,
"y"
:
93.23
,
"skX"
:
-95.98
,
"skY"
:
-95.98
}},{
"name"
:
"wave/图层42"
,
"transform"
:{
"x"
:
-55.79
,
"y"
:
123.44
,
"skX"
:
-95.98
,
"skY"
:
-95.98
}}]},{
"name"
:
"左腿1"
,
"display"
:[{
"name"
:
"point/左腿"
,
"transform"
:{
"x"
:
88.99
,
"y"
:
-30.42
,
"skX"
:
-96.06
,
"skY"
:
-96.06
}}]},{
"name"
:
"右手2_01"
,
"display"
:[{
"name"
:
"good/右手2_0"
,
"transform"
:{
"x"
:
75.55
,
"y"
:
12.1
,
"skX"
:
-61.59
,
"skY"
:
-61.59
}}]},{
"name"
:
"图层34_0"
,
"display"
:[{
"name"
:
"good/图层34_0"
,
"transform"
:{
"x"
:
-7.22
,
"y"
:
-39.41
,
"skX"
:
89.68
,
"skY"
:
89.68
}}]},{
"name"
:
"右脚1"
,
"display"
:[{
"name"
:
"point/右脚"
,
"transform"
:{
"x"
:
51.67
,
"y"
:
11.12
,
"skX"
:
-89.04
,
"skY"
:
-89.04
}}]},{
"name"
:
"眉毛"
,
"display"
:[{
"name"
:
"good/眉毛"
,
"transform"
:{
"x"
:
-4.61
,
"y"
:
0.27
,
"skX"
:
91.04
,
"skY"
:
91.04
}},{
"name"
:
"expect/眉毛"
,
"transform"
:{
"x"
:
5.88
,
"y"
:
0.96
,
"skX"
:
91.04
,
"skY"
:
91.04
}},{
"name"
:
"invite/眉毛"
,
"transform"
:{
"x"
:
0.34
,
"y"
:
3.36
,
"skX"
:
91.04
,
"skY"
:
91.04
}},{
"name"
:
"talk/眉毛"
,
"transform"
:{
"x"
:
-4.61
,
"y"
:
0.27
,
"skX"
:
91.04
,
"skY"
:
91.04
}}]},{
"name"
:
"右手2"
,
"display"
:[{
"name"
:
"good/右手2"
,
"transform"
:{
"x"
:
67.91
,
"y"
:
-16.41
,
"skX"
:
-114.73
,
"skY"
:
-114.73
}},{
"name"
:
"good/图层 46_0"
,
"transform"
:{
"x"
:
63.76
,
"y"
:
22.38
,
"skX"
:
-114.73
,
"skY"
:
-114.73
}},{
"name"
:
"good/图层_35"
,
"transform"
:{
"x"
:
75.82
,
"y"
:
1.96
,
"skX"
:
-114.73
,
"skY"
:
-114.73
}},{
"name"
:
"good/图层35"
,
"transform"
:{
"x"
:
100.37
,
"y"
:
11.03
,
"skX"
:
-114.73
,
"skY"
:
-114.73
}},{
"name"
:
"cheer/图层_46"
,
"transform"
:{
"x"
:
60.61
,
"y"
:
29.89
,
"skX"
:
-114.73
,
"skY"
:
-114.73
}},{
"name"
:
"cheer/图层 37_0"
,
"transform"
:{
"x"
:
8.95
,
"y"
:
77.9
,
"skX"
:
-114.73
,
"skY"
:
-114.73
}},{
"name"
:
"expect/图层 37_1"
,
"transform"
:{
"x"
:
81.5
,
"y"
:
20.27
,
"skX"
:
-114.73
,
"skY"
:
-114.73
}},{
"name"
:
"invite/图层 30_0"
,
"transform"
:{
"x"
:
45.28
,
"y"
:
33.65
,
"skX"
:
-114.73
,
"skY"
:
-114.73
}},{
"name"
:
"talk/图层_46"
,
"transform"
:{
"x"
:
69.79
,
"y"
:
29.51
,
"skX"
:
-114.73
,
"skY"
:
-114.73
}},{
"name"
:
"wave/图层43_0"
,
"transform"
:{
"x"
:
82.93
,
"y"
:
24.56
,
"skX"
:
-114.73
,
"skY"
:
-114.73
}}]},{
"name"
:
"图层_74"
,
"display"
:[{
"name"
:
"run/图层_74"
,
"transform"
:{
"x"
:
26.71
,
"y"
:
2.3
,
"skX"
:
6.53
,
"skY"
:
6.53
}}]},{
"name"
:
"头"
,
"display"
:[{
"name"
:
"run/头"
,
"transform"
:{
"x"
:
201.69
,
"y"
:
12.58
,
"skX"
:
91.97
,
"skY"
:
91.97
}}]},{
"name"
:
"右手21"
,
"display"
:[{
"name"
:
"good/右手2"
,
"transform"
:{
"x"
:
71.91
,
"y"
:
-14.84
,
"skX"
:
-114.73
,
"skY"
:
-114.73
}}]},{
"name"
:
"头2"
,
"display"
:[{
"name"
:
"point/头"
,
"transform"
:{
"x"
:
212.78
,
"y"
:
7.24
,
"skX"
:
90.81
,
"skY"
:
90.81
}}]},{
"name"
:
"图层_64"
,
"display"
:[{
"type"
:
"mesh"
,
"name"
:
"run/图层_64"
,
"width"
:
332
,
"height"
:
207
,
"vertices"
:[
-152
,
330.8
,
-149.1
,
360.15
,
-121.7
,
380.75
,
-73.25
,
387.05
,
-49.3
,
383.6
,
-21.35
,
344.75
,
3.75
,
307.75
,
58.5
,
294.6
,
120.65
,
279.75
,
168.6
,
252.4
,
180
,
227.85
,
180
,
190.2
,
141.2
,
180
,
85.3
,
180
,
-7.1
,
189.05
,
-49.3
,
197.65
,
-85.2
,
207.9
,
-108.6
,
223.85
,
-130.25
,
258.7
,
-152
,
308.85
],
"uvs"
:[
0
,
0.7285
,
0.00873
,
0.87029
,
0.09127
,
0.96981
,
0.2372
,
1.00024
,
0.30934
,
0.98357
,
0.39352
,
0.79589
,
0.46913
,
0.61715
,
0.63404
,
0.55362
,
0.82123
,
0.48188
,
0.96566
,
0.34976
,
1
,
0.23116
,
1
,
0.04928
,
0.88313
,
0
,
0.71476
,
0
,
0.43645
,
0.04372
,
0.30934
,
0.08527
,
0.2012
,
0.13478
,
0.13072
,
0.21184
,
0.06551
,
0.38019
,
0
,
0.62246
],
"triangles"
:[
11
,
12
,
10
,
12
,
9
,
10
,
12
,
8
,
9
,
13
,
8
,
12
,
13
,
7
,
8
,
14
,
7
,
13
,
14
,
6
,
7
,
16
,
17
,
6
,
18
,
5
,
6
,
17
,
18
,
6
,
15
,
16
,
6
,
14
,
15
,
6
,
18
,
19
,
5
,
0
,
3
,
5
,
19
,
0
,
5
,
3
,
4
,
5
,
0
,
2
,
3
,
0
,
1
,
2
],
"weights"
:[
1
,
16
,
1
,
1
,
16
,
1
,
1
,
16
,
1
,
1
,
16
,
1
,
1
,
16
,
1
,
1
,
16
,
1
,
2
,
8
,
0.484026
,
16
,
0.515974
,
1
,
8
,
1
,
1
,
8
,
1
,
1
,
8
,
1
,
1
,
8
,
1
,
1
,
8
,
1
,
1
,
8
,
1
,
1
,
8
,
1
,
2
,
8
,
0.99
,
16
,
0.01
,
2
,
8
,
0.94
,
16
,
0.06
,
2
,
8
,
0.64
,
16
,
0.36
,
2
,
8
,
0.53
,
16
,
0.47
,
2
,
16
,
0.77
,
8
,
0.23
,
1
,
16
,
1
],
"slotPose"
:[
1
,
0
,
0
,
1
,
0
,
0
],
"bonePose"
:[
8
,
-0.938275
,
0.34589
,
-0.34589
,
-0.938275
,
81.55
,
206.55
,
16
,
-0.569462
,
0.822018
,
-0.822018
,
-0.569462
,
-36.45
,
250.05
],
"edges"
:[
0
,
1
,
1
,
2
,
2
,
3
,
3
,
4
,
4
,
5
,
5
,
6
,
6
,
7
,
7
,
8
,
8
,
9
,
9
,
10
,
10
,
11
,
11
,
12
,
12
,
13
,
13
,
14
,
14
,
15
,
15
,
16
,
16
,
17
,
17
,
18
,
18
,
19
,
19
,
0
],
"userEdges"
:[]}]},{
"name"
:
"右腿1"
,
"display"
:[{
"name"
:
"point/右腿"
,
"transform"
:{
"x"
:
113.35
,
"y"
:
44.81
,
"skX"
:
-80.03
,
"skY"
:
-80.03
}}]},{
"name"
:
"图层_61"
,
"display"
:[{
"type"
:
"mesh"
,
"name"
:
"run/图层_61"
,
"width"
:
241
,
"height"
:
127
,
"vertices"
:[
-165
,
99.95
,
-165
,
65.9
,
-137.45
,
33
,
-107.25
,
33
,
-78.4
,
45.8
,
-44.85
,
57.75
,
-29.55
,
64.95
,
-15.1
,
55.4
,
12.7
,
38.6
,
29.45
,
33
,
66.4
,
33
,
75.95
,
51.55
,
75.95
,
81.25
,
60.1
,
107.15
,
20.85
,
144.55
,
-8.4
,
160
,
-32.45
,
160
,
-52.5
,
160
,
-92.8
,
148.4
,
-143.2
,
127.3
],
"uvs"
:[
0
,
0.52717
,
0
,
0.25906
,
0.11432
,
0
,
0.23963
,
0
,
0.35934
,
0.10079
,
0.49855
,
0.19488
,
0.56203
,
0.25157
,
0.62199
,
0.17638
,
0.73734
,
0.04409
,
0.80685
,
0
,
0.96017
,
0
,
0.99979
,
0.14606
,
0.99979
,
0.37992
,
0.93402
,
0.58386
,
0.77116
,
0.87835
,
0.64979
,
1
,
0.55
,
1
,
0.4668
,
1
,
0.29959
,
0.90866
,
0.09046
,
0.74252
],
"triangles"
:[
9
,
13
,
12
,
9
,
12
,
11
,
10
,
9
,
11
,
8
,
7
,
13
,
9
,
8
,
13
,
7
,
14
,
13
,
6
,
15
,
14
,
7
,
6
,
14
,
6
,
16
,
15
,
18
,
17
,
5
,
17
,
16
,
6
,
5
,
17
,
6
,
4
,
18
,
5
,
19
,
18
,
4
,
0
,
19
,
3
,
1
,
0
,
3
,
3
,
19
,
4
,
2
,
1
,
3
],
"weights"
:[
1
,
38
,
1
,
1
,
38
,
1
,
1
,
38
,
1
,
1
,
38
,
1
,
2
,
38
,
0.9
,
30
,
0.1
,
2
,
30
,
0.2
,
38
,
0.8
,
2
,
30
,
0.65
,
38
,
0.35
,
1
,
30
,
1
,
1
,
30
,
1
,
1
,
30
,
1
,
1
,
30
,
1
,
1
,
30
,
1
,
1
,
30
,
1
,
1
,
30
,
1
,
2
,
30
,
0.78
,
38
,
0.22
,
2
,
30
,
0.43
,
38
,
0.57
,
2
,
30
,
0.48
,
38
,
0.52
,
2
,
30
,
0.35
,
38
,
0.65
,
2
,
38
,
0.9
,
30
,
0.1
,
1
,
38
,
1
],
"slotPose"
:[
1
,
0
,
0
,
1
,
0
,
0
],
"bonePose"
:[
30
,
-0.775716
,
0.631083
,
-0.631083
,
-0.775716
,
50.35
,
47.45
,
38
,
-0.923033
,
-0.38472
,
0.38472
,
-0.923033
,
-30.1
,
112.9
],
"edges"
:[
0
,
1
,
1
,
2
,
2
,
3
,
3
,
4
,
4
,
5
,
5
,
6
,
6
,
7
,
7
,
8
,
8
,
9
,
9
,
10
,
10
,
11
,
11
,
12
,
12
,
13
,
13
,
14
,
14
,
15
,
15
,
16
,
16
,
17
,
17
,
18
,
18
,
19
,
19
,
0
],
"userEdges"
:[]}]},{
"name"
:
"图层47_0"
,
"display"
:[{
"name"
:
"good/图层47_0"
,
"transform"
:{
"x"
:
-15.17
,
"y"
:
5.94
,
"skX"
:
89.68
,
"skY"
:
89.68
}}]},{
"name"
:
"眼睛"
,
"display"
:[{
"name"
:
"run/眼睛"
,
"transform"
:{
"x"
:
-0.37
,
"y"
:
16.65
,
"skX"
:
91.97
,
"skY"
:
91.97
}},{
"name"
:
"run/闭眼"
,
"transform"
:{
"x"
:
59.05
,
"y"
:
107.24
,
"skX"
:
91.97
,
"skY"
:
91.97
}},{
"name"
:
"run/半睁"
,
"transform"
:{
"x"
:
-0.37
,
"y"
:
16.65
,
"skX"
:
91.97
,
"skY"
:
91.97
}}]},{
"name"
:
"张嘴"
,
"display"
:[{
"name"
:
"good/张嘴"
,
"transform"
:{
"x"
:
-5.42
,
"y"
:
-1.55
,
"skX"
:
91.04
,
"skY"
:
91.04
}},{
"name"
:
"good/张嘴_0"
,
"transform"
:{
"x"
:
-5.42
,
"y"
:
-1.55
,
"skX"
:
91.04
,
"skY"
:
91.04
}},{
"name"
:
"good/闭嘴"
,
"transform"
:{
"x"
:
-1.92
,
"y"
:
-1.49
,
"skX"
:
91.04
,
"skY"
:
91.04
}},{
"name"
:
"cheer/张嘴"
,
"transform"
:{
"x"
:
-10.49
,
"y"
:
2.36
,
"skX"
:
91.04
,
"skY"
:
91.04
}},{
"name"
:
"cheer/闭嘴"
,
"transform"
:{
"x"
:
-4.54
,
"y"
:
4.97
,
"skX"
:
91.04
,
"skY"
:
91.04
}},{
"name"
:
"expect/张嘴"
,
"transform"
:{
"x"
:
-10.49
,
"y"
:
2.36
,
"skX"
:
91.04
,
"skY"
:
91.04
}},{
"name"
:
"expect/闭嘴"
,
"transform"
:{
"x"
:
-3.5
,
"y"
:
2.49
,
"skX"
:
91.04
,
"skY"
:
91.04
}},{
"name"
:
"invite/闭嘴"
,
"transform"
:{
"x"
:
-1.92
,
"y"
:
-1.49
,
"skX"
:
91.04
,
"skY"
:
91.04
}},{
"name"
:
"invite/张嘴"
,
"transform"
:{
"x"
:
-5.42
,
"y"
:
-1.55
,
"skX"
:
91.04
,
"skY"
:
91.04
}},{
"name"
:
"talk/闭嘴"
,
"transform"
:{
"x"
:
-1.92
,
"y"
:
-1.49
,
"skX"
:
91.04
,
"skY"
:
91.04
}},{
"name"
:
"talk/张嘴"
,
"transform"
:{
"x"
:
-5.42
,
"y"
:
-1.55
,
"skX"
:
91.04
,
"skY"
:
91.04
}},{
"name"
:
"wave/闭嘴"
,
"transform"
:{
"x"
:
-0.9
,
"y"
:
-3.16
,
"skX"
:
107.47
,
"skY"
:
107.47
}},{
"name"
:
"wave/张嘴"
,
"transform"
:{
"x"
:
-2.81
,
"y"
:
-3.76
,
"skX"
:
107.47
,
"skY"
:
107.47
}}]},{
"name"
:
"右手2_0"
,
"display"
:[{
"name"
:
"good/右手2_0"
,
"transform"
:{
"x"
:
77.17
,
"y"
:
11.62
,
"skX"
:
-61.59
,
"skY"
:
-61.59
}},{
"name"
:
"good/图层_46"
,
"transform"
:{
"x"
:
71.25
,
"y"
:
-26.83
,
"skX"
:
-61.59
,
"skY"
:
-61.59
}},{
"name"
:
"good/图层 35_0"
,
"transform"
:{
"x"
:
83.9
,
"y"
:
-2.93
,
"skX"
:
-61.59
,
"skY"
:
-61.59
}},{
"name"
:
"good/图层35_0"
,
"transform"
:{
"x"
:
105.53
,
"y"
:
-14.53
,
"skX"
:
-61.59
,
"skY"
:
-61.59
}},{
"name"
:
"cheer/图层 46_0"
,
"transform"
:{
"x"
:
67.07
,
"y"
:
-35.91
,
"skX"
:
-61.59
,
"skY"
:
-61.59
}},{
"name"
:
"cheer/图层_37"
,
"transform"
:{
"x"
:
16.89
,
"y"
:
-89.21
,
"skX"
:
-61.59
,
"skY"
:
-61.59
}},{
"name"
:
"expect/图层 37_2"
,
"transform"
:{
"x"
:
78.21
,
"y"
:
-20.79
,
"skX"
:
-61.59
,
"skY"
:
-61.59
}},{
"name"
:
"invite/图层_30"
,
"transform"
:{
"x"
:
45.35
,
"y"
:
-28.34
,
"skX"
:
-61.59
,
"skY"
:
-61.59
}},{
"name"
:
"talk/图层_47"
,
"transform"
:{
"x"
:
70.46
,
"y"
:
11.4
,
"skX"
:
-61.59
,
"skY"
:
-61.59
}},{
"name"
:
"talk/右手前"
,
"transform"
:{
"x"
:
75.61
,
"y"
:
13.69
,
"skX"
:
-61.59
,
"skY"
:
-61.59
}},{
"name"
:
"wave/图层43"
,
"transform"
:{
"x"
:
-16.59
,
"y"
:
-98.79
,
"skX"
:
-61.59
,
"skY"
:
-61.59
}}]},{
"name"
:
"左腿"
,
"display"
:[{
"type"
:
"mesh"
,
"name"
:
"good/左腿"
,
"width"
:
143
,
"height"
:
265
,
"vertices"
:[
-85
,
178
,
-96.45
,
220.7
,
-107
,
273.8
,
-114
,
320.65
,
-114
,
364.15
,
-111.25
,
416.3
,
-99.85
,
438.8
,
-61.5
,
443
,
-20.4
,
443
,
7.75
,
416.3
,
21.7
,
357.5
,
23.6
,
305.85
,
23.1
,
241.75
,
20.75
,
178
],
"uvs"
:[
0.2028
,
0
,
0.12273
,
0.16113
,
0.04895
,
0.36151
,
0
,
0.5383
,
0
,
0.70245
,
0.01923
,
0.89925
,
0.09895
,
0.98415
,
0.36713
,
1
,
0.65455
,
1
,
0.8514
,
0.89925
,
0.94895
,
0.67736
,
0.96224
,
0.48245
,
0.95874
,
0.24057
,
0.94231
,
0
],
"triangles"
:[
1
,
2
,
12
,
13
,
0
,
12
,
0
,
1
,
12
,
3
,
10
,
11
,
2
,
3
,
11
,
12
,
2
,
11
,
4
,
9
,
10
,
3
,
4
,
10
,
7
,
8
,
9
,
4
,
7
,
9
,
4
,
5
,
7
,
5
,
6
,
7
],
"weights"
:[
2
,
9
,
0.867066
,
11
,
0.132934
,
2
,
9
,
0.753249
,
11
,
0.246751
,
2
,
9
,
0.558721
,
11
,
0.441279
,
2
,
9
,
0.495852
,
11
,
0.504148
,
2
,
9
,
0.384363
,
11
,
0.615637
,
2
,
9
,
0.209326
,
11
,
0.790674
,
2
,
9
,
0.120719
,
11
,
0.879281
,
2
,
9
,
0.010111
,
11
,
0.989889
,
2
,
9
,
0.048692
,
11
,
0.951308
,
2
,
9
,
0.19536
,
11
,
0.80464
,
2
,
9
,
0.425621
,
11
,
0.574379
,
2
,
9
,
0.51427
,
11
,
0.48573
,
2
,
9
,
0.73682
,
11
,
0.26318
,
2
,
9
,
0.8824
,
11
,
0.1176
],
"slotPose"
:[
1
,
0
,
0
,
1
,
0
,
0
],
"bonePose"
:[
9
,
-0.105594
,
0.994409
,
-0.994409
,
-0.105594
,
-31.85
,
195.3
,
11
,
-0.040162
,
0.999193
,
-0.999193
,
-0.040162
,
-44.55
,
314.9
],
"edges"
:[
0
,
1
,
1
,
2
,
2
,
3
,
3
,
4
,
4
,
5
,
5
,
6
,
6
,
7
,
7
,
8
,
8
,
9
,
9
,
10
,
10
,
11
,
11
,
12
,
12
,
13
,
13
,
0
],
"userEdges"
:[]},{
"name"
:
"expect/图层_45"
,
"transform"
:{
"x"
:
-29.34
,
"y"
:
2.13
,
"skX"
:
-92.3
,
"skY"
:
-92.3
}}]},{
"name"
:
"图层42"
,
"display"
:[{
"name"
:
"point/图层42"
,
"transform"
:{
"x"
:
-241.27
,
"y"
:
133.31
,
"skX"
:
-95.98
,
"skY"
:
-95.98
}}]},{
"name"
:
"睁眼"
,
"display"
:[{
"name"
:
"good/睁眼"
,
"transform"
:{
"x"
:
0.21
,
"y"
:
-78.06
,
"skX"
:
91.04
,
"skY"
:
91.04
}},{
"name"
:
"good/睁眼_0"
,
"transform"
:{
"x"
:
0.18
,
"y"
:
-76.06
,
"skX"
:
91.04
,
"skY"
:
91.04
}},{
"name"
:
"good/半睁"
,
"transform"
:{
"x"
:
0.18
,
"y"
:
-76.06
,
"skX"
:
91.04
,
"skY"
:
91.04
}},{
"name"
:
"good/闭眼"
,
"transform"
:{
"x"
:
-23.31
,
"y"
:
-76.99
,
"skX"
:
91.04
,
"skY"
:
91.04
}},{
"name"
:
"cheer/闭眼"
,
"transform"
:{
"x"
:
-19.8
,
"y"
:
-77.42
,
"skX"
:
91.04
,
"skY"
:
91.04
}},{
"name"
:
"expect/睁眼"
,
"transform"
:{
"x"
:
0.17
,
"y"
:
-75.56
,
"skX"
:
91.04
,
"skY"
:
91.04
}},{
"name"
:
"invite/闭眼"
,
"transform"
:{
"x"
:
-19.8
,
"y"
:
-77.42
,
"skX"
:
91.04
,
"skY"
:
91.04
}},{
"name"
:
"wave/闭眼"
,
"transform"
:{
"x"
:
-20.29
,
"y"
:
-78.11
,
"skX"
:
107.47
,
"skY"
:
107.47
}},{
"name"
:
"wave/睁眼_0"
,
"transform"
:{
"x"
:
-4.85
,
"y"
:
-72.21
,
"skX"
:
107.47
,
"skY"
:
107.47
}},{
"name"
:
"wave/睁眼"
,
"transform"
:{
"x"
:
-3.17
,
"y"
:
-75.87
,
"skX"
:
107.47
,
"skY"
:
107.47
}}]},{
"name"
:
"身体1"
,
"display"
:[{
"name"
:
"good/身体"
,
"transform"
:{
"x"
:
105.49
,
"y"
:
6.96
,
"skX"
:
89.68
,
"skY"
:
89.68
}}]},{
"name"
:
"眉毛1"
,
"display"
:[{
"name"
:
"point/眉毛"
,
"transform"
:{
"x"
:
6.67
,
"y"
:
-37.15
,
"skX"
:
90.81
,
"skY"
:
90.81
}}]},{
"name"
:
"睁眼1"
,
"display"
:[{
"name"
:
"point/睁眼"
,
"transform"
:{
"x"
:
0.43
,
"y"
:
-111.43
,
"skX"
:
90.81
,
"skY"
:
90.81
}},{
"name"
:
"point/半睁"
,
"transform"
:{
"x"
:
0.43
,
"y"
:
-111.43
,
"skX"
:
90.81
,
"skY"
:
90.81
}},{
"name"
:
"point/闭眼"
,
"transform"
:{
"x"
:
-3.61
,
"y"
:
-108.99
,
"skX"
:
90.81
,
"skY"
:
90.81
}}]},{
"name"
:
"图层_72"
,
"display"
:[{
"name"
:
"run/图层_72"
,
"transform"
:{
"x"
:
35.64
,
"y"
:
-0.6
,
"skX"
:
146.05
,
"skY"
:
146.05
}}]},{
"name"
:
"图层_68"
,
"display"
:[{
"type"
:
"mesh"
,
"name"
:
"run/图层_68"
,
"width"
:
244
,
"height"
:
266
,
"vertices"
:[
38
,
234.3
,
38
,
185.2
,
55
,
130.55
,
86.95
,
117
,
129.9
,
117
,
176.6
,
143.45
,
193.15
,
193.15
,
187.05
,
226.3
,
195.6
,
246.6
,
204.85
,
260.1
,
217.1
,
273
,
249.05
,
279.75
,
282
,
291.4
,
282
,
341.15
,
260.1
,
382.3
,
203.6
,
383
,
144.65
,
376.75
,
104.15
,
346.7
,
74.05
,
305.55
,
49.5
,
273
],
"uvs"
:[
0
,
0.44098
,
0
,
0.25639
,
0.06967
,
0.05094
,
0.20061
,
0
,
0.37664
,
0
,
0.56803
,
0.09944
,
0.63586
,
0.28628
,
0.61086
,
0.4109
,
0.6459
,
0.48722
,
0.68381
,
0.53797
,
0.73402
,
0.58647
,
0.86496
,
0.61184
,
1
,
0.65564
,
1
,
0.84267
,
0.91025
,
0.99737
,
0.67869
,
1
,
0.43709
,
0.9765
,
0.27111
,
0.86353
,
0.14775
,
0.70883
,
0.04713
,
0.58647
],
"triangles"
:[
15
,
14
,
13
,
11
,
15
,
13
,
12
,
11
,
13
,
10
,
15
,
11
,
17
,
16
,
9
,
9
,
16
,
10
,
16
,
15
,
10
,
18
,
17
,
8
,
8
,
17
,
9
,
7
,
18
,
8
,
5
,
4
,
6
,
1
,
7
,
6
,
4
,
1
,
6
,
19
,
18
,
7
,
0
,
19
,
7
,
1
,
0
,
7
,
3
,
1
,
4
,
2
,
1
,
3
],
"weights"
:[
1
,
5
,
1
,
1
,
5
,
1
,
1
,
5
,
1
,
1
,
5
,
1
,
1
,
5
,
1
,
1
,
5
,
1
,
1
,
5
,
1
,
2
,
5
,
0.634673
,
14
,
0.365327
,
2
,
5
,
0.538206
,
14
,
0.461794
,
2
,
5
,
0.437653
,
14
,
0.562347
,
2
,
5
,
0.320418
,
14
,
0.679582
,
1
,
14
,
1
,
1
,
14
,
1
,
1
,
14
,
1
,
1
,
14
,
1
,
2
,
14
,
0.9
,
5
,
0.1
,
2
,
14
,
0.75
,
5
,
0.25
,
2
,
5
,
0.57
,
14
,
0.43
,
2
,
5
,
0.82
,
14
,
0.18
,
2
,
5
,
0.92
,
14
,
0.08
],
"slotPose"
:[
1
,
0
,
0
,
1
,
0
,
0
],
"bonePose"
:[
5
,
0.474764
,
0.880113
,
-0.880113
,
0.474764
,
84.65
,
160.75
,
14
,
0.944227
,
0.329296
,
-0.329296
,
0.944227
,
159.2
,
298.95
],
"edges"
:[
0
,
1
,
1
,
2
,
2
,
3
,
3
,
4
,
4
,
5
,
5
,
6
,
6
,
7
,
7
,
8
,
8
,
9
,
9
,
10
,
10
,
11
,
11
,
12
,
12
,
13
,
13
,
14
,
14
,
15
,
15
,
16
,
16
,
17
,
17
,
18
,
18
,
19
,
19
,
0
],
"userEdges"
:[]}]},{
"name"
:
"嘴巴"
,
"display"
:[{
"name"
:
"run/嘴巴"
,
"transform"
:{
"x"
:
-3.27
,
"y"
:
3.54
,
"skX"
:
91.97
,
"skY"
:
91.97
}}]},{
"name"
:
"左脚"
,
"display"
:[{
"name"
:
"good/左脚"
,
"transform"
:{
"x"
:
41.02
,
"y"
:
8.11
,
"skX"
:
-90.48
,
"skY"
:
-90.48
}},{
"name"
:
"expect/左脚"
,
"transform"
:{
"x"
:
20.4
,
"y"
:
-6.22
,
"skX"
:
-90.48
,
"skY"
:
-90.48
}}]},{
"name"
:
"已插入图像_11"
,
"display"
:[{
"name"
:
"point/已插入图像_1"
,
"transform"
:{
"x"
:
20.79
,
"y"
:
50.61
,
"skX"
:
-114.73
,
"skY"
:
-114.73
}}]},{
"name"
:
"图层 61_0"
,
"display"
:[{
"type"
:
"mesh"
,
"name"
:
"run/图层 61_0"
,
"width"
:
133
,
"height"
:
178
,
"vertices"
:[
128.4
,
159.4
,
153.35
,
180.95
,
202.4
,
180.95
,
234
,
171.05
,
234
,
138.25
,
234
,
98.75
,
222.4
,
60.3
,
191.25
,
24.2
,
146.2
,
3
,
102.25
,
3
,
101.05
,
48.1
,
122.75
,
79.25
,
139.5
,
111.55
,
131.65
,
136
],
"uvs"
:[
0.20602
,
0.87865
,
0.39361
,
0.99972
,
0.76241
,
0.99972
,
1
,
0.9441
,
1
,
0.75983
,
1
,
0.53792
,
0.91278
,
0.32191
,
0.67857
,
0.1191
,
0.33985
,
0
,
0.0094
,
0
,
0.00038
,
0.25337
,
0.16353
,
0.42837
,
0.28947
,
0.60983
,
0.23045
,
0.74719
],
"triangles"
:[
2
,
3
,
4
,
12
,
2
,
4
,
12
,
4
,
5
,
6
,
12
,
5
,
13
,
1
,
2
,
12
,
13
,
2
,
7
,
11
,
6
,
11
,
12
,
6
,
8
,
11
,
7
,
10
,
11
,
8
,
9
,
10
,
8
,
13
,
0
,
1
],
"weights"
:[
1
,
39
,
1
,
1
,
39
,
1
,
1
,
39
,
1
,
1
,
39
,
1
,
1
,
39
,
1
,
2
,
35
,
0.22
,
39
,
0.78
,
2
,
35
,
0.6
,
39
,
0.4
,
2
,
35
,
0.84
,
39
,
0.16
,
1
,
35
,
1
,
1
,
35
,
1
,
1
,
35
,
1
,
1
,
35
,
1
,
2
,
35
,
0.39
,
39
,
0.61
,
1
,
39
,
1
],
"slotPose"
:[
1
,
0
,
0
,
1
,
0
,
0
],
"bonePose"
:[
35
,
0.748734
,
0.66287
,
-0.66287
,
0.748734
,
110.55
,
24.9
,
39
,
0.13554
,
0.990772
,
-0.990772
,
0.13554
,
175.95
,
82.8
],
"edges"
:[
0
,
1
,
1
,
2
,
2
,
3
,
3
,
4
,
4
,
5
,
5
,
6
,
6
,
7
,
7
,
8
,
8
,
9
,
9
,
10
,
10
,
11
,
11
,
12
,
12
,
13
,
13
,
0
],
"userEdges"
:[]}]},{
"name"
:
"图层_45"
,
"display"
:[{
"name"
:
"wave/图层_45"
,
"transform"
:{
"x"
:
-67.01
,
"y"
:
-28.18
,
"skX"
:
-77.13
,
"skY"
:
-77.13
}}]},{
"name"
:
"嘴巴2"
,
"display"
:[{
"name"
:
"point/嘴巴2"
,
"transform"
:{
"x"
:
-8.16
,
"y"
:
-39.15
,
"skX"
:
90.81
,
"skY"
:
90.81
}},{
"name"
:
"point/嘴巴1"
,
"transform"
:{
"x"
:
-7.69
,
"y"
:
-36.65
,
"skX"
:
90.81
,
"skY"
:
90.81
}}]},{
"name"
:
"图层_65"
,
"display"
:[{
"name"
:
"run/图层_65"
,
"transform"
:{
"x"
:
-4.68
,
"y"
:
7.42
,
"skX"
:
104.33
,
"skY"
:
104.33
}}]},{
"name"
:
"图层 36_0"
,
"display"
:[{
"name"
:
"expect/图层 36_0"
,
"transform"
:{
"x"
:
-4.38
,
"y"
:
-1.38
,
"skX"
:
91.04
,
"skY"
:
91.04
}}]},{
"name"
:
"耳套"
,
"display"
:[{
"name"
:
"run/耳套"
,
"transform"
:{
"x"
:
-7.65
,
"y"
:
-4.62
,
"skX"
:
91.97
,
"skY"
:
91.97
}}]},{
"name"
:
"已插入图像"
,
"display"
:[{
"name"
:
"point/已插入图像"
,
"transform"
:{
"x"
:
99.82
,
"y"
:
4.63
,
"skX"
:
-61.59
,
"skY"
:
-61.59
}}]},{
"name"
:
"图层47"
,
"display"
:[{
"name"
:
"point/图层47"
,
"transform"
:{
"x"
:
-27.17
,
"y"
:
5
,
"skX"
:
89.68
,
"skY"
:
89.68
}}]},{
"name"
:
"图层_36"
,
"display"
:[{
"name"
:
"expect/图层_36"
,
"transform"
:{
"x"
:
-1.6
,
"y"
:
0.12
,
"skX"
:
91.04
,
"skY"
:
91.04
}}]},{
"name"
:
"图层_44"
,
"display"
:[{
"name"
:
"good/图层_44"
,
"transform"
:{
"x"
:
-193.73
,
"y"
:
-42.36
,
"skX"
:
-77.13
,
"skY"
:
-77.13
}},{
"name"
:
"good/图层 36_0"
,
"transform"
:{
"x"
:
-102.05
,
"y"
:
99.62
,
"skX"
:
-77.13
,
"skY"
:
-77.13
}},{
"name"
:
"good/图层40_0"
,
"transform"
:{
"x"
:
44.64
,
"y"
:
0.81
,
"skX"
:
-77.13
,
"skY"
:
-77.13
}},{
"name"
:
"cheer/图层42"
,
"transform"
:{
"x"
:
-232.29
,
"y"
:
-178.88
,
"skX"
:
-77.13
,
"skY"
:
-77.13
}},{
"name"
:
"cheer/图层42_2"
,
"transform"
:{
"x"
:
-172.89
,
"y"
:
-126.84
,
"skX"
:
-77.13
,
"skY"
:
-77.13
}},{
"name"
:
"expect/图层 39_2"
,
"transform"
:{
"x"
:
-135.18
,
"y"
:
-20.27
,
"skX"
:
-77.13
,
"skY"
:
-77.13
}},{
"name"
:
"invite/图层_31"
,
"transform"
:{
"x"
:
-128.56
,
"y"
:
-76.2
,
"skX"
:
-77.13
,
"skY"
:
-77.13
}},{
"name"
:
"talk/图层40"
,
"transform"
:{
"x"
:
-124.67
,
"y"
:
126.77
,
"skX"
:
-77.13
,
"skY"
:
-77.13
}},{
"name"
:
"wave/图层_44"
,
"transform"
:{
"x"
:
-307.22
,
"y"
:
-165.22
,
"skX"
:
-77.13
,
"skY"
:
-77.13
}}]},{
"name"
:
"右腿"
,
"display"
:[{
"type"
:
"mesh"
,
"name"
:
"good/右腿"
,
"width"
:
137
,
"height"
:
265
,
"vertices"
:[
25.05
,
178
,
134.15
,
178
,
144.1
,
226.25
,
154.1
,
275.55
,
161.7
,
311.35
,
162
,
357.75
,
159.35
,
407.6
,
152.35
,
435.25
,
123
,
443
,
72
,
443
,
42.6
,
428.75
,
29.65
,
398.2
,
26.2
,
337.2
,
25.05
,
267.4
],
"uvs"
:[
0.00036
,
0
,
0.79672
,
0
,
0.86934
,
0.18208
,
0.94234
,
0.36811
,
0.99781
,
0.50321
,
1
,
0.6783
,
0.98066
,
0.86642
,
0.92956
,
0.97075
,
0.71533
,
1
,
0.34307
,
1
,
0.12847
,
0.94623
,
0.03394
,
0.83094
,
0.00876
,
0.60075
,
0.00036
,
0.33736
],
"triangles"
:[
9
,
8
,
6
,
9
,
6
,
5
,
11
,
9
,
5
,
12
,
11
,
5
,
4
,
12
,
5
,
3
,
12
,
4
,
8
,
7
,
6
,
2
,
13
,
3
,
13
,
12
,
3
,
1
,
0
,
2
,
0
,
13
,
2
,
11
,
10
,
9
],
"weights"
:[
2
,
7
,
0.913627
,
15
,
0.086373
,
2
,
7
,
0.836278
,
15
,
0.163722
,
2
,
7
,
0.713054
,
15
,
0.286946
,
2
,
7
,
0.542457
,
15
,
0.457543
,
2
,
7
,
0.499272
,
15
,
0.500728
,
2
,
7
,
0.403153
,
15
,
0.596847
,
2
,
7
,
0.228576
,
15
,
0.771424
,
2
,
7
,
0.139633
,
15
,
0.860367
,
2
,
7
,
0.03391
,
15
,
0.96609
,
2
,
7
,
0.039292
,
15
,
0.960708
,
2
,
7
,
0.162412
,
15
,
0.837588
,
2
,
7
,
0.28741
,
15
,
0.71259
,
2
,
7
,
0.478803
,
15
,
0.521197
,
2
,
7
,
0.662648
,
15
,
0.337352
],
"slotPose"
:[
1
,
0
,
0
,
1
,
0
,
0
],
"bonePose"
:[
7
,
0.173196
,
0.984887
,
-0.984887
,
0.173196
,
71.5
,
186.1
,
15
,
0.033328
,
0.999444
,
-0.999444
,
0.033328
,
94.15
,
314.9
],
"edges"
:[
0
,
1
,
1
,
2
,
2
,
3
,
3
,
4
,
4
,
5
,
5
,
6
,
6
,
7
,
7
,
8
,
8
,
9
,
9
,
10
,
10
,
11
,
11
,
12
,
12
,
13
,
13
,
0
],
"userEdges"
:[]},{
"name"
:
"expect/图层 45_0"
,
"transform"
:{
"x"
:
-29.02
,
"y"
:
-11.82
,
"skX"
:
-88.09
,
"skY"
:
-88.09
}}]},{
"name"
:
"图层44"
,
"display"
:[{
"name"
:
"run/图层44"
,
"transform"
:{
"x"
:
52.79
,
"y"
:
8.83
,
"skX"
:
-122.71
,
"skY"
:
-122.71
}}]},{
"name"
:
"图层38(2)"
,
"display"
:[{
"name"
:
"run/图层38(2)"
,
"transform"
:{
"x"
:
36.49
,
"y"
:
24.06
,
"skX"
:
-0.69
,
"skY"
:
-0.69
}}]},{
"name"
:
"图层_73"
,
"display"
:[{
"name"
:
"run/图层_73"
,
"transform"
:{
"x"
:
29.76
,
"y"
:
0.04
,
"skX"
:
-96.78
,
"skY"
:
-96.78
}}]},{
"name"
:
"已插入图像_01"
,
"display"
:[{
"name"
:
"point/已插入图像_0"
,
"transform"
:{
"x"
:
40.44
,
"y"
:
12.29
,
"skX"
:
-77.13
,
"skY"
:
-77.13
}}]},{
"name"
:
"眼镜"
,
"display"
:[{
"name"
:
"run/眼镜"
,
"transform"
:{
"x"
:
93.34
,
"y"
:
-4.84
,
"skX"
:
174.92
,
"skY"
:
174.92
}}]},{
"name"
:
"图层_66"
,
"display"
:[{
"name"
:
"run/图层_66"
,
"transform"
:{
"x"
:
-11.38
,
"y"
:
-4.14
,
"skX"
:
104.33
,
"skY"
:
104.33
}}]},{
"name"
:
"左脚1"
,
"display"
:[{
"name"
:
"point/左脚"
,
"transform"
:{
"x"
:
36.25
,
"y"
:
-24.35
,
"skX"
:
-90.48
,
"skY"
:
-90.48
}}]},{
"name"
:
"图层_25"
,
"display"
:[{
"name"
:
"wave/图层_25"
,
"transform"
:{
"x"
:
10.45
,
"y"
:
-12.54
,
"skX"
:
-77.13
,
"skY"
:
-77.13
}}]},{
"name"
:
"右脚"
,
"display"
:[{
"name"
:
"good/右脚"
,
"transform"
:{
"x"
:
42.7
,
"y"
:
-20.54
,
"skX"
:
-89.04
,
"skY"
:
-89.04
}},{
"name"
:
"expect/左脚_0"
,
"transform"
:{
"x"
:
22.17
,
"y"
:
-18.88
,
"skX"
:
-89.04
,
"skY"
:
-89.04
}}]},{
"name"
:
"身体2"
,
"display"
:[{
"name"
:
"point/身体"
,
"transform"
:{
"x"
:
107.04
,
"y"
:
15.45
,
"skX"
:
89.68
,
"skY"
:
89.68
}}]}]}],
"animation"
:[{
"duration"
:
24
,
"playTimes"
:
0
,
"name"
:
"run"
,
"bone"
:[{
"name"
:
"run"
,
"translateFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
,
"y"
:
-71.47
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"y"
:
17.02
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"y"
:
-71.47
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"y"
:
17.02
},{
"duration"
:
0
,
"y"
:
-71.47
}],
"rotateFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
-10.06
},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
-10.06
},{
"duration"
:
0
}]},{
"name"
:
"身体"
,
"translateFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
12
,
"tweenEasing"
:
0
,
"x"
:
-1.12
,
"y"
:
7.96
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"x"
:
-1.12
,
"y"
:
7.96
},{
"duration"
:
0
}],
"rotateFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
4.93
},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
4.93
},{
"duration"
:
0
}]},{
"name"
:
"头"
,
"translateFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"x"
:
-13.69
,
"y"
:
-1.75
},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"x"
:
-13.69
,
"y"
:
-1.75
},{
"duration"
:
0
}],
"rotateFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
-4.15
},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
-4.15
},{
"duration"
:
0
}]},{
"name"
:
"图层_74"
,
"rotateFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
-2.95
},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
-2.95
},{
"duration"
:
0
}]},{
"name"
:
"图层_66"
,
"translateFrame"
:[{
"duration"
:
12
,
"tweenEasing"
:
0
},{
"duration"
:
12
,
"tweenEasing"
:
0
,
"x"
:
-15.11
,
"y"
:
59.16
},{
"duration"
:
0
}]},{
"name"
:
"图层_61"
,
"rotateFrame"
:[{
"duration"
:
12
,
"tweenEasing"
:
0
},{
"duration"
:
12
,
"tweenEasing"
:
0
,
"rotate"
:
-135.81
},{
"duration"
:
0
}]},{
"name"
:
"图层_611"
,
"rotateFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
29.79
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
-0.95
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
-21.48
},{
"duration"
:
0
}]},{
"name"
:
"图层_72"
,
"rotateFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
21.09
},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
-30.04
},{
"duration"
:
0
}]},{
"name"
:
"图层_65"
,
"translateFrame"
:[{
"duration"
:
12
,
"tweenEasing"
:
0
},{
"duration"
:
12
,
"tweenEasing"
:
0
,
"x"
:
29.92
,
"y"
:
-117.17
},{
"duration"
:
0
}]},{
"name"
:
"图层 61_0"
,
"rotateFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
-21.5
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
57.78
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
93.21
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
39.12
},{
"duration"
:
0
,
"rotate"
:
-21.5
}]},{
"name"
:
"图层 61_01"
,
"rotateFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
-16.09
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
29.57
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
38.75
},{
"duration"
:
0
}]},{
"name"
:
"图层_73"
,
"rotateFrame"
:[{
"duration"
:
6
,
"curve"
:[
0.5
,
0
,
0.5
,
1
]},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
-26.38
},{
"duration"
:
6
,
"curve"
:[
0.5
,
0
,
0.5
,
1
]},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
13.42
},{
"duration"
:
0
}]},{
"name"
:
"图层_68"
,
"translateFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"x"
:
13.51
,
"y"
:
-0.62
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"x"
:
-0.2
,
"y"
:
4.49
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"x"
:
-3.82
,
"y"
:
27.12
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"x"
:
-6.7
,
"y"
:
-4.09
},{
"duration"
:
0
}],
"rotateFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
64.13
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
86.2
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
76.23
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
52.64
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
6.53
},{
"duration"
:
0
}]},{
"name"
:
"图层_681"
,
"rotateFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
-60.86
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
22.23
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
16.68
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
7.18
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
26.45
},{
"duration"
:
0
}]},{
"name"
:
"图层38(2)"
,
"rotateFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
-13.87
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
27.48
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
6.16
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
37.73
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
-14.72
},{
"duration"
:
0
}]},{
"name"
:
"图层_64"
,
"translateFrame"
:[{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"x"
:
-41.55
,
"y"
:
-15.84
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"x"
:
12.58
,
"y"
:
-34.04
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"x"
:
5.72
,
"y"
:
-21.46
},{
"duration"
:
12
,
"tweenEasing"
:
0
,
"x"
:
18.69
,
"y"
:
-6.26
},{
"duration"
:
0
}],
"rotateFrame"
:[{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
-31.09
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
-24.72
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
-86.64
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
-104.42
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
-29.22
},{
"duration"
:
0
}]},{
"name"
:
"图层_641"
,
"rotateFrame"
:[{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
24.74
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
-20.74
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
7.12
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
-13.57
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
-70.86
},{
"duration"
:
0
}]},{
"name"
:
"图层44"
,
"rotateFrame"
:[{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
-18.15
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
14.96
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
-22.14
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
-11.85
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
-28.52
},{
"duration"
:
0
}]}],
"slot"
:[{
"name"
:
"眼睛"
,
"displayFrame"
:[{
"duration"
:
3
},{
"duration"
:
3
,
"value"
:
2
},{
"duration"
:
3
,
"value"
:
1
},{
"duration"
:
3
,
"value"
:
2
},{
"duration"
:
12
}]},{
"name"
:
"右脚"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"右腿"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"左脚"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"左腿"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"图层34_0"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"图层40"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"图层47_0"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"身体1"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"头1"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"右手2_0"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"右手2"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"眉毛"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"图层_44"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"张嘴"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"睁眼"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"图层 36_0"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"图层_36"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"图层_45"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"图层_25"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"左脚1"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"左腿1"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"右脚1"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"右腿1"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"图层42"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"图层47"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"身体2"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"图层34"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"头2"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"睁眼1"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"眉毛1"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"嘴巴2"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"已插入图像"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"已插入图像_11"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"已插入图像_01"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"右手2_01"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]},{
"name"
:
"右手21"
,
"displayFrame"
:[{
"duration"
:
24
,
"value"
:
-1
}]}]},{
"duration"
:
60
,
"playTimes"
:
0
,
"name"
:
"good"
,
"bone"
:[{
"name"
:
"good"
,
"translateFrame"
:[{
"duration"
:
9
,
"tweenEasing"
:
0
},{
"duration"
:
9
,
"tweenEasing"
:
0
},{
"duration"
:
11
,
"tweenEasing"
:
0
,
"y"
:
-7.15
},{
"duration"
:
9
,
"tweenEasing"
:
0
},{
"duration"
:
11
,
"tweenEasing"
:
0
,
"y"
:
-7.15
},{
"duration"
:
11
}]},{
"name"
:
"身体1"
,
"translateFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"x"
:
-0.07
,
"y"
:
-4.97
},{
"duration"
:
40
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
8
,
"tweenEasing"
:
0
,
"x"
:
-0.07
,
"y"
:
-4.97
},{
"duration"
:
0
}],
"scaleFrame"
:[{
"duration"
:
9
,
"tweenEasing"
:
0
},{
"duration"
:
9
,
"tweenEasing"
:
0
},{
"duration"
:
11
,
"tweenEasing"
:
0
,
"x"
:
1.05
},{
"duration"
:
9
,
"tweenEasing"
:
0
},{
"duration"
:
11
,
"tweenEasing"
:
0
,
"x"
:
1.05
},{
"duration"
:
11
}]},{
"name"
:
"右腿"
,
"translateFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"x"
:
-0.1
,
"y"
:
-7.2
},{
"duration"
:
9
,
"tweenEasing"
:
0
},{
"duration"
:
11
,
"tweenEasing"
:
0
,
"x"
:
-0.09
,
"y"
:
-6.52
},{
"duration"
:
9
,
"tweenEasing"
:
0
},{
"duration"
:
11
,
"tweenEasing"
:
0
,
"x"
:
-0.09
,
"y"
:
-6.52
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
8
,
"tweenEasing"
:
0
,
"x"
:
-0.1
,
"y"
:
-7.2
},{
"duration"
:
0
}],
"scaleFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"x"
:
0.97
},{
"duration"
:
40
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
8
,
"tweenEasing"
:
0
,
"x"
:
0.97
},{
"duration"
:
0
}]},{
"name"
:
"左腿"
,
"translateFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"x"
:
-0.1
,
"y"
:
-7.2
},{
"duration"
:
9
,
"tweenEasing"
:
0
},{
"duration"
:
11
,
"tweenEasing"
:
0
,
"x"
:
-0.09
,
"y"
:
-6.52
},{
"duration"
:
9
,
"tweenEasing"
:
0
},{
"duration"
:
11
,
"tweenEasing"
:
0
,
"x"
:
-0.09
,
"y"
:
-6.52
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
8
,
"tweenEasing"
:
0
,
"x"
:
-0.1
,
"y"
:
-7.2
},{
"duration"
:
0
}],
"scaleFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"x"
:
0.97
},{
"duration"
:
40
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
8
,
"tweenEasing"
:
0
,
"x"
:
0.97
},{
"duration"
:
0
}]},{
"name"
:
"头1"
,
"translateFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"x"
:
-19.82
,
"y"
:
0.11
},{
"duration"
:
9
,
"tweenEasing"
:
0
},{
"duration"
:
11
,
"tweenEasing"
:
0
,
"x"
:
4.26
,
"y"
:
-0.03
},{
"duration"
:
9
,
"tweenEasing"
:
0
},{
"duration"
:
11
,
"tweenEasing"
:
0
,
"x"
:
4.26
,
"y"
:
-0.03
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
8
,
"tweenEasing"
:
0
,
"x"
:
-10.88
,
"y"
:
0.06
},{
"duration"
:
0
}],
"rotateFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
1.79
},{
"duration"
:
9
,
"tweenEasing"
:
0
,
"rotate"
:
4.94
},{
"duration"
:
11
,
"tweenEasing"
:
0
,
"rotate"
:
-2.92
},{
"duration"
:
9
,
"tweenEasing"
:
0
,
"rotate"
:
4.94
},{
"duration"
:
11
,
"tweenEasing"
:
0
,
"rotate"
:
-2.92
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
2.18
},{
"duration"
:
8
,
"tweenEasing"
:
0
,
"rotate"
:
-3.13
},{
"duration"
:
0
}]},{
"name"
:
"右手2"
,
"translateFrame"
:[{
"duration"
:
9
,
"tweenEasing"
:
0
,
"x"
:
7.43
,
"y"
:
-0.04
},{
"duration"
:
40
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"tweenEasing"
:
0
,
"x"
:
1.91
,
"y"
:
2.52
},{
"duration"
:
7
,
"x"
:
7.43
,
"y"
:
-0.04
}],
"rotateFrame"
:[{
"duration"
:
5
,
"tweenEasing"
:
0
},{
"tweenEasing"
:
0
,
"rotate"
:
7.69
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
9
,
"tweenEasing"
:
0
,
"rotate"
:
-2.5
},{
"duration"
:
11
,
"tweenEasing"
:
0
,
"rotate"
:
-10.01
},{
"duration"
:
9
,
"tweenEasing"
:
0
,
"rotate"
:
-2.5
},{
"duration"
:
11
,
"tweenEasing"
:
0
,
"rotate"
:
-10.01
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
-2.5
},{
"tweenEasing"
:
0
},{
"duration"
:
7
,
"tweenEasing"
:
0
,
"rotate"
:
5.92
},{
"duration"
:
0
}]},{
"name"
:
"右手2_0"
,
"translateFrame"
:[{
"duration"
:
9
,
"tweenEasing"
:
0
,
"x"
:
7.43
,
"y"
:
-0.04
},{
"duration"
:
40
,
"tweenEasing"
:
0
},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
7
,
"x"
:
7.43
,
"y"
:
-0.04
}],
"rotateFrame"
:[{
"duration"
:
5
,
"tweenEasing"
:
0
},{
"tweenEasing"
:
0
,
"rotate"
:
-6.21
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
9
,
"tweenEasing"
:
0
,
"rotate"
:
2.26
},{
"duration"
:
11
,
"tweenEasing"
:
0
,
"rotate"
:
9.03
},{
"duration"
:
9
,
"tweenEasing"
:
0
,
"rotate"
:
2.26
},{
"duration"
:
11
,
"tweenEasing"
:
0
,
"rotate"
:
9.03
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
2.26
},{
"tweenEasing"
:
0
},{
"duration"
:
7
,
"tweenEasing"
:
0
,
"rotate"
:
-5.26
},{
"duration"
:
0
}]},{
"name"
:
"眉毛"
,
"translateFrame"
:[{
"duration"
:
9
,
"tweenEasing"
:
0
},{
"duration"
:
9
,
"tweenEasing"
:
0
},{
"duration"
:
11
,
"tweenEasing"
:
0
,
"x"
:
7.01
,
"y"
:
-0.35
},{
"duration"
:
9
,
"tweenEasing"
:
0
},{
"duration"
:
11
,
"tweenEasing"
:
0
,
"x"
:
7.01
,
"y"
:
-0.35
},{
"duration"
:
11
}]},{
"name"
:
"图层40"
,
"rotateFrame"
:[{
"duration"
:
5
,
"tweenEasing"
:
0
},{
"tweenEasing"
:
0
,
"rotate"
:
-7.98
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
9
,
"tweenEasing"
:
0
},{
"duration"
:
11
,
"tweenEasing"
:
0
,
"rotate"
:
-2.38
},{
"duration"
:
9
,
"tweenEasing"
:
0
},{
"duration"
:
11
,
"tweenEasing"
:
0
,
"rotate"
:
-2.38
},{
"duration"
:
11
}],
"scaleFrame"
:[{
"duration"
:
9
,
"tweenEasing"
:
0
},{
"duration"
:
9
,
"tweenEasing"
:
0
},{
"duration"
:
11
,
"tweenEasing"
:
0
,
"x"
:
1.1
,
"y"
:
1.1
},{
"duration"
:
9
,
"tweenEasing"
:
0
},{
"duration"
:
11
,
"tweenEasing"
:
0
,
"x"
:
1.1
,
"y"
:
1.1
},{
"duration"
:
11
}]},{
"name"
:
"图层_44"
,
"rotateFrame"
:[{
"duration"
:
5
,
"tweenEasing"
:
0
},{
"tweenEasing"
:
0
,
"rotate"
:
13.89
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
9
,
"tweenEasing"
:
0
},{
"duration"
:
11
,
"tweenEasing"
:
0
,
"rotate"
:
3
},{
"duration"
:
9
,
"tweenEasing"
:
0
},{
"duration"
:
11
,
"tweenEasing"
:
0
,
"rotate"
:
3
},{
"duration"
:
11
}],
"scaleFrame"
:[{
"duration"
:
9
,
"tweenEasing"
:
0
},{
"duration"
:
9
,
"tweenEasing"
:
0
},{
"duration"
:
11
,
"tweenEasing"
:
0
,
"x"
:
1.1
,
"y"
:
1.1
},{
"duration"
:
9
,
"tweenEasing"
:
0
},{
"duration"
:
11
,
"tweenEasing"
:
0
,
"x"
:
1.1
,
"y"
:
1.1
},{
"duration"
:
11
}]}],
"slot"
:[{
"name"
:
"图层_73"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层 61_0"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层_65"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层44"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层_64"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层38(2)"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层_68"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"身体"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层_72"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层_61"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"头"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"嘴巴"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"眼睛"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层_74"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"眼镜"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层40"
,
"displayFrame"
:[{
"duration"
:
6
},{
"duration"
:
3
,
"value"
:
-1
},{
"duration"
:
43
,
"value"
:
1
},{
"value"
:
2
},{
"duration"
:
7
}]},{
"name"
:
"图层_44"
,
"displayFrame"
:[{
"duration"
:
6
,
"value"
:
2
},{
"duration"
:
3
,
"value"
:
-1
},{
"duration"
:
43
},{
"value"
:
1
},{
"duration"
:
7
,
"value"
:
2
}]},{
"name"
:
"右手2_0"
,
"displayFrame"
:[{
"duration"
:
6
,
"value"
:
3
},{
"duration"
:
3
,
"value"
:
2
},{
"duration"
:
43
,
"value"
:
1
},{
"value"
:
-1
},{
"duration"
:
7
,
"value"
:
3
}]},{
"name"
:
"右手2"
,
"displayFrame"
:[{
"duration"
:
6
,
"value"
:
3
},{
"duration"
:
3
,
"value"
:
2
},{
"duration"
:
43
,
"value"
:
1
},{
"value"
:
-1
},{
"duration"
:
7
,
"value"
:
3
}]},{
"name"
:
"张嘴"
,
"displayFrame"
:[{
"duration"
:
6
,
"value"
:
12
},{
"duration"
:
3
,
"value"
:
2
},{
"duration"
:
43
,
"value"
:
1
},{
"duration"
:
8
,
"value"
:
2
}]},{
"name"
:
"睁眼"
,
"displayFrame"
:[{
"duration"
:
6
,
"value"
:
1
},{
"duration"
:
3
,
"value"
:
2
},{
"duration"
:
43
},{
"duration"
:
3
,
"value"
:
2
},{
"duration"
:
3
,
"value"
:
3
},{
"duration"
:
2
,
"value"
:
1
}]},{
"name"
:
"图层 36_0"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层_36"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层_45"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层_25"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"左脚1"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"左腿1"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"右脚1"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"右腿1"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层42"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层47"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"身体2"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层34"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"头2"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"睁眼1"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"眉毛1"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"嘴巴2"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"已插入图像"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"已插入图像_11"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"已插入图像_01"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"右手2_01"
,
"displayFrame"
:[{
"duration"
:
6
,
"value"
:
-1
},{
"duration"
:
3
},{
"duration"
:
43
,
"value"
:
-1
},{},{
"duration"
:
7
,
"value"
:
-1
}]},{
"name"
:
"右手21"
,
"displayFrame"
:[{
"duration"
:
6
,
"value"
:
-1
},{
"duration"
:
3
},{
"duration"
:
43
,
"value"
:
-1
},{},{
"duration"
:
7
,
"value"
:
-1
}]}],
"zOrder"
:{
"frame"
:[{
"duration"
:
6
,
"zOrder"
:[
27
,
-7
,
28
,
-6
]},{
"duration"
:
3
,
"zOrder"
:[
23
,
3
,
27
,
20
,
29
,
19
,
34
,
11
,
35
,
2
,
36
,
-2
,
37
,
6
,
39
,
11
,
40
,
1
,
42
,
7
,
45
,
-9
,
47
,
-1
,
48
,
-10
,
49
,
-16
]},{
"duration"
:
20
,
"zOrder"
:[
21
,
4
,
23
,
5
,
24
,
0
,
27
,
16
,
28
,
-1
,
29
,
16
,
34
,
5
,
35
,
3
,
36
,
14
,
38
,
6
,
39
,
9
,
40
,
2
,
42
,
5
,
44
,
2
,
45
,
-13
,
46
,
-13
,
49
,
-15
,
50
,
-13
]},{
"duration"
:
20
,
"zOrder"
:[
21
,
4
,
23
,
5
,
24
,
0
,
27
,
8
,
28
,
-1
,
29
,
10
,
34
,
6
,
36
,
12
,
39
,
6
,
40
,
-7
,
41
,
3
,
42
,
1
,
43
,
3
,
45
,
4
,
46
,
-12
,
50
,
-12
]},{
"duration"
:
3
,
"zOrder"
:[
21
,
4
,
22
,
0
,
23
,
5
,
24
,
0
,
27
,
9
,
28
,
-1
,
29
,
11
,
34
,
12
,
35
,
14
,
36
,
9
,
37
,
7
,
38
,
0
,
39
,
0
,
41
,
-4
,
45
,
2
,
46
,
4
,
47
,
-14
,
50
,
-18
]},{
"zOrder"
:[
21
,
5
,
23
,
1
,
24
,
3
,
27
,
17
,
29
,
17
,
34
,
7
,
35
,
12
,
36
,
3
,
37
,
0
,
38
,
11
,
40
,
10
,
41
,
-3
,
42
,
-6
,
43
,
-1
,
45
,
-2
,
46
,
2
,
49
,
-4
]},{
"duration"
:
7
,
"zOrder"
:[
27
,
-28
]},{
"duration"
:
0
,
"zOrder"
:[
27
,
-7
,
28
,
-6
]}]}},{
"duration"
:
30
,
"playTimes"
:
0
,
"name"
:
"cheer"
,
"bone"
:[{
"name"
:
"good"
,
"translateFrame"
:[{
"duration"
:
8
,
"tweenEasing"
:
0
},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"y"
:
16.88
},{
"duration"
:
8
,
"tweenEasing"
:
0
,
"y"
:
18.8
},{
"duration"
:
12
,
"tweenEasing"
:
0
,
"y"
:
-60.24
},{
"duration"
:
0
}]},{
"name"
:
"身体1"
,
"translateFrame"
:[{
"duration"
:
8
,
"tweenEasing"
:
0
},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"x"
:
-0.06
,
"y"
:
-4.23
},{
"duration"
:
8
,
"tweenEasing"
:
0
,
"x"
:
-0.24
,
"y"
:
-16.64
},{
"duration"
:
12
}],
"scaleFrame"
:[{
"duration"
:
18
,
"tweenEasing"
:
0
},{
"duration"
:
12
,
"tweenEasing"
:
0
,
"x"
:
1.03
},{
"duration"
:
0
}]},{
"name"
:
"右腿"
,
"translateFrame"
:[{
"duration"
:
8
,
"tweenEasing"
:
0
},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"x"
:
23.75
,
"y"
:
-5.31
},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"x"
:
30.7
,
"y"
:
-15.71
},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"x"
:
19.59
,
"y"
:
4
},{
"duration"
:
12
,
"tweenEasing"
:
0
,
"x"
:
25.46
,
"y"
:
5.27
},{
"duration"
:
0
}],
"rotateFrame"
:[{
"duration"
:
10
,
"tweenEasing"
:
0
},{
"duration"
:
8
,
"tweenEasing"
:
0
},{
"duration"
:
12
,
"tweenEasing"
:
0
,
"rotate"
:
-44.78
},{
"duration"
:
0
}]},{
"name"
:
"左腿"
,
"translateFrame"
:[{
"duration"
:
8
,
"tweenEasing"
:
0
},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"x"
:
-24.65
,
"y"
:
-3.9
},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"x"
:
-29.06
,
"y"
:
-14.13
},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"x"
:
-13.94
,
"y"
:
4.48
},{
"duration"
:
12
,
"tweenEasing"
:
0
,
"x"
:
-8.34
,
"y"
:
11.4
},{
"duration"
:
0
}],
"rotateFrame"
:[{
"duration"
:
10
,
"tweenEasing"
:
0
},{
"duration"
:
8
,
"tweenEasing"
:
0
},{
"duration"
:
12
,
"tweenEasing"
:
0
,
"rotate"
:
41.58
},{
"duration"
:
0
}]},{
"name"
:
"头1"
,
"translateFrame"
:[{
"duration"
:
10
,
"tweenEasing"
:
0
},{
"duration"
:
8
,
"tweenEasing"
:
0
,
"x"
:
-12.53
,
"y"
:
0.07
},{
"duration"
:
12
}],
"rotateFrame"
:[{
"duration"
:
10
,
"tweenEasing"
:
0
},{
"duration"
:
8
,
"tweenEasing"
:
0
,
"rotate"
:
10.07
},{
"duration"
:
12
,
"tweenEasing"
:
0
,
"rotate"
:
-8.67
},{
"duration"
:
0
}]},{
"name"
:
"右手2"
,
"rotateFrame"
:[{
"duration"
:
10
,
"tweenEasing"
:
0
},{
"duration"
:
8
,
"tweenEasing"
:
0
,
"rotate"
:
-19.19
},{
"duration"
:
7
,
"tweenEasing"
:
0
,
"rotate"
:
2.47
},{
"duration"
:
5
,
"tweenEasing"
:
0
,
"rotate"
:
-14.89
},{
"duration"
:
0
}]},{
"name"
:
"右手2_0"
,
"rotateFrame"
:[{
"duration"
:
10
,
"tweenEasing"
:
0
},{
"duration"
:
8
,
"tweenEasing"
:
0
,
"rotate"
:
12.92
},{
"duration"
:
7
,
"tweenEasing"
:
0
,
"rotate"
:
-7.86
},{
"duration"
:
5
,
"tweenEasing"
:
0
,
"rotate"
:
14.42
},{
"duration"
:
0
}]},{
"name"
:
"眉毛"
,
"translateFrame"
:[{
"duration"
:
14
,
"tweenEasing"
:
0
},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
12
,
"tweenEasing"
:
0
,
"x"
:
-11.15
,
"y"
:
-1.91
},{
"duration"
:
0
}]},{
"name"
:
"左脚"
,
"translateFrame"
:[{
"duration"
:
8
,
"tweenEasing"
:
0
},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"x"
:
-2.88
,
"y"
:
-0.82
},{
"duration"
:
20
,
"tweenEasing"
:
0
,
"x"
:
-2.88
,
"y"
:
-0.82
},{
"duration"
:
0
}],
"rotateFrame"
:[{
"duration"
:
8
,
"tweenEasing"
:
0
},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"rotate"
:
15.1
},{
"duration"
:
20
,
"tweenEasing"
:
0
,
"rotate"
:
21.61
},{
"duration"
:
0
}]},{
"name"
:
"右脚"
,
"rotateFrame"
:[{
"duration"
:
8
,
"tweenEasing"
:
0
},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"rotate"
:
-10.44
},{
"duration"
:
20
,
"tweenEasing"
:
0
,
"rotate"
:
-12.93
},{
"duration"
:
0
}]},{
"name"
:
"图层40"
,
"rotateFrame"
:[{
"duration"
:
10
,
"tweenEasing"
:
0
},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"rotate"
:
7.88
},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"rotate"
:
0.42
},{
"duration"
:
7
,
"tweenEasing"
:
0
},{
"duration"
:
5
,
"tweenEasing"
:
0
,
"rotate"
:
-0.79
},{
"duration"
:
0
}]},{
"name"
:
"图层_44"
,
"rotateFrame"
:[{
"duration"
:
10
,
"tweenEasing"
:
0
},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"rotate"
:
-8.08
},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"rotate"
:
-0.14
},{
"duration"
:
7
,
"tweenEasing"
:
0
},{
"duration"
:
5
,
"tweenEasing"
:
0
,
"rotate"
:
1.28
},{
"duration"
:
0
}]},{
"name"
:
"bone_ikTarget"
,
"translateFrame"
:[{
"duration"
:
8
,
"tweenEasing"
:
0
},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"x"
:
16.4
,
"y"
:
-0.49
},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"x"
:
16.4
,
"y"
:
-0.49
},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"x"
:
-85.16
,
"y"
:
-40.56
},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"x"
:
-96.84
,
"y"
:
-66.93
},{
"duration"
:
7
,
"tweenEasing"
:
0
,
"x"
:
-120.2
,
"y"
:
-119.67
},{
"duration"
:
5
,
"tweenEasing"
:
0
,
"x"
:
-50.08
,
"y"
:
-40.32
},{
"duration"
:
0
}],
"rotateFrame"
:[{
"duration"
:
10
,
"tweenEasing"
:
0
},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
16
,
"tweenEasing"
:
0
,
"rotate"
:
11.55
},{
"duration"
:
0
}]},{
"name"
:
"bone_ikTarget1"
,
"translateFrame"
:[{
"duration"
:
8
,
"tweenEasing"
:
0
},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"x"
:
-4.54
,
"y"
:
-0.49
},{
"duration"
:
2
,
"tweenEasing"
:
0
,
"x"
:
-4.54
,
"y"
:
-0.49
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"x"
:
98.23
,
"y"
:
-48.33
},{
"duration"
:
7
,
"tweenEasing"
:
0
,
"x"
:
134.76
,
"y"
:
-142.88
},{
"duration"
:
5
,
"tweenEasing"
:
0
,
"x"
:
56.15
,
"y"
:
-43.71
},{
"duration"
:
0
}],
"rotateFrame"
:[{
"duration"
:
10
,
"tweenEasing"
:
0
},{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"rotate"
:
-33.49
},{
"duration"
:
12
,
"tweenEasing"
:
0
,
"rotate"
:
-53.37
},{
"duration"
:
0
}]}],
"slot"
:[{
"name"
:
"图层_73"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层 61_0"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层_65"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层44"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层_64"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层38(2)"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层_68"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"身体"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层_72"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层_61"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"头"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"嘴巴"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"眼睛"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层_74"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"眼镜"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层40"
,
"displayFrame"
:[{
"duration"
:
14
,
"value"
:
4
},{
"duration"
:
12
,
"value"
:
3
},{
"duration"
:
4
,
"value"
:
4
}]},{
"name"
:
"图层_44"
,
"displayFrame"
:[{
"duration"
:
14
,
"value"
:
4
},{
"duration"
:
12
,
"value"
:
3
},{
"duration"
:
4
,
"value"
:
4
}]},{
"name"
:
"右手2_0"
,
"displayFrame"
:[{
"duration"
:
14
,
"value"
:
4
},{
"duration"
:
12
,
"value"
:
5
},{
"duration"
:
4
,
"value"
:
4
}]},{
"name"
:
"右手2"
,
"displayFrame"
:[{
"duration"
:
14
,
"value"
:
4
},{
"duration"
:
12
,
"value"
:
5
},{
"duration"
:
4
,
"value"
:
4
}]},{
"name"
:
"张嘴"
,
"displayFrame"
:[{
"duration"
:
10
,
"value"
:
4
},{
"duration"
:
15
,
"value"
:
3
},{
"duration"
:
5
,
"value"
:
4
}]},{
"name"
:
"睁眼"
,
"displayFrame"
:[{
"duration"
:
18
,
"value"
:
1
},{
"duration"
:
7
,
"value"
:
4
},{
"duration"
:
5
,
"value"
:
1
}]},{
"name"
:
"图层 36_0"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层_36"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层_45"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层_25"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"左脚1"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"左腿1"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"右脚1"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"右腿1"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层42"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层47"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"身体2"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层34"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"头2"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"睁眼1"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"眉毛1"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"嘴巴2"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"已插入图像"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"已插入图像_11"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"已插入图像_01"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"右手2_01"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"右手21"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]}],
"ik"
:[{
"name"
:
"bone_ik"
,
"frame"
:[{
"duration"
:
30
,
"tweenEasing"
:
0
,
"bendPositive"
:
false
},{
"duration"
:
0
,
"bendPositive"
:
false
}]},{
"name"
:
"bone_ik1"
,
"frame"
:[{
"duration"
:
30
,
"tweenEasing"
:
0
},{
"duration"
:
0
}]}],
"zOrder"
:{
"frame"
:[{
"duration"
:
30
,
"zOrder"
:[
27
,
-7
,
28
,
-6
]},{
"duration"
:
0
,
"zOrder"
:[
27
,
-28
]}]}},{
"duration"
:
36
,
"playTimes"
:
0
,
"name"
:
"expect"
,
"bone"
:[{
"name"
:
"身体1"
,
"translateFrame"
:[{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"x"
:
0.08
,
"y"
:
5.51
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"x"
:
0.08
,
"y"
:
5.51
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"x"
:
0.08
,
"y"
:
5.51
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"x"
:
0.08
,
"y"
:
5.51
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"x"
:
0.08
,
"y"
:
5.51
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"x"
:
0.08
,
"y"
:
5.51
},{
"duration"
:
0
}],
"rotateFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
3.92
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
-3.31
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
-0.89
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
3.92
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
-3.31
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
-0.89
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
3.92
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
-3.31
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"rotate"
:
-0.89
},{
"duration"
:
0
,
"rotate"
:
3.92
}],
"scaleFrame"
:[{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"x"
:
1.03
},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"x"
:
1.03
},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
},{
"duration"
:
3
,
"tweenEasing"
:
0
,
"x"
:
1.03
},{
"duration"
:
3
}]},{
"name"
:
"头1"
,
"rotateFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
0.52
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
1.83
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
0.52
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
1.83
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
0.52
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
1.83
},{
"duration"
:
0
,
"rotate"
:
0.52
}]},{
"name"
:
"右手2"
,
"rotateFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
-8.04
},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
-8.04
},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
-8.04
},{
"duration"
:
0
}]},{
"name"
:
"右手2_0"
,
"rotateFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
7.46
},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
7.46
},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
7.46
},{
"duration"
:
0
}]},{
"name"
:
"图层40"
,
"scaleFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"x"
:
1.05
,
"y"
:
1.05
},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"x"
:
1.05
,
"y"
:
1.05
},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"x"
:
1.05
,
"y"
:
1.05
},{
"duration"
:
0
}]},{
"name"
:
"图层_44"
,
"scaleFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"x"
:
1.05
,
"y"
:
1.05
},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"x"
:
1.05
,
"y"
:
1.05
},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"x"
:
1.05
,
"y"
:
1.05
},{
"duration"
:
0
}]},{
"name"
:
"图层_36"
,
"scaleFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"x"
:
0.2
,
"y"
:
0.2
},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"x"
:
0.2
,
"y"
:
0.2
},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"x"
:
0.2
,
"y"
:
0.2
},{
"duration"
:
0
}]},{
"name"
:
"图层 36_0"
,
"scaleFrame"
:[{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"x"
:
0.2
,
"y"
:
0.2
},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"x"
:
0.2
,
"y"
:
0.2
},{
"duration"
:
6
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"x"
:
0.2
,
"y"
:
0.2
},{
"duration"
:
0
}]}],
"slot"
:[{
"name"
:
"图层_73"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"图层 61_0"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"图层_65"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"图层44"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"图层_64"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"图层38(2)"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"图层_68"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"身体"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"图层_72"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"图层_61"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"头"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"嘴巴"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"眼睛"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"图层_74"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"眼镜"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"右脚"
,
"displayFrame"
:[{
"duration"
:
6
,
"value"
:
1
},{
"duration"
:
6
},{
"duration"
:
6
,
"value"
:
1
},{
"duration"
:
6
},{
"duration"
:
6
,
"value"
:
1
},{
"duration"
:
6
},{
"duration"
:
0
,
"value"
:
1
}]},{
"name"
:
"右腿"
,
"displayFrame"
:[{
"duration"
:
6
,
"value"
:
1
},{
"duration"
:
6
},{
"duration"
:
6
,
"value"
:
1
},{
"duration"
:
6
},{
"duration"
:
6
,
"value"
:
1
},{
"duration"
:
6
},{
"duration"
:
0
,
"value"
:
1
}]},{
"name"
:
"左脚"
,
"displayFrame"
:[{
"duration"
:
6
},{
"duration"
:
6
,
"value"
:
1
},{
"duration"
:
6
},{
"duration"
:
6
,
"value"
:
1
},{
"duration"
:
6
},{
"duration"
:
6
,
"value"
:
1
},{
"duration"
:
0
}]},{
"name"
:
"左腿"
,
"displayFrame"
:[{
"duration"
:
6
},{
"duration"
:
6
,
"value"
:
1
},{
"duration"
:
6
},{
"duration"
:
6
,
"value"
:
1
},{
"duration"
:
6
},{
"duration"
:
6
,
"value"
:
1
},{
"duration"
:
0
}]},{
"name"
:
"图层_44"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
5
}]},{
"name"
:
"右手2_0"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
6
}]},{
"name"
:
"图层40"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
5
}]},{
"name"
:
"右手2"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
6
}]},{
"name"
:
"张嘴"
,
"displayFrame"
:[{
"duration"
:
6
,
"value"
:
6
},{
"duration"
:
24
,
"value"
:
5
},{
"duration"
:
6
,
"value"
:
6
}]},{
"name"
:
"睁眼"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
5
}]},{
"name"
:
"图层_45"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"图层_25"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"左脚1"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"左腿1"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"右脚1"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"右腿1"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"图层42"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"图层47"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"身体2"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"图层34"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"头2"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"睁眼1"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"眉毛1"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"嘴巴2"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"已插入图像"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"已插入图像_11"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"已插入图像_01"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"右手2_01"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]},{
"name"
:
"右手21"
,
"displayFrame"
:[{
"duration"
:
36
,
"value"
:
-1
}]}],
"zOrder"
:{
"frame"
:[{
"duration"
:
6
,
"zOrder"
:[
18
,
1
,
23
,
3
,
27
,
-6
,
28
,
-5
,
36
,
12
,
37
,
0
,
38
,
8
,
39
,
8
,
40
,
5
,
45
,
5
,
46
,
-7
,
47
,
-5
,
48
,
-10
,
50
,
-9
,
51
,
1
]},{
"duration"
:
6
,
"zOrder"
:[
18
,
2
,
23
,
3
,
27
,
-6
,
28
,
-5
,
36
,
12
,
37
,
0
,
38
,
8
,
39
,
8
,
40
,
5
,
45
,
5
,
46
,
-7
,
47
,
-5
,
48
,
-10
,
50
,
-9
]},{
"duration"
:
6
,
"zOrder"
:[
18
,
2
,
23
,
3
,
27
,
-8
,
28
,
-5
,
36
,
9
,
40
,
-1
,
41
,
8
,
42
,
4
,
44
,
-7
,
46
,
-6
,
48
,
-12
,
49
,
-2
,
50
,
-8
,
51
,
1
]},{
"duration"
:
6
,
"zOrder"
:[
18
,
3
,
23
,
3
,
27
,
-8
,
28
,
-5
,
36
,
9
,
40
,
-1
,
41
,
8
,
42
,
4
,
44
,
-7
,
46
,
-6
,
48
,
-12
,
49
,
-2
,
50
,
-8
]},{
"duration"
:
6
,
"zOrder"
:[
18
,
2
,
23
,
3
,
27
,
-8
,
28
,
-5
,
36
,
3
,
38
,
4
,
39
,
5
,
40
,
0
,
41
,
6
,
42
,
-1
,
49
,
-6
]},{
"duration"
:
6
,
"zOrder"
:[
18
,
3
,
23
,
3
,
27
,
-8
,
28
,
-5
,
36
,
3
,
38
,
4
,
39
,
5
,
40
,
0
,
41
,
6
,
42
,
-1
,
49
,
-6
,
51
,
1
]},{
"duration"
:
0
,
"zOrder"
:[
18
,
2
,
23
,
3
,
27
,
-8
,
28
,
-5
,
36
,
4
,
37
,
12
,
38
,
12
,
40
,
6
,
41
,
2
,
42
,
0
,
44
,
-8
,
49
,
-5
,
51
,
1
]}]}},{
"duration"
:
60
,
"playTimes"
:
0
,
"name"
:
"talk"
,
"bone"
:[{
"name"
:
"good"
,
"translateFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
-8.75
},{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
-8.75
},{
"duration"
:
0
}],
"rotateFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
4.06
},{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
4.06
},{
"duration"
:
0
}]},{
"name"
:
"身体1"
,
"rotateFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
-2.44
},{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
-2.44
},{
"duration"
:
0
}],
"scaleFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
1.05
},{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
1.05
},{
"duration"
:
0
}]},{
"name"
:
"左腿"
,
"translateFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
-0.27
,
"y"
:
-3.14
},{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
-0.27
,
"y"
:
-3.14
},{
"duration"
:
0
}]},{
"name"
:
"头1"
,
"rotateFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
3.99
},{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
3.99
},{
"duration"
:
0
}]},{
"name"
:
"图层34"
,
"translateFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
0.26
,
"y"
:
8.02
},{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
0.26
,
"y"
:
8.02
},{
"duration"
:
0
}]},{
"name"
:
"右手2"
,
"rotateFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
16.95
},{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
16.95
},{
"duration"
:
0
}]},{
"name"
:
"右手2_0"
,
"translateFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
2.71
,
"y"
:
-2.29
},{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
2.71
,
"y"
:
-2.29
},{
"duration"
:
0
}],
"rotateFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
-2.34
},{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
-2.34
},{
"duration"
:
0
}]},{
"name"
:
"眉毛"
,
"translateFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
6.43
,
"y"
:
-0.52
},{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
6.43
,
"y"
:
-0.52
},{
"duration"
:
0
}]},{
"name"
:
"左脚"
,
"rotateFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
1.83
},{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
1.83
},{
"duration"
:
0
}]},{
"name"
:
"右脚"
,
"rotateFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
-5.7
},{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
-5.7
},{
"duration"
:
0
}]},{
"name"
:
"图层_44"
,
"rotateFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
-3.42
},{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
-3.42
},{
"duration"
:
0
}]},{
"name"
:
"图层40"
,
"translateFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
13.06
,
"y"
:
-4.53
},{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
13.06
,
"y"
:
-4.53
},{
"duration"
:
0
}],
"rotateFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
3.98
},{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
3.98
},{
"duration"
:
0
}],
"scaleFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
1.05
,
"y"
:
1.05
},{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
1.05
,
"y"
:
1.05
},{
"duration"
:
0
}]},{
"name"
:
"bone_ikTarget1"
,
"translateFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
-3.52
},{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
-3.52
},{
"duration"
:
0
}]}],
"slot"
:[{
"name"
:
"图层_73"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层 61_0"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层_65"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层44"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层_64"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层38(2)"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层_68"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"身体"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层_72"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层_61"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"头"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"嘴巴"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"眼睛"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层_74"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"眼镜"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层_44"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
7
}]},{
"name"
:
"右手2_0"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
9
}]},{
"name"
:
"图层40"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
7
}]},{
"name"
:
"右手2"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
8
}]},{
"name"
:
"张嘴"
,
"displayFrame"
:[{
"duration"
:
5
,
"value"
:
9
},{
"duration"
:
5
,
"value"
:
10
},{
"duration"
:
5
,
"value"
:
9
},{
"duration"
:
5
,
"value"
:
10
},{
"duration"
:
5
,
"value"
:
9
},{
"duration"
:
5
,
"value"
:
10
},{
"duration"
:
5
,
"value"
:
9
},{
"duration"
:
5
,
"value"
:
10
},{
"duration"
:
5
,
"value"
:
9
},{
"duration"
:
5
,
"value"
:
10
},{
"duration"
:
5
,
"value"
:
9
},{
"duration"
:
5
,
"value"
:
10
},{
"duration"
:
0
,
"value"
:
9
}]},{
"name"
:
"睁眼"
,
"displayFrame"
:[{
"duration"
:
3
,
"value"
:
1
},{
"duration"
:
3
,
"value"
:
2
},{
"duration"
:
3
,
"value"
:
3
},{
"duration"
:
3
,
"value"
:
2
},{
"duration"
:
21
,
"value"
:
1
},{
"duration"
:
3
,
"value"
:
2
},{
"duration"
:
3
,
"value"
:
3
},{
"duration"
:
3
,
"value"
:
2
},{
"duration"
:
18
,
"value"
:
1
}]},{
"name"
:
"图层 36_0"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层_36"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层_45"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层_25"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"左脚1"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"左腿1"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"右脚1"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"右腿1"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层42"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层47"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"身体2"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"图层34"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"头2"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"睁眼1"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"眉毛1"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"嘴巴2"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"已插入图像"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"已插入图像_11"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"已插入图像_01"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"右手2_01"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]},{
"name"
:
"右手21"
,
"displayFrame"
:[{
"duration"
:
60
,
"value"
:
-1
}]}],
"ik"
:[{
"name"
:
"bone_ik1"
,
"frame"
:[{
"duration"
:
30
,
"tweenEasing"
:
0
},{
"duration"
:
30
,
"tweenEasing"
:
0
},{
"duration"
:
0
}]}],
"zOrder"
:{
"frame"
:[{
"duration"
:
30
,
"zOrder"
:[
21
,
7
,
27
,
-7
]},{
"duration"
:
30
,
"zOrder"
:[
21
,
6
]}]}},{
"duration"
:
70
,
"playTimes"
:
0
,
"name"
:
"invite"
,
"bone"
:[{
"name"
:
"good"
,
"translateFrame"
:[{
"duration"
:
10
,
"curve"
:[
0.5
,
0
,
1
,
1
]},{
"duration"
:
6
,
"curve"
:[
0
,
0
,
0.5
,
1
],
"y"
:
17.56
},{
"duration"
:
54
}]},{
"name"
:
"身体1"
,
"translateFrame"
:[{
"duration"
:
10
,
"curve"
:[
0.5
,
0
,
1
,
1
]},{
"duration"
:
6
,
"curve"
:[
0
,
0
,
0.5
,
1
],
"x"
:
-0.06
,
"y"
:
-4.17
},{
"duration"
:
14
,
"curve"
:[
0.5
,
0
,
1
,
1
],
"x"
:
0.08
,
"y"
:
5.38
},{
"duration"
:
40
}],
"rotateFrame"
:[{
"duration"
:
30
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
-0.48
},{
"duration"
:
10
}],
"scaleFrame"
:[{
"duration"
:
10
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"x"
:
0.95
,
"y"
:
1.05
},{
"duration"
:
14
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
1.02
,
"y"
:
1.02
},{
"duration"
:
10
}]},{
"name"
:
"头1"
,
"translateFrame"
:[{
"duration"
:
10
,
"curve"
:[
0.5
,
0
,
1
,
1
]},{
"duration"
:
6
,
"curve"
:[
0
,
0
,
0.5
,
1
],
"x"
:
-5.44
,
"y"
:
0.03
},{
"duration"
:
14
,
"curve"
:[
0.5
,
0
,
1
,
1
],
"x"
:
-1.13
},{
"duration"
:
40
}],
"rotateFrame"
:[{
"duration"
:
10
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
-7.39
},{
"duration"
:
14
,
"tweenEasing"
:
0
,
"rotate"
:
5.41
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
-4.52
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
3.9
},{
"duration"
:
10
,
"tweenEasing"
:
0
,
"rotate"
:
-4.52
},{
"duration"
:
0
}],
"scaleFrame"
:[{
"duration"
:
10
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"x"
:
1.05
,
"y"
:
0.95
},{
"duration"
:
54
}]},{
"name"
:
"右手2_0"
,
"translateFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
7.43
,
"y"
:
-0.04
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
9.53
,
"y"
:
-10.73
},{
"duration"
:
30
,
"tweenEasing"
:
0
,
"x"
:
-4.4
,
"y"
:
-10.65
},{
"duration"
:
10
,
"tweenEasing"
:
0
,
"x"
:
-4.4
,
"y"
:
-10.65
},{
"duration"
:
0
,
"x"
:
7.43
,
"y"
:
-0.04
}],
"rotateFrame"
:[{
"duration"
:
10
,
"tweenEasing"
:
0
},{
"duration"
:
5
,
"tweenEasing"
:
0
,
"rotate"
:
-10.22
},{
"tweenEasing"
:
0
,
"rotate"
:
-6.01
},{
"duration"
:
14
,
"tweenEasing"
:
0
,
"rotate"
:
-2.07
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
10.52
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
-6.47
},{
"duration"
:
10
,
"tweenEasing"
:
0
,
"rotate"
:
10.52
},{
"duration"
:
0
}]},{
"name"
:
"右手2"
,
"translateFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
7.43
,
"y"
:
-0.04
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
14.01
,
"y"
:
11.67
},{
"duration"
:
30
,
"tweenEasing"
:
0
,
"x"
:
0.07
,
"y"
:
11.75
},{
"duration"
:
10
,
"tweenEasing"
:
0
,
"x"
:
0.07
,
"y"
:
11.75
},{
"duration"
:
0
,
"x"
:
7.43
,
"y"
:
-0.04
}],
"rotateFrame"
:[{
"duration"
:
10
,
"tweenEasing"
:
0
},{
"duration"
:
5
,
"tweenEasing"
:
0
,
"rotate"
:
11.97
},{
"tweenEasing"
:
0
,
"rotate"
:
7.6
},{
"duration"
:
14
,
"tweenEasing"
:
0
,
"rotate"
:
4.62
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
-12.48
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
-2.31
},{
"duration"
:
10
,
"tweenEasing"
:
0
,
"rotate"
:
-12.48
},{
"duration"
:
0
}]},{
"name"
:
"左脚"
,
"rotateFrame"
:[{
"duration"
:
10
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
19.83
},{
"duration"
:
54
}]},{
"name"
:
"右脚"
,
"rotateFrame"
:[{
"duration"
:
10
,
"tweenEasing"
:
0
},{
"duration"
:
6
,
"tweenEasing"
:
0
,
"rotate"
:
-13.91
},{
"duration"
:
54
}]}],
"slot"
:[{
"name"
:
"图层_73"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"图层 61_0"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"图层_65"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"图层44"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"图层_64"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"图层38(2)"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"图层_68"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"身体"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"图层_72"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"图层_61"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"头"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"嘴巴"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"眼睛"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"图层_74"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"眼镜"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"图层_44"
,
"displayFrame"
:[{
"duration"
:
16
,
"value"
:
2
},{
"duration"
:
54
,
"value"
:
6
},{
"duration"
:
0
,
"value"
:
2
}]},{
"name"
:
"右手2_0"
,
"displayFrame"
:[{
"duration"
:
16
,
"value"
:
3
},{
"duration"
:
54
,
"value"
:
7
},{
"duration"
:
0
,
"value"
:
3
}]},{
"name"
:
"图层40"
,
"displayFrame"
:[{
"duration"
:
16
},{
"duration"
:
54
,
"value"
:
6
},{
"duration"
:
0
}]},{
"name"
:
"右手2"
,
"displayFrame"
:[{
"duration"
:
16
,
"value"
:
3
},{
"duration"
:
54
,
"value"
:
7
},{
"duration"
:
0
,
"value"
:
3
}]},{
"name"
:
"眉毛"
,
"displayFrame"
:[{
"duration"
:
16
,
"value"
:
3
},{
"duration"
:
54
,
"value"
:
2
}]},{
"name"
:
"张嘴"
,
"displayFrame"
:[{
"duration"
:
10
,
"value"
:
7
},{
"duration"
:
60
,
"value"
:
8
}]},{
"name"
:
"睁眼"
,
"displayFrame"
:[{
"duration"
:
13
,
"value"
:
1
},{
"duration"
:
3
,
"value"
:
6
},{
"duration"
:
29
,
"value"
:
1
},{
"duration"
:
15
,
"value"
:
6
},{
"duration"
:
10
,
"value"
:
1
}]},{
"name"
:
"图层 36_0"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"图层_36"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"图层_45"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"图层_25"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"左脚1"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"左腿1"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"右脚1"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"右腿1"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"图层42"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"图层47"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"身体2"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"图层34"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"头2"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"睁眼1"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"眉毛1"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"嘴巴2"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"已插入图像"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"已插入图像_11"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"已插入图像_01"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"右手2_01"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]},{
"name"
:
"右手21"
,
"displayFrame"
:[{
"duration"
:
70
,
"value"
:
-1
}]}],
"ik"
:[{
"name"
:
"bone_ik1"
,
"frame"
:[{
"duration"
:
30
,
"tweenEasing"
:
0
},{
"duration"
:
30
,
"tweenEasing"
:
0
},{
"duration"
:
10
,
"tweenEasing"
:
0
},{
"duration"
:
0
}]},{
"name"
:
"bone_ik"
,
"frame"
:[{
"duration"
:
30
,
"tweenEasing"
:
0
,
"bendPositive"
:
false
},{
"duration"
:
30
,
"tweenEasing"
:
0
,
"bendPositive"
:
false
},{
"duration"
:
10
,
"tweenEasing"
:
0
,
"bendPositive"
:
false
},{
"duration"
:
0
,
"bendPositive"
:
false
}]}],
"zOrder"
:{
"frame"
:[{
"duration"
:
16
,
"zOrder"
:[
27
,
-7
,
28
,
-6
]},{
"duration"
:
54
,
"zOrder"
:[
21
,
3
,
22
,
4
,
23
,
-1
,
26
,
1
]},{
"duration"
:
0
,
"zOrder"
:[
27
,
-7
,
28
,
-6
]}]}},{
"duration"
:
30
,
"playTimes"
:
0
,
"name"
:
"wave"
,
"bone"
:[{
"name"
:
"bone_ikTarget"
,
"translateFrame"
:[{
"duration"
:
8
,
"tweenEasing"
:
0
},{
"duration"
:
7
,
"tweenEasing"
:
0
},{
"duration"
:
8
,
"tweenEasing"
:
0
,
"x"
:
-85.09
,
"y"
:
-94.91
},{
"duration"
:
7
,
"tweenEasing"
:
0
,
"x"
:
-8.25
,
"y"
:
-37.81
},{
"duration"
:
0
}]},{
"name"
:
"good"
,
"translateFrame"
:[{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"x"
:
7.02
,
"y"
:
6.58
},{
"duration"
:
7
,
"tweenEasing"
:
0
,
"x"
:
14.04
,
"y"
:
4.52
},{
"duration"
:
7
,
"tweenEasing"
:
0
,
"x"
:
9.36
,
"y"
:
-69.19
},{
"duration"
:
8
,
"tweenEasing"
:
0
,
"x"
:
4.99
,
"y"
:
-42.3
},{
"duration"
:
0
}],
"rotateFrame"
:[{
"duration"
:
8
,
"tweenEasing"
:
0
},{
"duration"
:
22
,
"tweenEasing"
:
0
,
"rotate"
:
-2.24
},{
"duration"
:
0
}]},{
"name"
:
"bone_ikTarget1"
,
"translateFrame"
:[{
"duration"
:
8
,
"tweenEasing"
:
0
},{
"duration"
:
7
,
"tweenEasing"
:
0
},{
"duration"
:
8
,
"tweenEasing"
:
0
,
"x"
:
91.58
,
"y"
:
-93.47
},{
"duration"
:
7
,
"tweenEasing"
:
0
,
"x"
:
28.31
,
"y"
:
-41.89
},{
"duration"
:
0
}]},{
"name"
:
"身体1"
,
"translateFrame"
:[{
"duration"
:
8
,
"tweenEasing"
:
0
},{
"duration"
:
22
,
"tweenEasing"
:
0
,
"x"
:
0.19
,
"y"
:
-7.92
},{
"duration"
:
0
}],
"rotateFrame"
:[{
"duration"
:
8
,
"tweenEasing"
:
0
},{
"duration"
:
22
,
"tweenEasing"
:
0
,
"rotate"
:
-3.15
},{
"duration"
:
0
}]},{
"name"
:
"右腿"
,
"translateFrame"
:[{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"x"
:
14.06
,
"y"
:
0.2
},{
"duration"
:
7
,
"tweenEasing"
:
0
,
"x"
:
12.78
,
"y"
:
0.31
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
9.63
,
"y"
:
-4.89
},{
"duration"
:
0
}]},{
"name"
:
"左腿"
,
"translateFrame"
:[{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"x"
:
-4.69
,
"y"
:
-0.08
},{
"duration"
:
7
,
"tweenEasing"
:
0
,
"x"
:
-1.7
,
"y"
:
-0.04
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
-1.15
,
"y"
:
-0.88
},{
"duration"
:
0
}]},{
"name"
:
"头1"
,
"translateFrame"
:[{
"duration"
:
8
,
"tweenEasing"
:
0
,
"x"
:
5.62
,
"y"
:
22.35
},{
"duration"
:
7
,
"tweenEasing"
:
0
,
"x"
:
-6.41
,
"y"
:
14.83
},{
"duration"
:
8
,
"tweenEasing"
:
0
,
"x"
:
-4.38
,
"y"
:
9.69
},{
"duration"
:
7
,
"tweenEasing"
:
0
,
"x"
:
5.79
,
"y"
:
15.44
},{
"duration"
:
0
,
"x"
:
5.62
,
"y"
:
22.35
}],
"rotateFrame"
:[{
"duration"
:
8
,
"tweenEasing"
:
0
,
"rotate"
:
-19.24
},{
"duration"
:
7
,
"tweenEasing"
:
0
,
"rotate"
:
3.69
},{
"duration"
:
8
,
"tweenEasing"
:
0
,
"rotate"
:
-18.85
},{
"duration"
:
7
,
"tweenEasing"
:
0
,
"rotate"
:
-25.71
},{
"duration"
:
0
,
"rotate"
:
-19.24
}]},{
"name"
:
"右手2_0"
,
"rotateFrame"
:[{
"duration"
:
8
,
"tweenEasing"
:
0
},{
"duration"
:
7
,
"tweenEasing"
:
0
,
"rotate"
:
51.63
},{
"duration"
:
8
,
"tweenEasing"
:
0
,
"rotate"
:
5.78
},{
"duration"
:
7
,
"tweenEasing"
:
0
,
"rotate"
:
-12.85
},{
"duration"
:
0
}]},{
"name"
:
"右手2"
,
"rotateFrame"
:[{
"duration"
:
8
,
"tweenEasing"
:
0
},{
"duration"
:
7
,
"tweenEasing"
:
0
,
"rotate"
:
-14.49
},{
"duration"
:
8
,
"tweenEasing"
:
0
,
"rotate"
:
12.1
},{
"duration"
:
7
,
"tweenEasing"
:
0
,
"rotate"
:
25.97
},{
"duration"
:
0
}]},{
"name"
:
"左脚"
,
"rotateFrame"
:[{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"rotate"
:
6.49
},{
"duration"
:
7
,
"tweenEasing"
:
0
,
"rotate"
:
4.33
},{
"duration"
:
7
,
"tweenEasing"
:
0
,
"rotate"
:
2.74
},{
"duration"
:
8
,
"tweenEasing"
:
0
,
"rotate"
:
7.44
},{
"duration"
:
0
}]},{
"name"
:
"右脚"
,
"rotateFrame"
:[{
"duration"
:
4
,
"tweenEasing"
:
0
},{
"duration"
:
4
,
"tweenEasing"
:
0
,
"rotate"
:
-5.69
},{
"duration"
:
7
,
"tweenEasing"
:
0
,
"rotate"
:
-5.47
},{
"duration"
:
7
,
"tweenEasing"
:
0
,
"rotate"
:
1.78
},{
"duration"
:
8
,
"tweenEasing"
:
0
,
"rotate"
:
3.26
},{
"duration"
:
0
}]},{
"name"
:
"bone"
,
"rotateFrame"
:[{
"duration"
:
8
,
"tweenEasing"
:
0
},{
"duration"
:
7
,
"tweenEasing"
:
0
,
"rotate"
:
-15.05
},{
"duration"
:
8
,
"tweenEasing"
:
0
,
"rotate"
:
13.12
},{
"duration"
:
7
,
"tweenEasing"
:
0
,
"rotate"
:
-3.63
},{
"duration"
:
0
}]}],
"slot"
:[{
"name"
:
"图层_73"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层 61_0"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层_65"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层44"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层_64"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层38(2)"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层_68"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"身体"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层_72"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层_61"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"头"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"嘴巴"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"眼睛"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层_74"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"眼镜"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"右手2"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
9
}]},{
"name"
:
"右手2_0"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
10
}]},{
"name"
:
"张嘴"
,
"displayFrame"
:[{
"duration"
:
8
,
"value"
:
11
},{
"duration"
:
15
,
"value"
:
12
},{
"duration"
:
7
,
"value"
:
11
},{
"duration"
:
0
,
"value"
:
12
}]},{
"name"
:
"睁眼"
,
"displayFrame"
:[{
"duration"
:
8
,
"value"
:
8
},{
"duration"
:
15
,
"value"
:
9
},{
"duration"
:
7
,
"value"
:
8
}]},{
"name"
:
"图层 36_0"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层_36"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"左脚1"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"左腿1"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"右脚1"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"右腿1"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层42"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层47"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"身体2"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层34"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"头2"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"睁眼1"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"眉毛1"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"嘴巴2"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"已插入图像"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"已插入图像_11"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"已插入图像_01"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"右手2_01"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"右手21"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]}],
"ik"
:[{
"name"
:
"bone_ik1"
,
"frame"
:[{
"duration"
:
30
,
"tweenEasing"
:
0
},{
"duration"
:
0
}]},{
"name"
:
"bone_ik"
,
"frame"
:[{
"duration"
:
30
,
"tweenEasing"
:
0
,
"bendPositive"
:
false
},{
"duration"
:
0
,
"bendPositive"
:
false
}]}],
"zOrder"
:{
"frame"
:[{
"duration"
:
30
,
"zOrder"
:[
27
,
-7
,
28
,
-6
]}]}},{
"duration"
:
30
,
"playTimes"
:
0
,
"name"
:
"point"
,
"bone"
:[{
"name"
:
"身体1"
,
"translateFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
-0.07
,
"y"
:
-4.63
},{
"duration"
:
0
}],
"rotateFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
-4.77
},{
"duration"
:
0
}],
"scaleFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
1.03
},{
"duration"
:
0
}]},{
"name"
:
"左腿"
,
"rotateFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
4.94
},{
"duration"
:
0
}]},{
"name"
:
"头1"
,
"translateFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
5.61
,
"y"
:
-0.03
},{
"duration"
:
0
}],
"rotateFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
6.45
},{
"duration"
:
0
}]},{
"name"
:
"右手2_0"
,
"rotateFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
7.52
},{
"duration"
:
0
}]},{
"name"
:
"右手2"
,
"rotateFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
-10.7
},{
"duration"
:
0
}],
"scaleFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"y"
:
0.95
},{
"duration"
:
0
}]},{
"name"
:
"图层40"
,
"rotateFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
2.43
},{
"duration"
:
0
}]},{
"name"
:
"图层_44"
,
"rotateFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
-8.25
},{
"duration"
:
0
}]}],
"slot"
:[{
"name"
:
"图层_73"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层 61_0"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层_65"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层44"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层_64"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层38(2)"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层_68"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"身体"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层_72"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层_61"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"头"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"嘴巴"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"眼睛"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"眼镜"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"耳套"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"右脚"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"右腿"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"左脚"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层_45"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"左腿"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"右手2_0"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层_44"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层34_0"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"右手2"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层40"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层47_0"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"身体1"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层_25"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"头1"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"眉毛"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"张嘴"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"睁眼"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层 36_0"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"图层_36"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"嘴巴2"
,
"displayFrame"
:[{
"duration"
:
5
,
"value"
:
1
},{
"duration"
:
5
},{
"duration"
:
5
,
"value"
:
1
},{
"duration"
:
5
},{
"duration"
:
5
,
"value"
:
1
},{
"duration"
:
5
},{
"duration"
:
0
,
"value"
:
1
}]},{
"name"
:
"睁眼1"
,
"displayFrame"
:[{
"duration"
:
3
},{
"duration"
:
3
,
"value"
:
1
},{
"duration"
:
3
,
"value"
:
2
},{
"duration"
:
3
,
"value"
:
1
},{
"duration"
:
18
}]},{
"name"
:
"右手2_01"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]},{
"name"
:
"右手21"
,
"displayFrame"
:[{
"duration"
:
30
,
"value"
:
-1
}]}],
"ik"
:[{
"name"
:
"bone_ik1"
,
"frame"
:[{
"duration"
:
30
,
"tweenEasing"
:
0
},{
"duration"
:
0
}]},{
"name"
:
"bone_ik"
,
"frame"
:[{
"duration"
:
30
,
"tweenEasing"
:
0
,
"bendPositive"
:
false
},{
"duration"
:
0
,
"bendPositive"
:
false
}]}],
"zOrder"
:{
"frame"
:[{
"duration"
:
30
,
"zOrder"
:[
49
,
1
]}]}},{
"duration"
:
90
,
"playTimes"
:
0
,
"name"
:
"normal"
,
"bone"
:[{
"name"
:
"身体1"
,
"scaleFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
1.03
},{
"duration"
:
10
,
"tweenEasing"
:
0
},{
"duration"
:
10
,
"tweenEasing"
:
0
,
"x"
:
1.02
},{
"duration"
:
10
,
"tweenEasing"
:
0
},{
"duration"
:
10
,
"tweenEasing"
:
0
,
"x"
:
1.02
},{
"duration"
:
10
,
"tweenEasing"
:
0
},{
"duration"
:
10
,
"tweenEasing"
:
0
,
"x"
:
1.02
},{
"duration"
:
0
}]},{
"name"
:
"头1"
,
"translateFrame"
:[{
"duration"
:
15
,
"curve"
:[
0.5
,
0
,
1
,
1
]},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"x"
:
2.67
,
"y"
:
-0.02
},{
"duration"
:
10
,
"curve"
:[
0.5
,
0
,
1
,
1
]},{
"duration"
:
40
,
"tweenEasing"
:
0
,
"x"
:
2.67
,
"y"
:
-0.02
},{
"duration"
:
10
,
"tweenEasing"
:
0
,
"x"
:
2.67
,
"y"
:
-0.02
},{
"duration"
:
0
}],
"rotateFrame"
:[{
"duration"
:
30
,
"tweenEasing"
:
0
},{
"duration"
:
10
,
"tweenEasing"
:
0
},{
"duration"
:
10
,
"tweenEasing"
:
0
,
"rotate"
:
8.26
},{
"duration"
:
10
,
"tweenEasing"
:
0
,
"rotate"
:
16.55
},{
"duration"
:
10
,
"tweenEasing"
:
0
,
"rotate"
:
8.26
},{
"duration"
:
10
,
"tweenEasing"
:
0
,
"rotate"
:
16.55
},{
"duration"
:
10
,
"tweenEasing"
:
0
,
"rotate"
:
8.26
},{
"duration"
:
0
}]},{
"name"
:
"右手2_0"
,
"translateFrame"
:[{
"duration"
:
90
,
"x"
:
7.43
,
"y"
:
-0.04
}],
"rotateFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
3.36
},{
"duration"
:
10
,
"tweenEasing"
:
0
},{
"duration"
:
10
,
"tweenEasing"
:
0
,
"rotate"
:
3.36
},{
"duration"
:
10
,
"tweenEasing"
:
0
},{
"duration"
:
10
,
"tweenEasing"
:
0
,
"rotate"
:
3.36
},{
"duration"
:
11
,
"tweenEasing"
:
0
},{
"duration"
:
9
,
"tweenEasing"
:
0
,
"rotate"
:
3.36
},{
"duration"
:
0
}]},{
"name"
:
"右手2"
,
"translateFrame"
:[{
"duration"
:
30
,
"tweenEasing"
:
0
,
"x"
:
7.43
,
"y"
:
-0.04
},{
"tweenEasing"
:
0
,
"x"
:
7.43
,
"y"
:
-0.04
},{
"duration"
:
8
,
"tweenEasing"
:
0
,
"x"
:
-9.37
,
"y"
:
2.31
},{
"x"
:
-9.29
,
"y"
:
15.36
},{
"duration"
:
20
,
"tweenEasing"
:
0
,
"x"
:
-6.11
,
"y"
:
20.31
},{
"duration"
:
21
,
"tweenEasing"
:
0
,
"x"
:
-6.11
,
"y"
:
20.31
},{
"duration"
:
8
,
"tweenEasing"
:
0
,
"x"
:
-9.29
,
"y"
:
15.36
},{
"x"
:
-9.37
,
"y"
:
2.31
},{
"duration"
:
0
,
"x"
:
7.43
,
"y"
:
-0.04
}],
"rotateFrame"
:[{
"duration"
:
15
,
"tweenEasing"
:
0
},{
"duration"
:
15
,
"tweenEasing"
:
0
,
"rotate"
:
-3.3
},{},{
"duration"
:
8
,
"tweenEasing"
:
0
,
"rotate"
:
-71.05
},{
"rotate"
:
-14.01
},{
"duration"
:
10
,
"tweenEasing"
:
0
,
"rotate"
:
5.84
},{
"duration"
:
10
,
"tweenEasing"
:
0
,
"rotate"
:
-23.35
},{
"duration"
:
10
,
"tweenEasing"
:
0
,
"rotate"
:
5.84
},{
"duration"
:
10
,
"tweenEasing"
:
0
,
"rotate"
:
-23.35
},{
"rotate"
:
5.84
},{
"duration"
:
8
,
"tweenEasing"
:
0
,
"rotate"
:
-14.01
},{
"rotate"
:
-71.05
},{
"duration"
:
0
}]},{
"name"
:
"图层_44"
,
"rotateFrame"
:[{
"duration"
:
30
,
"tweenEasing"
:
0
},{
"duration"
:
10
,
"tweenEasing"
:
0
},{
"duration"
:
10
,
"tweenEasing"
:
0
,
"rotate"
:
3.36
},{
"duration"
:
10
,
"tweenEasing"
:
0
},{
"duration"
:
10
,
"tweenEasing"
:
0
,
"rotate"
:
3.36
},{
"duration"
:
11
,
"tweenEasing"
:
0
},{
"duration"
:
9
,
"tweenEasing"
:
0
,
"rotate"
:
3.36
},{
"duration"
:
0
}]}],
"slot"
:[{
"name"
:
"图层_73"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"图层 61_0"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"图层_65"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"图层44"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"图层_64"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"图层38(2)"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"图层_68"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"身体"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"图层_72"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"图层_61"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"头"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"嘴巴"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"眼睛"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"图层_74"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"眼镜"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"图层_44"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
2
}]},{
"name"
:
"右手2_0"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
3
}]},{
"name"
:
"图层40"
,
"displayFrame"
:[{
"duration"
:
31
},{
"duration"
:
59
,
"value"
:
3
},{
"duration"
:
0
}]},{
"name"
:
"右手2"
,
"displayFrame"
:[{
"duration"
:
31
,
"value"
:
3
},{
"duration"
:
59
,
"value"
:
5
},{
"duration"
:
0
,
"value"
:
3
}]},{
"name"
:
"张嘴"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
7
}]},{
"name"
:
"睁眼"
,
"displayFrame"
:[{
"duration"
:
3
,
"value"
:
1
},{
"duration"
:
3
,
"value"
:
2
},{
"duration"
:
3
,
"value"
:
3
},{
"duration"
:
3
,
"value"
:
2
},{
"duration"
:
28
,
"value"
:
1
},{
"duration"
:
50
,
"value"
:
6
},{
"duration"
:
0
,
"value"
:
1
}]},{
"name"
:
"图层 36_0"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"图层_36"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"图层_45"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"图层_25"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"左脚1"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"左腿1"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"右脚1"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"右腿1"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"图层42"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"图层47"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"身体2"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"图层34"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"头2"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"睁眼1"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"眉毛1"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"嘴巴2"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"已插入图像"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"已插入图像_11"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"已插入图像_01"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"右手2_01"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]},{
"name"
:
"右手21"
,
"displayFrame"
:[{
"duration"
:
90
,
"value"
:
-1
}]}],
"ik"
:[{
"name"
:
"bone_ik1"
,
"frame"
:[{
"duration"
:
30
,
"tweenEasing"
:
0
},{
"duration"
:
60
,
"tweenEasing"
:
0
},{
"duration"
:
0
}]},{
"name"
:
"bone_ik"
,
"frame"
:[{
"duration"
:
30
,
"tweenEasing"
:
0
,
"bendPositive"
:
false
},{
"duration"
:
60
,
"tweenEasing"
:
0
,
"bendPositive"
:
false
},{
"duration"
:
0
,
"bendPositive"
:
false
}]}],
"zOrder"
:{
"frame"
:[{
"duration"
:
90
,
"zOrder"
:[
27
,
-7
,
28
,
-6
]}]}}],
"defaultActions"
:[{
"gotoAndPlay"
:
"run"
}],
"canvas"
:{
"width"
:
1024
,
"height"
:
1024
}}]}
\ No newline at end of file
assets/BOY04/textures/xiaodi/xiaodi_ske_dg07_fanka.json.meta
0 → 100644
View file @
19534f5f
{
"ver": "1.0.1",
"uuid": "1f3903cb-1d5e-4e59-8440-b4cc1eb2e9d7",
"subMetas": {}
}
\ No newline at end of file
assets/BOY04/textures/xiaodi/xiaodi_tex_dg07_fanka.json
0 → 100644
View file @
19534f5f
{
"width"
:
2048
,
"height"
:
2048
,
"name"
:
"小迪"
,
"imagePath"
:
"xiaodi_tex_dg07_fanka.png"
,
"SubTexture"
:[{
"width"
:
79
,
"y"
:
210
,
"height"
:
67
,
"name"
:
"run/图层_73"
,
"x"
:
1394
},{
"width"
:
133
,
"y"
:
810
,
"height"
:
178
,
"name"
:
"run/图层 61_0"
,
"x"
:
1349
},{
"width"
:
30
,
"y"
:
1452
,
"height"
:
71
,
"name"
:
"run/图层_65"
,
"x"
:
479
},{
"width"
:
122
,
"y"
:
1049
,
"height"
:
99
,
"name"
:
"run/图层44"
,
"x"
:
1892
},{
"width"
:
332
,
"y"
:
1
,
"height"
:
207
,
"name"
:
"run/图层_64"
,
"x"
:
1148
},{
"width"
:
82
,
"y"
:
670
,
"height"
:
123
,
"name"
:
"run/图层38(2)"
,
"x"
:
1952
},{
"width"
:
244
,
"y"
:
210
,
"height"
:
266
,
"name"
:
"run/图层_68"
,
"x"
:
1148
},{
"width"
:
249
,
"y"
:
1
,
"height"
:
285
,
"name"
:
"run/身体"
,
"x"
:
897
},{
"width"
:
71
,
"y"
:
1526
,
"height"
:
77
,
"name"
:
"run/图层_66"
,
"x"
:
156
},{
"width"
:
87
,
"y"
:
1607
,
"height"
:
87
,
"name"
:
"run/图层_72"
,
"x"
:
156
},{
"width"
:
241
,
"y"
:
1295
,
"height"
:
127
,
"name"
:
"run/图层_61"
,
"x"
:
1
},{
"width"
:
454
,
"y"
:
1
,
"height"
:
413
,
"name"
:
"run/头"
,
"x"
:
1
},{
"width"
:
48
,
"y"
:
612
,
"height"
:
47
,
"name"
:
"run/嘴巴"
,
"x"
:
1785
},{
"width"
:
64
,
"y"
:
664
,
"height"
:
76
,
"name"
:
"run/眼睛"
,
"x"
:
1033
},{
"width"
:
243
,
"y"
:
428
,
"height"
:
199
,
"name"
:
"run/闭眼"
,
"x"
:
441
},{
"width"
:
64
,
"y"
:
748
,
"height"
:
76
,
"name"
:
"run/半睁"
,
"x"
:
1713
},{
"width"
:
59
,
"y"
:
1547
,
"height"
:
15
,
"name"
:
"run/图层_74"
,
"x"
:
312
},{
"width"
:
242
,
"y"
:
1001
,
"height"
:
130
,
"name"
:
"run/眼镜"
,
"x"
:
599
},{
"width"
:
118
,
"y"
:
928
,
"height"
:
119
,
"name"
:
"run/耳套"
,
"x"
:
1892
},{
"width"
:
126
,
"y"
:
1355
,
"height"
:
95
,
"name"
:
"expect/左脚_0"
,
"x"
:
390
},{
"width"
:
126
,
"y"
:
1165
,
"height"
:
94
,
"name"
:
"good/右脚"
,
"x"
:
1420
},{
"width"
:
196
,
"y"
:
280
,
"height"
:
263
,
"name"
:
"expect/图层 45_0"
,
"x"
:
1394
},{
"width"
:
137
,
"y"
:
734
,
"height"
:
265
,
"name"
:
"good/右腿"
,
"x"
:
636
},{
"width"
:
126
,
"y"
:
1262
,
"height"
:
95
,
"name"
:
"expect/左脚"
,
"x"
:
762
},{
"width"
:
127
,
"y"
:
1086
,
"height"
:
94
,
"name"
:
"good/左脚"
,
"x"
:
1670
},{
"width"
:
196
,
"y"
:
478
,
"height"
:
263
,
"name"
:
"expect/图层_45"
,
"x"
:
1127
},{
"width"
:
143
,
"y"
:
838
,
"height"
:
265
,
"name"
:
"good/左腿"
,
"x"
:
255
},{
"width"
:
153
,
"y"
:
1424
,
"height"
:
193
,
"name"
:
"talk/图层_47"
,
"x"
:
1
},{
"width"
:
153
,
"y"
:
743
,
"height"
:
185
,
"name"
:
"talk/右手前"
,
"x"
:
1064
},{
"width"
:
133
,
"y"
:
930
,
"height"
:
142
,
"name"
:
"good/图层_46"
,
"x"
:
1084
},{
"width"
:
224
,
"y"
:
798
,
"height"
:
199
,
"name"
:
"wave/图层43"
,
"x"
:
838
},{
"width"
:
167
,
"y"
:
314
,
"height"
:
176
,
"name"
:
"expect/图层 37_2"
,
"x"
:
1848
},{
"width"
:
165
,
"y"
:
670
,
"height"
:
165
,
"name"
:
"good/图层 35_0"
,
"x"
:
1785
},{
"width"
:
237
,
"y"
:
314
,
"height"
:
153
,
"name"
:
"cheer/图层_37"
,
"x"
:
1592
},{
"width"
:
128
,
"y"
:
1
,
"height"
:
202
,
"name"
:
"good/图层35_0"
,
"x"
:
1909
},{
"width"
:
199
,
"y"
:
1137
,
"height"
:
121
,
"name"
:
"invite/图层_30"
,
"x"
:
1219
},{
"width"
:
219
,
"y"
:
612
,
"height"
:
134
,
"name"
:
"cheer/图层 46_0"
,
"x"
:
1564
},{
"width"
:
197
,
"y"
:
1033
,
"height"
:
163
,
"name"
:
"good/右手2_0"
,
"x"
:
400
},{
"width"
:
150
,
"y"
:
1218
,
"height"
:
104
,
"name"
:
"good/图层34_0"
,
"x"
:
1017
},{
"width"
:
96
,
"y"
:
1262
,
"height"
:
110
,
"name"
:
"expect/图层 39_1"
,
"x"
:
890
},{
"width"
:
71
,
"y"
:
1374
,
"height"
:
90
,
"name"
:
"good/图层40"
,
"x"
:
834
},{
"width"
:
152
,
"y"
:
915
,
"height"
:
138
,
"name"
:
"invite/图层 31_0"
,
"x"
:
1484
},{
"width"
:
80
,
"y"
:
560
,
"height"
:
102
,
"name"
:
"good/图层_36"
,
"x"
:
1033
},{
"width"
:
88
,
"y"
:
1421
,
"height"
:
92
,
"name"
:
"talk/图层42"
,
"x"
:
608
},{
"width"
:
100
,
"y"
:
1165
,
"height"
:
92
,
"name"
:
"wave/图层42"
,
"x"
:
1548
},{
"width"
:
90
,
"y"
:
1086
,
"height"
:
87
,
"name"
:
"cheer/图层42_0"
,
"x"
:
1799
},{
"width"
:
88
,
"y"
:
1355
,
"height"
:
92
,
"name"
:
"cheer/图层42_1"
,
"x"
:
518
},{
"width"
:
193
,
"y"
:
629
,
"height"
:
236
,
"name"
:
"good/图层 44_0"
,
"x"
:
441
},{
"width"
:
167
,
"y"
:
492
,
"height"
:
176
,
"name"
:
"expect/图层 37_1"
,
"x"
:
1848
},{
"width"
:
132
,
"y"
:
1074
,
"height"
:
142
,
"name"
:
"good/图层 46_0"
,
"x"
:
1084
},{
"width"
:
199
,
"y"
:
1014
,
"height"
:
121
,
"name"
:
"invite/图层 30_0"
,
"x"
:
1219
},{
"width"
:
165
,
"y"
:
748
,
"height"
:
165
,
"name"
:
"good/图层_35"
,
"x"
:
1546
},{
"width"
:
206
,
"y"
:
1198
,
"height"
:
155
,
"name"
:
"talk/图层_46"
,
"x"
:
400
},{
"width"
:
128
,
"y"
:
810
,
"height"
:
202
,
"name"
:
"good/图层35"
,
"x"
:
1219
},{
"width"
:
252
,
"y"
:
838
,
"height"
:
161
,
"name"
:
"wave/图层43_0"
,
"x"
:
1
},{
"width"
:
219
,
"y"
:
674
,
"height"
:
134
,
"name"
:
"cheer/图层_46"
,
"x"
:
1325
},{
"width"
:
231
,
"y"
:
1001
,
"height"
:
164
,
"name"
:
"cheer/图层 37_0"
,
"x"
:
1
},{
"width"
:
197
,
"y"
:
867
,
"height"
:
164
,
"name"
:
"good/右手2"
,
"x"
:
400
},{
"width"
:
76
,
"y"
:
1505
,
"height"
:
100
,
"name"
:
"good/图层47_0"
,
"x"
:
234
},{
"width"
:
228
,
"y"
:
288
,
"height"
:
270
,
"name"
:
"good/身体"
,
"x"
:
897
},{
"width"
:
149
,
"y"
:
1105
,
"height"
:
174
,
"name"
:
"wave/图层_45"
,
"x"
:
248
},{
"width"
:
96
,
"y"
:
1359
,
"height"
:
110
,
"name"
:
"expect/图层 39_2"
,
"x"
:
736
},{
"width"
:
193
,
"y"
:
560
,
"height"
:
236
,
"name"
:
"good/图层_44"
,
"x"
:
838
},{
"width"
:
90
,
"y"
:
1607
,
"height"
:
84
,
"name"
:
"cheer/图层42"
,
"x"
:
245
},{
"width"
:
79
,
"y"
:
1449
,
"height"
:
102
,
"name"
:
"good/图层 36_0"
,
"x"
:
518
},{
"width"
:
152
,
"y"
:
1133
,
"height"
:
138
,
"name"
:
"invite/图层_31"
,
"x"
:
608
},{
"width"
:
87
,
"y"
:
1471
,
"height"
:
91
,
"name"
:
"cheer/图层42_2"
,
"x"
:
390
},{
"width"
:
84
,
"y"
:
1182
,
"height"
:
84
,
"name"
:
"talk/图层40"
,
"x"
:
1650
},{
"width"
:
86
,
"y"
:
1619
,
"height"
:
84
,
"name"
:
"wave/图层_44"
,
"x"
:
1
},{
"width"
:
71
,
"y"
:
1324
,
"height"
:
90
,
"name"
:
"good/图层40_0"
,
"x"
:
1062
},{
"width"
:
29
,
"y"
:
838
,
"height"
:
20
,
"name"
:
"wave/图层_25"
,
"x"
:
400
},{
"width"
:
438
,
"y"
:
416
,
"height"
:
420
,
"name"
:
"good/头"
,
"x"
:
1
},{
"width"
:
221
,
"y"
:
1564
,
"height"
:
32
,
"name"
:
"expect/眉毛"
,
"x"
:
312
},{
"width"
:
220
,
"y"
:
1357
,
"height"
:
23
,
"name"
:
"invite/眉毛"
,
"x"
:
1357
},{
"width"
:
220
,
"y"
:
1341
,
"height"
:
25
,
"name"
:
"good/眉毛"
,
"x"
:
1135
},{
"width"
:
220
,
"y"
:
1330
,
"height"
:
25
,
"name"
:
"talk/眉毛"
,
"x"
:
1415
},{
"width"
:
43
,
"y"
:
280
,
"height"
:
32
,
"name"
:
"wave/张嘴"
,
"x"
:
1660
},{
"width"
:
44
,
"y"
:
1150
,
"height"
:
17
,
"name"
:
"good/闭嘴"
,
"x"
:
1891
},{
"width"
:
70
,
"y"
:
1505
,
"height"
:
40
,
"name"
:
"cheer/张嘴"
,
"x"
:
312
},{
"width"
:
57
,
"y"
:
902
,
"height"
:
22
,
"name"
:
"cheer/闭嘴"
,
"x"
:
1954
},{
"width"
:
70
,
"y"
:
1133
,
"height"
:
40
,
"name"
:
"expect/张嘴"
,
"x"
:
762
},{
"width"
:
66
,
"y"
:
280
,
"height"
:
26
,
"name"
:
"expect/闭嘴"
,
"x"
:
1592
},{
"width"
:
44
,
"y"
:
990
,
"height"
:
17
,
"name"
:
"invite/闭嘴"
,
"x"
:
1349
},{
"width"
:
44
,
"y"
:
1218
,
"height"
:
26
,
"name"
:
"invite/张嘴"
,
"x"
:
1169
},{
"width"
:
44
,
"y"
:
1452
,
"height"
:
17
,
"name"
:
"talk/闭嘴"
,
"x"
:
390
},{
"width"
:
44
,
"y"
:
990
,
"height"
:
26
,
"name"
:
"talk/张嘴"
,
"x"
:
1420
},{
"width"
:
44
,
"y"
:
1018
,
"height"
:
26
,
"name"
:
"good/张嘴"
,
"x"
:
1420
},{
"width"
:
43
,
"y"
:
1046
,
"height"
:
26
,
"name"
:
"wave/闭嘴"
,
"x"
:
1420
},{
"width"
:
44
,
"y"
:
690
,
"height"
:
26
,
"name"
:
"good/张嘴_0"
,
"x"
:
636
},{
"width"
:
239
,
"y"
:
837
,
"height"
:
89
,
"name"
:
"wave/闭眼"
,
"x"
:
1713
},{
"width"
:
252
,
"y"
:
1007
,
"height"
:
77
,
"name"
:
"good/半睁"
,
"x"
:
1638
},{
"width"
:
245
,
"y"
:
1167
,
"height"
:
126
,
"name"
:
"wave/睁眼_0"
,
"x"
:
1
},{
"width"
:
247
,
"y"
:
1175
,
"height"
:
30
,
"name"
:
"good/闭眼"
,
"x"
:
1799
},{
"width"
:
237
,
"y"
:
545
,
"height"
:
127
,
"name"
:
"wave/睁眼"
,
"x"
:
1325
},{
"width"
:
244
,
"y"
:
1302
,
"height"
:
37
,
"name"
:
"cheer/闭眼"
,
"x"
:
1169
},{
"width"
:
253
,
"y"
:
1183
,
"height"
:
77
,
"name"
:
"expect/睁眼"
,
"x"
:
762
},{
"width"
:
248
,
"y"
:
1086
,
"height"
:
77
,
"name"
:
"good/睁眼"
,
"x"
:
1420
},{
"width"
:
244
,
"y"
:
1261
,
"height"
:
37
,
"name"
:
"invite/闭眼"
,
"x"
:
1403
},{
"width"
:
252
,
"y"
:
928
,
"height"
:
77
,
"name"
:
"good/睁眼_0"
,
"x"
:
1638
},{
"width"
:
39
,
"y"
:
629
,
"height"
:
59
,
"name"
:
"expect/图层 36_0"
,
"x"
:
636
},{
"width"
:
39
,
"y"
:
478
,
"height"
:
59
,
"name"
:
"expect/图层_36"
,
"x"
:
1325
},{
"width"
:
126
,
"y"
:
1324
,
"height"
:
95
,
"name"
:
"point/左脚"
,
"x"
:
608
},{
"width"
:
150
,
"y"
:
428
,
"height"
:
304
,
"name"
:
"point/左腿"
,
"x"
:
686
},{
"width"
:
125
,
"y"
:
205
,
"height"
:
103
,
"name"
:
"point/右脚"
,
"x"
:
1909
},{
"width"
:
186
,
"y"
:
1
,
"height"
:
311
,
"name"
:
"point/右腿"
,
"x"
:
1721
},{
"width"
:
87
,
"y"
:
795
,
"height"
:
105
,
"name"
:
"point/图层42"
,
"x"
:
1954
},{
"width"
:
254
,
"y"
:
469
,
"height"
:
141
,
"name"
:
"point/已插入图像_1"
,
"x"
:
1592
},{
"width"
:
76
,
"y"
:
1424
,
"height"
:
100
,
"name"
:
"point/图层47"
,
"x"
:
156
},{
"width"
:
237
,
"y"
:
1
,
"height"
:
277
,
"name"
:
"point/身体"
,
"x"
:
1482
},{
"width"
:
76
,
"y"
:
1268
,
"height"
:
92
,
"name"
:
"point/图层34"
,
"x"
:
1650
},{
"width"
:
438
,
"y"
:
1
,
"height"
:
425
,
"name"
:
"point/头"
,
"x"
:
457
},{
"width"
:
239
,
"y"
:
1091
,
"height"
:
90
,
"name"
:
"point/睁眼"
,
"x"
:
843
},{
"width"
:
239
,
"y"
:
999
,
"height"
:
90
,
"name"
:
"point/半睁"
,
"x"
:
843
},{
"width"
:
232
,
"y"
:
1260
,
"height"
:
40
,
"name"
:
"point/闭眼"
,
"x"
:
1169
},{
"width"
:
223
,
"y"
:
1300
,
"height"
:
28
,
"name"
:
"point/眉毛"
,
"x"
:
1415
},{
"width"
:
63
,
"y"
:
1183
,
"height"
:
30
,
"name"
:
"point/嘴巴1"
,
"x"
:
1017
},{
"width"
:
24
,
"y"
:
742
,
"height"
:
41
,
"name"
:
"point/嘴巴2"
,
"x"
:
1033
},{
"width"
:
144
,
"y"
:
1295
,
"height"
:
208
,
"name"
:
"point/已插入图像"
,
"x"
:
244
},{
"width"
:
72
,
"y"
:
1324
,
"height"
:
90
,
"name"
:
"point/已插入图像_0"
,
"x"
:
988
}]}
\ No newline at end of file
assets/BOY04/textures/xiaodi/xiaodi_tex_dg07_fanka.json.meta
0 → 100644
View file @
19534f5f
{
"ver": "1.0.1",
"uuid": "6588a98c-c9fc-47e6-9992-d9f5e712b6de",
"subMetas": {}
}
\ No newline at end of file
assets/BOY04/textures/xiaodi/xiaodi_tex_dg07_fanka.png
0 → 100644
View file @
19534f5f
2.58 MB
assets/BOY04/textures/xiaodi/xiaodi_tex_dg07_fanka.png.meta
0 → 100644
View file @
19534f5f
{
"ver": "2.3.5",
"uuid": "dcdb99b1-145a-43a1-949c-e3b36b7426fa",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 2048,
"height": 2048,
"platformSettings": {},
"subMetas": {
"xiaodi_tex_dg07_fanka": {
"ver": "1.0.4",
"uuid": "fe7f7a8f-6f5f-46f7-8219-8565b6bbf1b7",
"rawTextureUuid": "dcdb99b1-145a-43a1-949c-e3b36b7426fa",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 172,
"trimX": 1,
"trimY": 1,
"width": 2045,
"height": 1702,
"rawWidth": 2048,
"rawHeight": 2048,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment