Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hy17_hds
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
hy17_hds
Commits
8b4b07f4
Commit
8b4b07f4
authored
Jun 25, 2023
by
WangFan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加完成处理
parent
4083a9aa
Changes
10
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
394 additions
and
178 deletions
+394
-178
hy17_hds.fire
assets/hy17_hds/scene/hy17_hds.fire
+311
-175
hy17_hds.ts
assets/hy17_hds/scene/hy17_hds.ts
+21
-1
defaultData_hy17_hds.ts
assets/hy17_hds/script/defaultData_hy17_hds.ts
+2
-2
finish.meta
assets/hy17_hds/textures/hy17/ani/finish.meta
+12
-0
finish.png
assets/hy17_hds/textures/hy17/ani/finish/finish.png
+0
-0
finish.png.meta
assets/hy17_hds/textures/hy17/ani/finish/finish.png.meta
+36
-0
finish_ske.json
assets/hy17_hds/textures/hy17/ani/finish/finish_ske.json
+1
-0
finish_ske.json.meta
...ts/hy17_hds/textures/hy17/ani/finish/finish_ske.json.meta
+5
-0
finish_tex.json
assets/hy17_hds/textures/hy17/ani/finish/finish_tex.json
+1
-0
finish_tex.json.meta
...ts/hy17_hds/textures/hy17/ani/finish/finish_tex.json.meta
+5
-0
No files found.
assets/hy17_hds/scene/hy17_hds.fire
View file @
8b4b07f4
This diff is collapsed.
Click to expand it.
assets/hy17_hds/scene/hy17_hds.ts
View file @
8b4b07f4
...
@@ -68,10 +68,14 @@ export default class SceneComponent extends MyCocosSceneComponent {
...
@@ -68,10 +68,14 @@ export default class SceneComponent extends MyCocosSceneComponent {
this
.
time_area
=
pg
.
view
.
find
(
this
.
microphone_area
,
"
time_area
"
)
this
.
time_area
=
pg
.
view
.
find
(
this
.
microphone_area
,
"
time_area
"
)
this
.
time
=
pg
.
view
.
find
(
this
.
time_area
,
"
time
"
)
this
.
time
=
pg
.
view
.
find
(
this
.
time_area
,
"
time
"
)
this
.
coin_area
=
pg
.
view
.
find
(
this
.
layer_game
,
"
coin_area
"
)
this
.
coin_area
=
pg
.
view
.
find
(
this
.
layer_game
,
"
coin_area
"
)
this
.
replay_btn
=
pg
.
view
.
find
(
this
.
layer_finish
,
"
replay_btn
"
)
this
.
next_btn
=
pg
.
view
.
find
(
this
.
layer_finish
,
"
next_btn
"
)
}
}
initListener
()
{
initListener
()
{
pg
.
view
.
touchOn
(
this
.
microphone_area
,
this
.
onTouchRecordEnd
,
this
);
pg
.
view
.
touchOn
(
this
.
microphone_area
,
this
.
onTouchRecordEnd
,
this
);
pg
.
view
.
touchOn
(
this
.
replay_btn
,
this
.
onTouchReplay
,
this
)
pg
.
view
.
touchOn
(
this
.
next_btn
,
this
.
onTouchNext
,
this
)
}
}
initGame
()
{
initGame
()
{
this
.
current
=
-
1
;
this
.
current
=
-
1
;
...
@@ -81,6 +85,8 @@ export default class SceneComponent extends MyCocosSceneComponent {
...
@@ -81,6 +85,8 @@ export default class SceneComponent extends MyCocosSceneComponent {
return
this
.
sentence_list
[
this
.
current
];
return
this
.
sentence_list
[
this
.
current
];
}
}
initSentence
()
{
initSentence
()
{
if
(
!
this
.
sentence_box
)
return
pg
.
view
.
visible
(
this
.
sentence_box
,
true
)
this
.
current
++
;
this
.
current
++
;
if
(
!
this
.
currentQuestion
)
{
if
(
!
this
.
currentQuestion
)
{
this
.
gameOver
();
this
.
gameOver
();
...
@@ -117,7 +123,15 @@ export default class SceneComponent extends MyCocosSceneComponent {
...
@@ -117,7 +123,15 @@ export default class SceneComponent extends MyCocosSceneComponent {
// this.coinShow()
// this.coinShow()
}
}
onTouchReplay
(){
pg
.
view
.
visible
(
this
.
layer_finish
,
false
)
this
.
initGame
()
}
onTouchNext
(){
pg
.
view
.
visible
(
this
.
layer_finish
,
false
)
this
.
initGame
()
}
//--------------------------------Record-----------------------------
//--------------------------------Record-----------------------------
private
letter
:
string
;
private
letter
:
string
;
...
@@ -126,6 +140,9 @@ export default class SceneComponent extends MyCocosSceneComponent {
...
@@ -126,6 +140,9 @@ export default class SceneComponent extends MyCocosSceneComponent {
private
startTime
:
number
;
private
startTime
:
number
;
private
recording
:
boolean
;
private
recording
:
boolean
;
private
microPhoneChange
:
boolean
;
private
microPhoneChange
:
boolean
;
private
replay_btn
:
cc
.
Node
;
private
next_btn
:
cc
.
Node
;
showTimeStart
()
{
showTimeStart
()
{
if
(
!
this
.
targetTime
)
return
;
if
(
!
this
.
targetTime
)
return
;
let
nowTime
=
new
Date
().
getTime
();
let
nowTime
=
new
Date
().
getTime
();
...
@@ -298,7 +315,10 @@ export default class SceneComponent extends MyCocosSceneComponent {
...
@@ -298,7 +315,10 @@ export default class SceneComponent extends MyCocosSceneComponent {
}
}
gameOver
()
{
gameOver
()
{
pg
.
view
.
visible
(
this
.
sentence_box
,
false
)
let
finish_cat
=
pg
.
view
.
find
(
this
.
layer_finish
,
"
finish_cat
"
)
pg
.
view
.
playDBAnimation
(
finish_cat
,
"
finish
"
,
1
);
pg
.
view
.
visible
(
this
.
layer_finish
,
true
)
}
}
}
}
...
...
assets/hy17_hds/script/defaultData_hy17_hds.ts
View file @
8b4b07f4
export
const
defaultData
=
export
const
defaultData
=
{
{
"
recordFlag
"
:
false
,
"
title
"
:
""
,
"
questionText
"
:
""
,
"
questionTextAudio
"
:
""
,
"
questions
"
:
[
"
recordFlag
"
:
false
,
"
title
"
:
""
,
"
questionText
"
:
""
,
"
questionTextAudio
"
:
""
,
"
questions
"
:
[
{
"
text
"
:
"
this is info
"
,
"
time
"
:
10
},
{
"
text
"
:
"
this is info
"
,
"
time
"
:
2
},
{
"
text
"
:
"
test some thing.
"
,
"
time
"
:
10
}],
"
bgAudio
"
:
""
,
"
bgAudioName
"
:
""
,
"
audioName
"
:
""
{
"
text
"
:
"
test some thing.
"
,
"
time
"
:
2
}],
"
bgAudio
"
:
""
,
"
bgAudioName
"
:
""
,
"
audioName
"
:
""
}
}
// {
// {
// "recordFlag": true,
// "recordFlag": true,
...
...
assets/hy17_hds/textures/hy17/ani/finish.meta
0 → 100644
View file @
8b4b07f4
{
"ver": "1.1.2",
"uuid": "80d273de-f7a1-45e8-b75c-b4c3032d0b78",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
assets/hy17_hds/textures/hy17/ani/finish/finish.png
0 → 100644
View file @
8b4b07f4
122 KB
assets/hy17_hds/textures/hy17/ani/finish/finish.png.meta
0 → 100644
View file @
8b4b07f4
{
"ver": "2.3.5",
"uuid": "6cda522a-b8bc-40b4-b8c5-28ccdbd817b4",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1024,
"height": 1024,
"platformSettings": {},
"subMetas": {
"finish": {
"ver": "1.0.4",
"uuid": "df8c0d1b-db97-497e-b721-ebebd22dac62",
"rawTextureUuid": "6cda522a-b8bc-40b4-b8c5-28ccdbd817b4",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -10.5,
"offsetY": 75.5,
"trimX": 1,
"trimY": 1,
"width": 1001,
"height": 871,
"rawWidth": 1024,
"rawHeight": 1024,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
assets/hy17_hds/textures/hy17/ani/finish/finish_ske.json
0 → 100644
View file @
8b4b07f4
{
"name"
:
"finish"
,
"version"
:
"5.5"
,
"frameRate"
:
24
,
"isGlobal"
:
0
,
"armature"
:[{
"name"
:
"Armature"
,
"animation"
:[{
"name"
:
"finish"
,
"ffd"
:[],
"frame"
:[],
"duration"
:
26
,
"slot"
:[{
"name"
:
"金币底"
,
"colorFrame"
:[{
"tweenEasing"
:
0
,
"color"
:{
"aM"
:
0
},
"duration"
:
4
},{
"tweenEasing"
:
0
,
"color"
:{
"aM"
:
0
},
"duration"
:
6
},{
"tweenEasing"
:
0
,
"color"
:{
"aM"
:
44
},
"duration"
:
10
},{
"color"
:{
"aM"
:
0
},
"duration"
:
6
}],
"displayFrame"
:[]},{
"name"
:
"圈"
,
"colorFrame"
:[{
"tweenEasing"
:
0
,
"color"
:{
"aM"
:
0
},
"duration"
:
4
},{
"tweenEasing"
:
0
,
"color"
:{
"aM"
:
0
},
"duration"
:
4
},{
"tweenEasing"
:
0
,
"color"
:{
"aM"
:
0
},
"duration"
:
6
},{
"tweenEasing"
:
0
,
"color"
:{
"aM"
:
40
},
"duration"
:
6
},{
"color"
:{
"aM"
:
0
},
"duration"
:
6
}],
"displayFrame"
:[]},{
"name"
:
"金币"
,
"colorFrame"
:[],
"displayFrame"
:[{
"duration"
:
4
,
"value"
:
-1
},{
"duration"
:
7
,
"value"
:
-1
},{
"duration"
:
15
}]},{
"name"
:
"条1"
,
"colorFrame"
:[{
"color"
:{
"aM"
:
0
},
"duration"
:
8
},{
"curve"
:[
0
,
0
,
0.34269662921348315
,
0.9952978056426333
],
"color"
:{
"aM"
:
22
},
"duration"
:
11
},{
"tweenEasing"
:
0
,
"duration"
:
7
},{
"color"
:{
"aM"
:
0
},
"duration"
:
0
}],
"displayFrame"
:[]},{
"name"
:
"条11"
,
"colorFrame"
:[{
"color"
:{
"aM"
:
0
},
"duration"
:
8
},{
"curve"
:[
0
,
0
,
0.5
,
1
],
"color"
:{
"aM"
:
22
},
"duration"
:
11
},{
"tweenEasing"
:
0
,
"duration"
:
7
},{
"color"
:{
"aM"
:
0
},
"duration"
:
0
}],
"displayFrame"
:[]},{
"name"
:
"条111"
,
"colorFrame"
:[{
"color"
:{
"aM"
:
0
},
"duration"
:
8
},{
"curve"
:[
0
,
0
,
0.5
,
1
],
"color"
:{
"aM"
:
22
},
"duration"
:
11
},{
"tweenEasing"
:
0
,
"duration"
:
7
},{
"color"
:{
"aM"
:
0
},
"duration"
:
0
}],
"displayFrame"
:[]},{
"name"
:
"条12"
,
"colorFrame"
:[{
"color"
:{
"aM"
:
0
},
"duration"
:
8
},{
"curve"
:[
0
,
0
,
0.5
,
1
],
"color"
:{
"aM"
:
22
},
"duration"
:
11
},{
"tweenEasing"
:
0
,
"duration"
:
7
},{
"color"
:{
"aM"
:
0
},
"duration"
:
0
}],
"displayFrame"
:[]},{
"name"
:
"条13"
,
"colorFrame"
:[{
"color"
:{
"aM"
:
0
},
"duration"
:
8
},{
"curve"
:[
0
,
0
,
0.34269662921348315
,
0.9952978056426333
],
"color"
:{
"aM"
:
22
},
"duration"
:
11
},{
"tweenEasing"
:
0
,
"duration"
:
7
},{
"color"
:{
"aM"
:
0
},
"duration"
:
0
}],
"displayFrame"
:[]},{
"name"
:
"条121"
,
"colorFrame"
:[{
"color"
:{
"aM"
:
0
},
"duration"
:
8
},{
"curve"
:[
0
,
0
,
0.34269662921348315
,
0.9952978056426333
],
"color"
:{
"aM"
:
22
},
"duration"
:
11
},{
"tweenEasing"
:
0
,
"duration"
:
7
},{
"color"
:{
"aM"
:
0
},
"duration"
:
0
}],
"displayFrame"
:[]},{
"name"
:
"条122"
,
"colorFrame"
:[{
"color"
:{
"aM"
:
0
},
"duration"
:
8
},{
"curve"
:[
0
,
0
,
0.34269662921348315
,
0.9952978056426333
],
"color"
:{
"aM"
:
22
},
"duration"
:
11
},{
"tweenEasing"
:
0
,
"duration"
:
7
},{
"color"
:{
"aM"
:
0
},
"duration"
:
0
}],
"displayFrame"
:[]}],
"bone"
:[{
"name"
:
"root"
,
"translateFrame"
:[],
"rotateFrame"
:[],
"scaleFrame"
:[]},{
"name"
:
"金币底"
,
"translateFrame"
:[],
"rotateFrame"
:[],
"scaleFrame"
:[{
"x"
:
1.3
,
"duration"
:
4
,
"tweenEasing"
:
0
,
"y"
:
1.3
},{
"x"
:
1.3
,
"duration"
:
6
,
"tweenEasing"
:
0
,
"y"
:
1.3
},{
"duration"
:
16
}]},{
"name"
:
"圈"
,
"translateFrame"
:[],
"rotateFrame"
:[],
"scaleFrame"
:[{
"duration"
:
11
},{
"duration"
:
9
,
"tweenEasing"
:
0
},{
"x"
:
1.4
,
"duration"
:
6
,
"y"
:
1.4
}]},{
"name"
:
"金币"
,
"translateFrame"
:[],
"rotateFrame"
:[],
"scaleFrame"
:[{
"duration"
:
11
},{
"x"
:
0.5
,
"duration"
:
4
,
"tweenEasing"
:
0
,
"y"
:
0.5
},{
"duration"
:
7
,
"curve"
:[
0.7359550561797753
,
0.009404388714733543
,
1
,
1
],
"y"
:
1.1
},{
"duration"
:
4
}]},{
"name"
:
"条1"
,
"translateFrame"
:[{
"duration"
:
8
},{
"x"
:
93.3333
,
"duration"
:
11
,
"tweenEasing"
:
0
,
"y"
:
33.3333
},{
"x"
:
-236.6667
,
"duration"
:
7
,
"y"
:
-54.1608
}],
"rotateFrame"
:[{
"duration"
:
8
},{
"duration"
:
11
,
"tweenEasing"
:
0
},{
"rotate"
:
-93.3665
,
"duration"
:
7
}],
"scaleFrame"
:[{
"duration"
:
8
},{
"x"
:
0.7
,
"duration"
:
11
,
"tweenEasing"
:
0
,
"y"
:
0.7
},{
"duration"
:
7
}]},{
"name"
:
"bone"
,
"translateFrame"
:[],
"rotateFrame"
:[{
"duration"
:
22
,
"clockwise"
:
2
,
"tweenEasing"
:
0
},{
"duration"
:
4
}],
"scaleFrame"
:[]},{
"name"
:
"条11"
,
"translateFrame"
:[{
"duration"
:
8
},{
"x"
:
-178.25
,
"duration"
:
11
,
"curve"
:[
0
,
0
,
0.5
,
1
],
"y"
:
33.3333
},{
"x"
:
-581.1667
,
"duration"
:
7
,
"y"
:
-526.7441
}],
"rotateFrame"
:[{
"duration"
:
8
},{
"curve"
:[
0
,
0
,
0.5
,
1
],
"duration"
:
11
},{
"rotate"
:
-93.3665
,
"duration"
:
7
}],
"scaleFrame"
:[{
"duration"
:
8
},{
"x"
:
0.7
,
"duration"
:
11
,
"curve"
:[
0
,
0
,
0.5
,
1
],
"y"
:
0.7
},{
"duration"
:
7
}]},{
"name"
:
"条111"
,
"translateFrame"
:[{
"duration"
:
8
},{
"x"
:
-178.25
,
"duration"
:
11
,
"curve"
:[
0
,
0
,
0.5
,
1
],
"y"
:
33.3333
},{
"x"
:
146.8333
,
"duration"
:
7
,
"y"
:
-138.9941
}],
"rotateFrame"
:[{
"duration"
:
8
},{
"curve"
:[
0
,
0
,
0.5
,
1
],
"duration"
:
11
},{
"rotate"
:
-93.3665
,
"duration"
:
7
}],
"scaleFrame"
:[{
"duration"
:
8
},{
"x"
:
0.7
,
"duration"
:
11
,
"curve"
:[
0
,
0
,
0.5
,
1
],
"y"
:
0.7
},{
"duration"
:
7
}]},{
"name"
:
"条12"
,
"translateFrame"
:[{
"duration"
:
8
},{
"x"
:
93.3333
,
"duration"
:
11
,
"curve"
:[
0
,
0
,
0.5
,
1
],
"y"
:
33.3333
},{
"x"
:
300.8333
,
"duration"
:
7
,
"y"
:
-54.1608
}],
"rotateFrame"
:[{
"duration"
:
8
},{
"curve"
:[
0
,
0
,
0.5
,
1
],
"duration"
:
11
},{
"rotate"
:
-93.3665
,
"duration"
:
7
}],
"scaleFrame"
:[{
"duration"
:
8
},{
"x"
:
0.7
,
"duration"
:
11
,
"curve"
:[
0
,
0
,
0.5
,
1
],
"y"
:
0.7
},{
"duration"
:
7
}]},{
"name"
:
"条13"
,
"translateFrame"
:[{
"duration"
:
8
},{
"x"
:
93.3333
,
"duration"
:
11
,
"tweenEasing"
:
0
,
"y"
:
33.3333
},{
"x"
:
321
,
"duration"
:
7
,
"y"
:
-189.8274
}],
"rotateFrame"
:[{
"duration"
:
8
},{
"duration"
:
11
,
"tweenEasing"
:
0
},{
"rotate"
:
-34.1966
,
"duration"
:
7
}],
"scaleFrame"
:[{
"duration"
:
8
},{
"x"
:
0.7
,
"duration"
:
11
,
"tweenEasing"
:
0
,
"y"
:
0.7
},{
"duration"
:
7
}]},{
"name"
:
"条121"
,
"translateFrame"
:[{
"duration"
:
8
},{
"x"
:
93.3333
,
"duration"
:
11
,
"tweenEasing"
:
0
,
"y"
:
33.3333
},{
"x"
:
-236.6667
,
"duration"
:
7
,
"y"
:
-54.1608
}],
"rotateFrame"
:[{
"duration"
:
8
},{
"duration"
:
11
,
"tweenEasing"
:
0
},{
"rotate"
:
-93.3665
,
"duration"
:
7
}],
"scaleFrame"
:[{
"duration"
:
8
},{
"x"
:
0.7
,
"duration"
:
11
,
"tweenEasing"
:
0
,
"y"
:
0.7
},{
"duration"
:
7
}]}],
"ik"
:[],
"playTimes"
:
0
}],
"bone"
:[{
"name"
:
"root"
,
"transform"
:{
"x"
:
-131.6667
,
"y"
:
16.6667
}},{
"name"
:
"圈"
,
"transform"
:{
"x"
:
140.655
,
"y"
:
-240.8618
},
"parent"
:
"root"
},{
"name"
:
"金币"
,
"transform"
:{
"x"
:
143.8193
,
"y"
:
-246.4
},
"parent"
:
"root"
},{
"name"
:
"条1"
,
"transform"
:{
"x"
:
33.3193
,
"y"
:
-90.0208
},
"parent"
:
"root"
},{
"name"
:
"金币底"
,
"transform"
:{
"x"
:
146.8193
,
"y"
:
-242
},
"parent"
:
"root"
},{
"name"
:
"bone"
,
"transform"
:{
"x"
:
138.33
,
"y"
:
-245.75
},
"parent"
:
"root"
},{
"name"
:
"条11"
,
"transform"
:{
"x"
:
323.3193
,
"scY"
:
0.7
,
"y"
:
-95.8541
,
"scX"
:
0.7
},
"parent"
:
"root"
},{
"name"
:
"条111"
,
"transform"
:{
"x"
:
323.3193
,
"scY"
:
0.7
,
"y"
:
-95.8541
,
"scX"
:
0.7
},
"parent"
:
"root"
},{
"name"
:
"条12"
,
"transform"
:{
"x"
:
166.6526
,
"y"
:
-40.0208
},
"parent"
:
"root"
},{
"name"
:
"条13"
,
"transform"
:{
"x"
:
98.1526
,
"y"
:
-115.9375
},
"parent"
:
"root"
},{
"name"
:
"条121"
,
"transform"
:{
"x"
:
33.3193
,
"y"
:
-90.0208
},
"parent"
:
"root"
}],
"skin"
:[{
"name"
:
""
,
"slot"
:[{
"name"
:
"条11"
,
"display"
:[{
"name"
:
"金币动画/条"
,
"transform"
:{
"x"
:
-270.4571
,
"skX"
:
-39.1322
,
"y"
:
73.2524
,
"skY"
:
-39.1322
},
"type"
:
"image"
,
"path"
:
"金币动画/条"
}]},{
"name"
:
"圈"
,
"display"
:[{
"name"
:
"金币动画/圈"
,
"transform"
:{
"x"
:
3.5699
,
"y"
:
0.3676
},
"type"
:
"image"
,
"path"
:
"金币动画/圈"
}]},{
"name"
:
"金币底"
,
"display"
:[{
"name"
:
"金币动画/金币底"
,
"transform"
:{
"x"
:
-3
,
"y"
:
-0.5
},
"type"
:
"image"
,
"path"
:
"金币动画/金币底"
}]},{
"name"
:
"金币"
,
"display"
:[{
"name"
:
"金币动画/金币"
,
"transform"
:{
"y"
:
5.9
},
"type"
:
"image"
,
"path"
:
"金币动画/金币"
}]},{
"name"
:
"条1"
,
"display"
:[{
"name"
:
"金币动画/条"
,
"transform"
:{
"x"
:
122.0667
,
"scY"
:
0.5
,
"y"
:
-6.3667
,
"scX"
:
0.5
},
"type"
:
"image"
,
"path"
:
"金币动画/条"
}]},{
"name"
:
"条111"
,
"display"
:[{
"name"
:
"金币动画/条"
,
"transform"
:{
"x"
:
-0.1
,
"y"
:
-0.2
},
"type"
:
"image"
,
"path"
:
"金币动画/条"
}]},{
"name"
:
"条13"
,
"display"
:[{
"name"
:
"金币动画/条"
,
"transform"
:{
"x"
:
122.0667
,
"scY"
:
0.5
,
"y"
:
-6.3667
,
"scX"
:
0.5
},
"type"
:
"image"
,
"path"
:
"金币动画/条"
}]},{
"name"
:
"条12"
,
"display"
:[{
"name"
:
"金币动画/条"
,
"transform"
:{
"x"
:
-0.1
,
"y"
:
-0.2
},
"type"
:
"image"
,
"path"
:
"金币动画/条"
}]},{
"name"
:
"条122"
,
"display"
:[{
"name"
:
"金币动画/条"
,
"transform"
:{
"x"
:
-0.1
,
"y"
:
-0.2
},
"type"
:
"image"
,
"path"
:
"金币动画/条"
}]},{
"name"
:
"条121"
,
"display"
:[]}]}],
"defaultActions"
:[{
"gotoAndPlay"
:
"finish"
}],
"frameRate"
:
24
,
"slot"
:[{
"name"
:
"金币底"
,
"color"
:{},
"parent"
:
"金币底"
},{
"name"
:
"圈"
,
"color"
:{},
"z"
:
1
,
"parent"
:
"圈"
},{
"name"
:
"金币"
,
"color"
:{},
"z"
:
2
,
"parent"
:
"金币"
},{
"name"
:
"条1"
,
"color"
:{},
"z"
:
3
,
"parent"
:
"条1"
},{
"name"
:
"条11"
,
"color"
:{},
"z"
:
4
,
"parent"
:
"条11"
},{
"name"
:
"条111"
,
"color"
:{},
"z"
:
5
,
"parent"
:
"条111"
},{
"name"
:
"条12"
,
"color"
:{},
"z"
:
6
,
"parent"
:
"条12"
},{
"name"
:
"条13"
,
"color"
:{},
"z"
:
7
,
"parent"
:
"条13"
},{
"name"
:
"条121"
,
"color"
:{},
"z"
:
8
,
"parent"
:
"root"
,
"displayIndex"
:
-1
},{
"name"
:
"条122"
,
"color"
:{},
"z"
:
9
,
"parent"
:
"条121"
}],
"type"
:
"Armature"
,
"ik"
:[],
"aabb"
:{
"x"
:
-243.44169151262471
,
"height"
:
497.77919520611704
,
"y"
:
-469.33333333333337
,
"width"
:
512
}}]}
\ No newline at end of file
assets/hy17_hds/textures/hy17/ani/finish/finish_ske.json.meta
0 → 100644
View file @
8b4b07f4
{
"ver": "1.0.1",
"uuid": "a3fdb391-e9ad-464d-ad51-2698de2b38e1",
"subMetas": {}
}
\ No newline at end of file
assets/hy17_hds/textures/hy17/ani/finish/finish_tex.json
0 → 100644
View file @
8b4b07f4
{
"name"
:
"finish"
,
"SubTexture"
:[{
"name"
:
"金币动画/金币底"
,
"x"
:
1
,
"height"
:
487
,
"y"
:
1
,
"width"
:
487
},{
"name"
:
"金币动画/圈"
,
"x"
:
490
,
"height"
:
420
,
"y"
:
1
,
"width"
:
512
},{
"name"
:
"金币动画/金币"
,
"x"
:
490
,
"height"
:
449
,
"y"
:
423
,
"width"
:
388
},{
"name"
:
"金币动画/条"
,
"x"
:
880
,
"height"
:
104
,
"y"
:
423
,
"width"
:
105
}],
"height"
:
1024
,
"imagePath"
:
"finish.png"
,
"width"
:
1024
}
\ No newline at end of file
assets/hy17_hds/textures/hy17/ani/finish/finish_tex.json.meta
0 → 100644
View file @
8b4b07f4
{
"ver": "1.0.1",
"uuid": "c9537625-dbfc-4d95-a3b3-d3d672dc93e6",
"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