Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
douyin_xiaoxiaole
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
douyin_xiaoxiaole
Commits
f696c7af
Commit
f696c7af
authored
Jul 12, 2023
by
liujiangnan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
debug
parent
ad009a90
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
372 additions
and
204 deletions
+372
-204
douyin_xiaoxiaole.js
assets/douyin_xiaoxiaole/scene/douyin_xiaoxiaole.js
+6
-6
supportToolsDy.js
assets/douyin_xiaoxiaole/script/supportToolsDy.js
+25
-3
wordgame_syllabus.fire
assets/wordgame_syllabus/scene/wordgame_syllabus.fire
+313
-182
wordgame_syllabus.ts
assets/wordgame_syllabus/scene/wordgame_syllabus.ts
+14
-9
builder.json
settings/builder.json
+5
-3
bytedance.json
settings/bytedance.json
+8
-0
project.json
settings/project.json
+1
-1
No files found.
assets/douyin_xiaoxiaole/scene/douyin_xiaoxiaole.js
View file @
f696c7af
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
// import { getSprNode } from "./util";
// import { getSprNode } from "./util";
import
{
getSprNode
,
playAudioByUrl
,
showBtnAnima
,
getScaleRateBy2Node
,
localPosTolocalPos
,
randomSortByArr
,
loadDragonBones
,
playAudio
,
showTrebleFirework
,
getSprNodeByUrl
,
setSprNodeMaxLen
,
delayCall
,
asyncDelay
,
RandomInt
,
exchangeNodePos
,
onHomeworkFinish
,
callNetworkApi
,
loopLog
,
removeFromArr
}
from
"
../script/hw_elimination_letter_util
"
;
import
{
getSprNode
,
playAudioByUrl
,
showBtnAnima
,
getScaleRateBy2Node
,
localPosTolocalPos
,
randomSortByArr
,
loadDragonBones
,
playAudio
,
showTrebleFirework
,
getSprNodeByUrl
,
setSprNodeMaxLen
,
delayCall
,
asyncDelay
,
RandomInt
,
exchangeNodePos
,
onHomeworkFinish
,
callNetworkApi
,
loopLog
,
removeFromArr
}
from
"
../script/hw_elimination_letter_util
"
;
import
{
asyncCallNetworkApiGet
,
getLiveUserInfo
,
getRoomId
,
drawOpenNickName
}
from
"
../script/supportToolsDy
"
;
import
{
asyncCallNetworkApiGet
,
asyncCallNetworkApiPost
,
getLiveUserInfo
,
getRoomId
,
drawOpenNickName
}
from
"
../script/supportToolsDy
"
;
cc
.
Class
({
cc
.
Class
({
...
@@ -86,19 +86,20 @@ cc.Class({
...
@@ -86,19 +86,20 @@ cc.Class({
async
start
()
{
async
start
()
{
// anchor - 主播,audience - 观众
// anchor - 主播
// audience - 观众
this
.
roomId
=
await
getRoomId
();
this
.
roomId
=
await
getRoomId
();
const
res
=
await
getLiveUserInfo
();
const
res
=
await
getLiveUserInfo
();
this
.
role
=
res
.
role
;
this
.
role
=
res
.
role
;
this
.
uid
=
res
.
uid
;
this
.
uid
=
res
.
uid
;
// 测试数据
// 测试数据
this
.
role
=
'
anchor
'
;
// this.role = 'audience
';
this
.
uid
=
'
teacher
'
;
// this.uid = 'student
';
const
nickObj
=
await
drawOpenNickName
(
res
.
nickName
);
const
nickObj
=
await
drawOpenNickName
(
res
.
nickName
);
await
asyncCallNetworkApi
Get
(
'
/api/douyin/v1/create
'
,
{
roomid
:
this
.
roomId
,
uid
:
this
.
uid
,
nickname
:
JSON
.
stringify
(
nickObj
)
,
role
:
this
.
role
});
await
asyncCallNetworkApi
Post
(
'
/api/douyin/v1/create
'
,
{
roomid
:
this
.
roomId
,
uid
:
this
.
uid
,
nickname
:
nickObj
.
data
,
role
:
this
.
role
});
if
(
this
.
role
==
'
anchor
'
)
{
if
(
this
.
role
==
'
anchor
'
)
{
// 主播
// 主播
cc
.
director
.
loadScene
(
'
wordgame_syllabus
'
);
cc
.
director
.
loadScene
(
'
wordgame_syllabus
'
);
...
@@ -106,7 +107,6 @@ cc.Class({
...
@@ -106,7 +107,6 @@ cc.Class({
cc
.
find
(
`Canvas/ready`
).
active
=
true
;
cc
.
find
(
`Canvas/ready`
).
active
=
true
;
this
.
heartGameStatus
();
this
.
heartGameStatus
();
}
}
},
},
isGameStart
:
null
,
isGameStart
:
null
,
...
...
assets/douyin_xiaoxiaole/script/supportToolsDy.js
View file @
f696c7af
...
@@ -29,6 +29,20 @@ export function callNetworkApiGet(uri, data, callBack) {
...
@@ -29,6 +29,20 @@ export function callNetworkApiGet(uri, data, callBack) {
xhr
.
send
();
xhr
.
send
();
}
}
export
function
callNetworkApiPost
(
uri
,
data
,
callBack
)
{
const
xhr
=
new
XMLHttpRequest
();
const
url
=
`
${
openApi
}${
uri
}
`
;
xhr
.
open
(
"
POST
"
,
url
,
true
);
xhr
.
setRequestHeader
(
'
content-type
'
,
'
application/json
'
);
xhr
.
onreadystatechange
=
()
=>
{
if
(
xhr
.
readyState
==
4
)
{
callBack
(
JSON
.
parse
(
xhr
.
responseText
));
}
}
xhr
.
send
(
JSON
.
stringify
(
data
));
}
export
async
function
asyncCallNetworkApiGet
(
apiName
,
data
)
{
export
async
function
asyncCallNetworkApiGet
(
apiName
,
data
)
{
return
new
Promise
((
resolve
,
reject
)
=>
{
return
new
Promise
((
resolve
,
reject
)
=>
{
callNetworkApiGet
(
apiName
,
data
,
(
res
=>
{
callNetworkApiGet
(
apiName
,
data
,
(
res
=>
{
...
@@ -37,6 +51,14 @@ export async function asyncCallNetworkApiGet(apiName, data) {
...
@@ -37,6 +51,14 @@ export async function asyncCallNetworkApiGet(apiName, data) {
});
});
}
}
export
async
function
asyncCallNetworkApiPost
(
uri
,
data
)
{
return
new
Promise
((
resolve
,
reject
)
=>
{
callNetworkApiPost
(
uri
,
data
,
(
res
)
=>
{
resolve
(
res
);
});
});
}
function
getConSig
(){
function
getConSig
(){
...
@@ -138,7 +160,7 @@ function getWebRecordInstanse() {
...
@@ -138,7 +160,7 @@ function getWebRecordInstanse() {
}
}
export
function
getRoomId
()
{
export
function
getRoomId
()
{
if
(
cc
.
sys
.
platform
!==
cc
.
sys
.
BYTEDANCE_GAME
)
{
if
(
cc
.
sys
.
platform
!==
117
)
{
return
'
test-room-0001
'
;
return
'
test-room-0001
'
;
}
}
return
new
Promise
((
resolve
)
=>
{
return
new
Promise
((
resolve
)
=>
{
...
@@ -155,7 +177,7 @@ export function getRoomId() {
...
@@ -155,7 +177,7 @@ export function getRoomId() {
}
}
export
function
drawOpenNickName
(
str
)
{
export
function
drawOpenNickName
(
str
)
{
if
(
cc
.
sys
.
platform
!==
cc
.
sys
.
BYTEDANCE_GAME
)
{
if
(
cc
.
sys
.
platform
!==
117
)
{
return
{};
return
{};
}
}
return
new
Promise
((
resolve
)
=>
{
return
new
Promise
((
resolve
)
=>
{
...
@@ -171,7 +193,7 @@ export function drawOpenNickName(str) {
...
@@ -171,7 +193,7 @@ export function drawOpenNickName(str) {
}
}
export
function
getLiveUserInfo
()
{
export
function
getLiveUserInfo
()
{
if
(
cc
.
sys
.
platform
!==
cc
.
sys
.
BYTEDANCE_GAME
)
{
if
(
cc
.
sys
.
platform
!==
117
)
{
return
{
return
{
role
:
'
audience
'
,
role
:
'
audience
'
,
uid
:
'
example
'
,
uid
:
'
example
'
,
...
...
assets/wordgame_syllabus/scene/wordgame_syllabus.fire
View file @
f696c7af
...
@@ -81,28 +81,28 @@
...
@@ -81,28 +81,28 @@
"__id__": 11
"__id__": 11
},
},
{
{
"__id__": 3
3
"__id__": 3
6
},
},
{
{
"__id__": 5
0
"__id__": 5
3
},
},
{
{
"__id__": 5
5
"__id__": 5
8
},
},
{
{
"__id__": 9
3
"__id__": 9
6
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 10
0
"__id__": 10
3
},
},
{
{
"__id__": 10
1
"__id__": 10
4
},
},
{
{
"__id__": 10
2
"__id__": 10
5
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -509,18 +509,21 @@
...
@@ -509,18 +509,21 @@
"_children": [
"_children": [
{
{
"__id__": 12
"__id__": 12
},
{
"__id__": 15
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 3
0
"__id__": 3
3
},
},
{
{
"__id__": 3
1
"__id__": 3
4
},
},
{
{
"__id__": 3
2
"__id__": 3
5
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -571,6 +574,131 @@
...
@@ -571,6 +574,131 @@
"groupIndex": 0,
"groupIndex": 0,
"_id": "8adWzWYoVC6LLGnHfYUzRN"
"_id": "8adWzWYoVC6LLGnHfYUzRN"
},
},
{
"__type__": "cc.Node",
"_name": "debug",
"_objFlags": 0,
"_parent": {
"__id__": 11
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 13
},
{
"__id__": 14
}
],
"_prefab": null,
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 97.87,
"height": 50.4
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
-31.736,
376.86,
0,
0,
0,
0,
1,
1,
1,
1
]
},
"_eulerAngles": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_skewX": 0,
"_skewY": 0,
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
"_id": "e9fHMacLFBx4/WXTLdsN/P"
},
{
"__type__": "cc.Label",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 12
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_string": "Label",
"_N$string": "Label",
"_fontSize": 40,
"_lineHeight": 40,
"_enableWrapText": true,
"_N$file": null,
"_isSystemFontUsed": true,
"_spacingX": 0,
"_batchAsBitmap": false,
"_styleFlags": 0,
"_underlineHeight": 0,
"_N$horizontalAlign": 1,
"_N$verticalAlign": 1,
"_N$fontFamily": "Arial",
"_N$overflow": 0,
"_N$cacheMode": 0,
"_id": "ea/odK+NFHoocKaBdT5SId"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 12
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 1,
"_left": 0,
"_right": 0,
"_top": 137.94,
"_bottom": 0,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_id": "29zLq9fKJIj7GFz0GC8rNm"
},
{
{
"__type__": "cc.Node",
"__type__": "cc.Node",
"_name": "view",
"_name": "view",
...
@@ -580,16 +708,16 @@
...
@@ -580,16 +708,16 @@
},
},
"_children": [
"_children": [
{
{
"__id__": 1
3
"__id__": 1
6
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
28
"__id__":
31
},
},
{
{
"__id__":
29
"__id__":
32
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -604,7 +732,7 @@
...
@@ -604,7 +732,7 @@
"_contentSize": {
"_contentSize": {
"__type__": "cc.Size",
"__type__": "cc.Size",
"width": 1280,
"width": 1280,
"height":
96
0
"height":
60
0
},
},
"_anchorPoint": {
"_anchorPoint": {
"__type__": "cc.Vec2",
"__type__": "cc.Vec2",
...
@@ -645,20 +773,20 @@
...
@@ -645,20 +773,20 @@
"_name": "content",
"_name": "content",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
2
"__id__": 1
5
},
},
"_children": [
"_children": [
{
{
"__id__": 1
4
"__id__": 1
7
},
},
{
{
"__id__": 1
5
"__id__": 1
8
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
27
"__id__":
30
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -714,7 +842,7 @@
...
@@ -714,7 +842,7 @@
"_name": "New Node",
"_name": "New Node",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
3
"__id__": 1
6
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
...
@@ -772,17 +900,17 @@
...
@@ -772,17 +900,17 @@
"_name": "item",
"_name": "item",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
3
"__id__": 1
6
},
},
"_children": [
"_children": [
{
{
"__id__": 1
6
"__id__": 1
9
}
}
],
],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 2
5
"__id__": 2
8
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -838,23 +966,23 @@
...
@@ -838,23 +966,23 @@
"_name": "syllabus_item",
"_name": "syllabus_item",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
5
"__id__": 1
8
},
},
"_children": [
"_children": [
{
{
"__id__":
17
"__id__":
20
},
},
{
{
"__id__":
19
"__id__":
22
},
},
{
{
"__id__": 2
1
"__id__": 2
4
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 2
4
"__id__": 2
7
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -910,13 +1038,13 @@
...
@@ -910,13 +1038,13 @@
"_name": "sure",
"_name": "sure",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
6
"__id__": 1
9
},
},
"_children": [],
"_children": [],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__":
18
"__id__":
21
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -972,7 +1100,7 @@
...
@@ -972,7 +1100,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
17
"__id__":
20
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -1004,13 +1132,13 @@
...
@@ -1004,13 +1132,13 @@
"_name": "label",
"_name": "label",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
6
"__id__": 1
9
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 2
0
"__id__": 2
3
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -1066,7 +1194,7 @@
...
@@ -1066,7 +1194,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
19
"__id__":
22
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -1101,16 +1229,16 @@
...
@@ -1101,16 +1229,16 @@
"_name": "label_disable",
"_name": "label_disable",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 1
6
"__id__": 1
9
},
},
"_children": [],
"_children": [],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 2
2
"__id__": 2
5
},
},
{
{
"__id__": 2
3
"__id__": 2
6
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -1166,7 +1294,7 @@
...
@@ -1166,7 +1294,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 2
1
"__id__": 2
4
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -1201,7 +1329,7 @@
...
@@ -1201,7 +1329,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 2
1
"__id__": 2
4
},
},
"_enabled": true,
"_enabled": true,
"_color": {
"_color": {
...
@@ -1219,7 +1347,7 @@
...
@@ -1219,7 +1347,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
6
"__id__": 1
9
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -1251,7 +1379,7 @@
...
@@ -1251,7 +1379,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
5
"__id__": 1
8
},
},
"_enabled": true,
"_enabled": true,
"_normalMaterial": null,
"_normalMaterial": null,
...
@@ -1260,7 +1388,7 @@
...
@@ -1260,7 +1388,7 @@
"zoomScale": 1.2,
"zoomScale": 1.2,
"clickEvents": [
"clickEvents": [
{
{
"__id__": 2
6
"__id__": 2
9
}
}
],
],
"_N$interactable": true,
"_N$interactable": true,
...
@@ -1316,7 +1444,7 @@
...
@@ -1316,7 +1444,7 @@
"hoverSprite": null,
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$disabledSprite": null,
"_N$target": {
"_N$target": {
"__id__": 1
5
"__id__": 1
8
},
},
"_id": "0a0L8lKTFNLbn0gHhFnY6E"
"_id": "0a0L8lKTFNLbn0gHhFnY6E"
},
},
...
@@ -1335,7 +1463,7 @@
...
@@ -1335,7 +1463,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
3
"__id__": 1
6
},
},
"_enabled": true,
"_enabled": true,
"_layoutSize": {
"_layoutSize": {
...
@@ -1367,7 +1495,7 @@
...
@@ -1367,7 +1495,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
2
"__id__": 1
5
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -1387,7 +1515,7 @@
...
@@ -1387,7 +1515,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
2
"__id__": 1
5
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -1395,8 +1523,8 @@
...
@@ -1395,8 +1523,8 @@
"_alignFlags": 5,
"_alignFlags": 5,
"_left": 0,
"_left": 0,
"_right": 0,
"_right": 0,
"_top":
6
0,
"_top":
24
0,
"_bottom":
6
0,
"_bottom":
24
0,
"_verticalCenter": 0,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsLeft": true,
...
@@ -1456,10 +1584,10 @@
...
@@ -1456,10 +1584,10 @@
"scrollEvents": [],
"scrollEvents": [],
"cancelInnerEvents": true,
"cancelInnerEvents": true,
"_N$content": {
"_N$content": {
"__id__": 1
3
"__id__": 1
6
},
},
"content": {
"content": {
"__id__": 1
3
"__id__": 1
6
},
},
"_N$horizontalScrollBar": null,
"_N$horizontalScrollBar": null,
"_N$verticalScrollBar": null,
"_N$verticalScrollBar": null,
...
@@ -1501,19 +1629,19 @@
...
@@ -1501,19 +1629,19 @@
},
},
"_children": [
"_children": [
{
{
"__id__": 3
4
"__id__": 3
7
},
},
{
{
"__id__":
39
"__id__":
42
},
},
{
{
"__id__": 4
4
"__id__": 4
7
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
49
"__id__":
52
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -1539,8 +1667,8 @@
...
@@ -1539,8 +1667,8 @@
"__type__": "TypedArray",
"__type__": "TypedArray",
"ctor": "Float64Array",
"ctor": "Float64Array",
"array": [
"array": [
320
,
216.86
,
-
469.432
,
-
370.259
,
0,
0,
0,
0,
0,
0,
...
@@ -1569,19 +1697,19 @@
...
@@ -1569,19 +1697,19 @@
"_name": "fanhui",
"_name": "fanhui",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 3
3
"__id__": 3
6
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 3
5
"__id__": 3
8
},
},
{
{
"__id__": 3
6
"__id__": 3
9
},
},
{
{
"__id__":
38
"__id__":
41
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -1637,7 +1765,7 @@
...
@@ -1637,7 +1765,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 3
4
"__id__": 3
7
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -1669,7 +1797,7 @@
...
@@ -1669,7 +1797,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 3
4
"__id__": 3
7
},
},
"_enabled": true,
"_enabled": true,
"_normalMaterial": null,
"_normalMaterial": null,
...
@@ -1678,7 +1806,7 @@
...
@@ -1678,7 +1806,7 @@
"zoomScale": 1.2,
"zoomScale": 1.2,
"clickEvents": [
"clickEvents": [
{
{
"__id__":
37
"__id__":
40
}
}
],
],
"_N$interactable": true,
"_N$interactable": true,
...
@@ -1734,7 +1862,7 @@
...
@@ -1734,7 +1862,7 @@
"hoverSprite": null,
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$disabledSprite": null,
"_N$target": {
"_N$target": {
"__id__": 3
4
"__id__": 3
7
},
},
"_id": "bcnsaQCyJC166VY3iFAVEn"
"_id": "bcnsaQCyJC166VY3iFAVEn"
},
},
...
@@ -1753,7 +1881,7 @@
...
@@ -1753,7 +1881,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 3
4
"__id__": 3
7
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -1780,19 +1908,19 @@
...
@@ -1780,19 +1908,19 @@
"_name": "shouye",
"_name": "shouye",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 3
3
"__id__": 3
6
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 4
0
"__id__": 4
3
},
},
{
{
"__id__": 4
1
"__id__": 4
4
},
},
{
{
"__id__": 4
3
"__id__": 4
6
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -1848,7 +1976,7 @@
...
@@ -1848,7 +1976,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
39
"__id__":
42
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -1880,7 +2008,7 @@
...
@@ -1880,7 +2008,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
39
"__id__":
42
},
},
"_enabled": true,
"_enabled": true,
"_normalMaterial": null,
"_normalMaterial": null,
...
@@ -1889,7 +2017,7 @@
...
@@ -1889,7 +2017,7 @@
"zoomScale": 1.2,
"zoomScale": 1.2,
"clickEvents": [
"clickEvents": [
{
{
"__id__": 4
2
"__id__": 4
5
}
}
],
],
"_N$interactable": true,
"_N$interactable": true,
...
@@ -1945,7 +2073,7 @@
...
@@ -1945,7 +2073,7 @@
"hoverSprite": null,
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$disabledSprite": null,
"_N$target": {
"_N$target": {
"__id__":
39
"__id__":
42
},
},
"_id": "77ST8KT/5NbZ6S9DjMcK8b"
"_id": "77ST8KT/5NbZ6S9DjMcK8b"
},
},
...
@@ -1964,7 +2092,7 @@
...
@@ -1964,7 +2092,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
39
"__id__":
42
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -1991,19 +2119,19 @@
...
@@ -1991,19 +2119,19 @@
"_name": "choice_full",
"_name": "choice_full",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 3
3
"__id__": 3
6
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 4
5
"__id__": 4
8
},
},
{
{
"__id__": 4
6
"__id__": 4
9
},
},
{
{
"__id__":
48
"__id__":
51
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -2059,7 +2187,7 @@
...
@@ -2059,7 +2187,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 4
4
"__id__": 4
7
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -2091,7 +2219,7 @@
...
@@ -2091,7 +2219,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 4
4
"__id__": 4
7
},
},
"_enabled": true,
"_enabled": true,
"_normalMaterial": null,
"_normalMaterial": null,
...
@@ -2100,7 +2228,7 @@
...
@@ -2100,7 +2228,7 @@
"zoomScale": 1.2,
"zoomScale": 1.2,
"clickEvents": [
"clickEvents": [
{
{
"__id__":
47
"__id__":
50
}
}
],
],
"_N$interactable": true,
"_N$interactable": true,
...
@@ -2156,7 +2284,7 @@
...
@@ -2156,7 +2284,7 @@
"hoverSprite": null,
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$disabledSprite": null,
"_N$target": {
"_N$target": {
"__id__": 4
4
"__id__": 4
7
},
},
"_id": "ffbW3dmWxDfrA6p2JreXkT"
"_id": "ffbW3dmWxDfrA6p2JreXkT"
},
},
...
@@ -2175,7 +2303,7 @@
...
@@ -2175,7 +2303,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 4
4
"__id__": 4
7
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -2202,16 +2330,16 @@
...
@@ -2202,16 +2330,16 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 3
3
"__id__": 3
6
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
"_target": null,
"_target": null,
"_alignFlags": 36,
"_alignFlags": 36,
"_left": 0,
"_left": 0,
"_right":
640
,
"_right":
743.14
,
"_top": 0,
"_top": 0,
"_bottom":
70.56799999999998
,
"_bottom":
169.74099999999999
,
"_verticalCenter": 0,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsLeft": true,
...
@@ -2235,13 +2363,13 @@
...
@@ -2235,13 +2363,13 @@
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 5
1
"__id__": 5
4
},
},
{
{
"__id__": 5
2
"__id__": 5
5
},
},
{
{
"__id__": 5
3
"__id__": 5
6
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -2297,7 +2425,7 @@
...
@@ -2297,7 +2425,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 5
0
"__id__": 5
3
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -2329,7 +2457,7 @@
...
@@ -2329,7 +2457,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 5
0
"__id__": 5
3
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -2356,7 +2484,7 @@
...
@@ -2356,7 +2484,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 5
0
"__id__": 5
3
},
},
"_enabled": true,
"_enabled": true,
"_normalMaterial": null,
"_normalMaterial": null,
...
@@ -2365,7 +2493,7 @@
...
@@ -2365,7 +2493,7 @@
"zoomScale": 1.2,
"zoomScale": 1.2,
"clickEvents": [
"clickEvents": [
{
{
"__id__": 5
4
"__id__": 5
7
}
}
],
],
"_N$interactable": true,
"_N$interactable": true,
...
@@ -2421,7 +2549,7 @@
...
@@ -2421,7 +2549,7 @@
"hoverSprite": null,
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$disabledSprite": null,
"_N$target": {
"_N$target": {
"__id__": 5
0
"__id__": 5
3
},
},
"_id": "14WaHmnklEq6EeO/SeVhgl"
"_id": "14WaHmnklEq6EeO/SeVhgl"
},
},
...
@@ -2444,25 +2572,25 @@
...
@@ -2444,25 +2572,25 @@
},
},
"_children": [
"_children": [
{
{
"__id__": 5
6
"__id__": 5
9
},
},
{
{
"__id__":
78
"__id__":
81
},
},
{
{
"__id__": 8
4
"__id__": 8
7
}
}
],
],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 9
0
"__id__": 9
3
},
},
{
{
"__id__": 9
1
"__id__": 9
4
},
},
{
{
"__id__": 9
2
"__id__": 9
5
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -2518,17 +2646,17 @@
...
@@ -2518,17 +2646,17 @@
"_name": "bg",
"_name": "bg",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 5
5
"__id__": 5
8
},
},
"_children": [
"_children": [
{
{
"__id__":
57
"__id__":
60
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
77
"__id__":
80
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -2584,20 +2712,20 @@
...
@@ -2584,20 +2712,20 @@
"_name": "ranklist",
"_name": "ranklist",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 5
6
"__id__": 5
9
},
},
"_children": [
"_children": [
{
{
"__id__":
58
"__id__":
61
},
},
{
{
"__id__": 6
6
"__id__": 6
9
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 7
6
"__id__": 7
9
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -2653,17 +2781,17 @@
...
@@ -2653,17 +2781,17 @@
"_name": "item",
"_name": "item",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
57
"__id__":
60
},
},
"_children": [
"_children": [
{
{
"__id__":
59
"__id__":
62
},
},
{
{
"__id__": 6
1
"__id__": 6
4
},
},
{
{
"__id__": 6
3
"__id__": 6
6
}
}
],
],
"_active": false,
"_active": false,
...
@@ -2721,13 +2849,13 @@
...
@@ -2721,13 +2849,13 @@
"_name": "nickname",
"_name": "nickname",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
58
"__id__":
61
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 6
0
"__id__": 6
3
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -2783,7 +2911,7 @@
...
@@ -2783,7 +2911,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
59
"__id__":
62
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -2813,13 +2941,13 @@
...
@@ -2813,13 +2941,13 @@
"_name": "ready",
"_name": "ready",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
58
"__id__":
61
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 6
2
"__id__": 6
5
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -2875,7 +3003,7 @@
...
@@ -2875,7 +3003,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 6
1
"__id__": 6
4
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -2908,16 +3036,16 @@
...
@@ -2908,16 +3036,16 @@
"_name": "score",
"_name": "score",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
58
"__id__":
61
},
},
"_children": [],
"_children": [],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__": 6
4
"__id__": 6
7
},
},
{
{
"__id__": 6
5
"__id__": 6
8
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -2973,7 +3101,7 @@
...
@@ -2973,7 +3101,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 6
3
"__id__": 6
6
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -3006,7 +3134,7 @@
...
@@ -3006,7 +3134,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 6
3
"__id__": 6
6
},
},
"_enabled": true,
"_enabled": true,
"_color": {
"_color": {
...
@@ -3024,23 +3152,23 @@
...
@@ -3024,23 +3152,23 @@
"_name": "ScrollView",
"_name": "ScrollView",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
57
"__id__":
60
},
},
"_children": [
"_children": [
{
{
"__id__":
67
"__id__":
70
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 7
3
"__id__": 7
6
},
},
{
{
"__id__": 7
4
"__id__": 7
7
},
},
{
{
"__id__": 7
5
"__id__": 7
8
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -3096,20 +3224,20 @@
...
@@ -3096,20 +3224,20 @@
"_name": "view",
"_name": "view",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 6
6
"__id__": 6
9
},
},
"_children": [
"_children": [
{
{
"__id__":
68
"__id__":
71
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 7
1
"__id__": 7
4
},
},
{
{
"__id__": 7
2
"__id__": 7
5
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -3165,16 +3293,16 @@
...
@@ -3165,16 +3293,16 @@
"_name": "content",
"_name": "content",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
67
"__id__":
70
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
69
"__id__":
72
},
},
{
{
"__id__": 7
0
"__id__": 7
3
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -3230,7 +3358,7 @@
...
@@ -3230,7 +3358,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
68
"__id__":
71
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -3257,7 +3385,7 @@
...
@@ -3257,7 +3385,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
68
"__id__":
71
},
},
"_enabled": true,
"_enabled": true,
"_layoutSize": {
"_layoutSize": {
...
@@ -3289,7 +3417,7 @@
...
@@ -3289,7 +3417,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
67
"__id__":
70
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -3309,7 +3437,7 @@
...
@@ -3309,7 +3437,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
67
"__id__":
70
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -3336,7 +3464,7 @@
...
@@ -3336,7 +3464,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 6
6
"__id__": 6
9
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -3366,7 +3494,7 @@
...
@@ -3366,7 +3494,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 6
6
"__id__": 6
9
},
},
"_enabled": true,
"_enabled": true,
"horizontal": false,
"horizontal": false,
...
@@ -3378,10 +3506,10 @@
...
@@ -3378,10 +3506,10 @@
"scrollEvents": [],
"scrollEvents": [],
"cancelInnerEvents": true,
"cancelInnerEvents": true,
"_N$content": {
"_N$content": {
"__id__":
68
"__id__":
71
},
},
"content": {
"content": {
"__id__":
68
"__id__":
71
},
},
"_N$horizontalScrollBar": null,
"_N$horizontalScrollBar": null,
"_N$verticalScrollBar": null,
"_N$verticalScrollBar": null,
...
@@ -3392,7 +3520,7 @@
...
@@ -3392,7 +3520,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 6
6
"__id__": 6
9
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -3419,7 +3547,7 @@
...
@@ -3419,7 +3547,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
57
"__id__":
60
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -3446,7 +3574,7 @@
...
@@ -3446,7 +3574,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 5
6
"__id__": 5
9
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -3478,20 +3606,20 @@
...
@@ -3478,20 +3606,20 @@
"_name": "restart",
"_name": "restart",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 5
5
"__id__": 5
8
},
},
"_children": [
"_children": [
{
{
"__id__":
79
"__id__":
82
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 8
1
"__id__": 8
4
},
},
{
{
"__id__": 8
2
"__id__": 8
5
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -3547,13 +3675,13 @@
...
@@ -3547,13 +3675,13 @@
"_name": "text",
"_name": "text",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__":
78
"__id__":
81
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 8
0
"__id__": 8
3
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -3609,7 +3737,7 @@
...
@@ -3609,7 +3737,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
79
"__id__":
82
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -3642,7 +3770,7 @@
...
@@ -3642,7 +3770,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
78
"__id__":
81
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -3674,7 +3802,7 @@
...
@@ -3674,7 +3802,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
78
"__id__":
81
},
},
"_enabled": true,
"_enabled": true,
"_normalMaterial": null,
"_normalMaterial": null,
...
@@ -3683,7 +3811,7 @@
...
@@ -3683,7 +3811,7 @@
"zoomScale": 1.2,
"zoomScale": 1.2,
"clickEvents": [
"clickEvents": [
{
{
"__id__": 8
3
"__id__": 8
6
}
}
],
],
"_N$interactable": true,
"_N$interactable": true,
...
@@ -3756,20 +3884,20 @@
...
@@ -3756,20 +3884,20 @@
"_name": "reset",
"_name": "reset",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 5
5
"__id__": 5
8
},
},
"_children": [
"_children": [
{
{
"__id__": 8
5
"__id__": 8
8
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
87
"__id__":
90
},
},
{
{
"__id__":
88
"__id__":
91
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -3825,13 +3953,13 @@
...
@@ -3825,13 +3953,13 @@
"_name": "text",
"_name": "text",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 8
4
"__id__": 8
7
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 8
6
"__id__": 8
9
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -3887,7 +4015,7 @@
...
@@ -3887,7 +4015,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 8
5
"__id__": 8
8
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -3920,7 +4048,7 @@
...
@@ -3920,7 +4048,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 8
4
"__id__": 8
7
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -3952,7 +4080,7 @@
...
@@ -3952,7 +4080,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 8
4
"__id__": 8
7
},
},
"_enabled": true,
"_enabled": true,
"_normalMaterial": null,
"_normalMaterial": null,
...
@@ -3961,7 +4089,7 @@
...
@@ -3961,7 +4089,7 @@
"zoomScale": 1.2,
"zoomScale": 1.2,
"clickEvents": [
"clickEvents": [
{
{
"__id__":
89
"__id__":
92
}
}
],
],
"_N$interactable": true,
"_N$interactable": true,
...
@@ -4034,7 +4162,7 @@
...
@@ -4034,7 +4162,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 5
5
"__id__": 5
8
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4066,7 +4194,7 @@
...
@@ -4066,7 +4194,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 5
5
"__id__": 5
8
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -4093,7 +4221,7 @@
...
@@ -4093,7 +4221,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 5
5
"__id__": 5
8
},
},
"_enabled": true,
"_enabled": true,
"_id": "733SpyAqlI84P6NfZrepxM"
"_id": "733SpyAqlI84P6NfZrepxM"
...
@@ -4107,19 +4235,19 @@
...
@@ -4107,19 +4235,19 @@
},
},
"_children": [
"_children": [
{
{
"__id__": 9
4
"__id__": 9
7
}
}
],
],
"_active": false,
"_active": false,
"_components": [
"_components": [
{
{
"__id__":
97
"__id__":
100
},
},
{
{
"__id__":
98
"__id__":
101
},
},
{
{
"__id__":
99
"__id__":
102
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4175,16 +4303,16 @@
...
@@ -4175,16 +4303,16 @@
"_name": "text",
"_name": "text",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 9
3
"__id__": 9
6
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 9
5
"__id__": 9
8
},
},
{
{
"__id__": 9
6
"__id__": 9
9
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4240,7 +4368,7 @@
...
@@ -4240,7 +4368,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 9
4
"__id__": 9
7
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4273,7 +4401,7 @@
...
@@ -4273,7 +4401,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 9
4
"__id__": 9
7
},
},
"_enabled": true,
"_enabled": true,
"_color": {
"_color": {
...
@@ -4291,7 +4419,7 @@
...
@@ -4291,7 +4419,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 9
3
"__id__": 9
6
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4323,7 +4451,7 @@
...
@@ -4323,7 +4451,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 9
3
"__id__": 9
6
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -4350,7 +4478,7 @@
...
@@ -4350,7 +4478,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 9
3
"__id__": 9
6
},
},
"_enabled": true,
"_enabled": true,
"_id": "cdYqZbT/VAp5uPVaI4uGT3"
"_id": "cdYqZbT/VAp5uPVaI4uGT3"
...
@@ -4408,13 +4536,16 @@
...
@@ -4408,13 +4536,16 @@
},
},
"_enabled": true,
"_enabled": true,
"rankContent": {
"rankContent": {
"__id__":
68
"__id__":
71
},
},
"rankTemplate": {
"rankTemplate": {
"__id__":
58
"__id__":
61
},
},
"rankpage": {
"rankpage": {
"__id__": 55
"__id__": 58
},
"debug": {
"__id__": 13
},
},
"_id": "eaTVUpqahPfZeO9+sUI7RP"
"_id": "eaTVUpqahPfZeO9+sUI7RP"
}
}
...
...
assets/wordgame_syllabus/scene/wordgame_syllabus.ts
View file @
f696c7af
...
@@ -16,6 +16,9 @@ export default class SceneComponent extends MyCocosSceneComponent {
...
@@ -16,6 +16,9 @@ export default class SceneComponent extends MyCocosSceneComponent {
@
property
(
cc
.
Node
)
@
property
(
cc
.
Node
)
rankpage
:
cc
.
Node
=
null
;
rankpage
:
cc
.
Node
=
null
;
@
property
(
cc
.
Label
)
debug
:
cc
.
Label
=
null
;
addPreloadImage
()
{
addPreloadImage
()
{
}
}
...
@@ -32,7 +35,11 @@ export default class SceneComponent extends MyCocosSceneComponent {
...
@@ -32,7 +35,11 @@ export default class SceneComponent extends MyCocosSceneComponent {
roomId
=
null
;
roomId
=
null
;
async
onLoadEnd
()
{
async
onLoadEnd
()
{
// this.debug.string = `cc.sys.platform==${cc.sys.platform}`;
this
.
roomId
=
await
getRoomId
();
this
.
roomId
=
await
getRoomId
();
// this.roomId = "7254829606002314017";
await
this
.
initView
();
await
this
.
initView
();
}
}
...
@@ -49,7 +56,7 @@ export default class SceneComponent extends MyCocosSceneComponent {
...
@@ -49,7 +56,7 @@ export default class SceneComponent extends MyCocosSceneComponent {
if
(
startFlag
)
{
if
(
startFlag
)
{
this
.
rankpage
.
active
=
true
;
this
.
rankpage
.
active
=
true
;
let
rows
=
await
asyncCallNetworkApiGet
(
'
/api/douyin/v1/rank
'
,
{
roomid
:
this
.
roomId
});
let
rows
=
await
asyncCallNetworkApiGet
(
'
/api/douyin/v1/rank
'
,
{
roomid
:
this
.
roomId
});
// let rows = await asyncCallNetworkApiGet('/api/douyin/v1/rank', {roomid: "72
48252618835790603
"});
// let rows = await asyncCallNetworkApiGet('/api/douyin/v1/rank', {roomid: "72
54829606002314017
"});
rows
=
JSON
.
parse
(
rows
);
rows
=
JSON
.
parse
(
rows
);
this
.
rankContent
.
removeAllChildren
();
this
.
rankContent
.
removeAllChildren
();
for
(
let
i
=
0
;
i
<
rows
.
length
;
i
++
)
{
for
(
let
i
=
0
;
i
<
rows
.
length
;
i
++
)
{
...
@@ -61,8 +68,7 @@ export default class SceneComponent extends MyCocosSceneComponent {
...
@@ -61,8 +68,7 @@ export default class SceneComponent extends MyCocosSceneComponent {
cc
.
find
(
`ready`
,
itemClone
).
active
=
false
;
cc
.
find
(
`ready`
,
itemClone
).
active
=
false
;
cc
.
find
(
`score`
,
itemClone
).
active
=
true
;
cc
.
find
(
`score`
,
itemClone
).
active
=
true
;
cc
.
find
(
`score`
,
itemClone
).
getComponent
(
cc
.
Label
).
string
=
row
.
score
;
cc
.
find
(
`score`
,
itemClone
).
getComponent
(
cc
.
Label
).
string
=
row
.
score
;
const
nickObj
=
JSON
.
parse
(
row
.
nick_name
);
await
this
.
drawNickName
(
itemClone
,
row
.
nick_name
);
await
this
.
drawNickName
(
itemClone
,
nickObj
);
}
}
}
else
{
}
else
{
this
.
rankpage
.
active
=
false
;
this
.
rankpage
.
active
=
false
;
...
@@ -74,7 +80,7 @@ export default class SceneComponent extends MyCocosSceneComponent {
...
@@ -74,7 +80,7 @@ export default class SceneComponent extends MyCocosSceneComponent {
},
1
);
},
1
);
}
}
drawNickName
(
node
,
nickObj
)
{
drawNickName
(
node
,
data
)
{
return
new
Promise
((
resolve
)
=>
{
return
new
Promise
((
resolve
)
=>
{
const
image
=
new
Image
();
const
image
=
new
Image
();
image
.
onload
=
()
=>
{
image
.
onload
=
()
=>
{
...
@@ -84,13 +90,12 @@ export default class SceneComponent extends MyCocosSceneComponent {
...
@@ -84,13 +90,12 @@ export default class SceneComponent extends MyCocosSceneComponent {
const
spriteFrame
=
new
cc
.
SpriteFrame
(
texture
);
const
spriteFrame
=
new
cc
.
SpriteFrame
(
texture
);
const
coverNode
=
cc
.
find
(
`nickname`
,
node
);
const
coverNode
=
cc
.
find
(
`nickname`
,
node
);
coverNode
.
getComponent
(
cc
.
Sprite
).
spriteFrame
=
spriteFrame
;
coverNode
.
getComponent
(
cc
.
Sprite
).
spriteFrame
=
spriteFrame
;
const
sx
=
nickObj
.
width
/
coverNode
.
width
;
//
const sx = nickObj.width / coverNode.width;
const
sy
=
nickObj
.
height
/
coverNode
.
height
;
//
const sy = nickObj.height / coverNode.height;
coverNode
.
scale
=
Math
.
max
(
sx
,
sy
);
//
coverNode.scale = Math.max(sx, sy);
resolve
();
resolve
();
}
}
image
.
src
=
nickObj
.
data
;
image
.
src
=
data
;
// image.src = `data:image/png;base64,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`;
});
});
}
}
...
...
settings/builder.json
View file @
f696c7af
{
{
"title"
:
"play"
,
"title"
:
"play"
,
"packageName"
:
"org.cocos2d.demo"
,
"packageName"
:
"org.cocos2d.demo"
,
"startScene"
:
"
0737ce42-24f0-45c6-8e1a-8bdab4f74ba3
"
,
"startScene"
:
"
d19b7acc-9db6-4c71-865c-6aa2e00f3a2f
"
,
"excludeScenes"
:
[],
"excludeScenes"
:
[],
"includeSDKBox"
:
false
,
"includeSDKBox"
:
false
,
"orientation"
:
{
"orientation"
:
{
...
@@ -28,7 +28,8 @@
...
@@ -28,7 +28,8 @@
},
},
"ios"
:
{
"ios"
:
{
"REMOTE_SERVER_ROOT"
:
""
,
"REMOTE_SERVER_ROOT"
:
""
,
"packageName"
:
"org.cocos2d.demo"
"packageName"
:
"org.cocos2d.demo"
,
"ios_enable_jit"
:
true
},
},
"mac"
:
{
"mac"
:
{
"REMOTE_SERVER_ROOT"
:
""
,
"REMOTE_SERVER_ROOT"
:
""
,
...
@@ -50,5 +51,6 @@
...
@@ -50,5 +51,6 @@
"scheme"
:
"https"
,
"scheme"
:
"https"
,
"skipRecord"
:
false
"skipRecord"
:
false
},
},
"appBundle"
:
false
"appBundle"
:
false
,
"agreements"
:
{}
}
}
settings/bytedance.json
0 → 100644
View file @
f696c7af
{
"appid"
:
"ttd8b5ae084789dd6810"
,
"orientation"
:
"landscape"
,
"separate_engine"
:
false
,
"REMOTE_SERVER_ROOT"
:
""
,
"subContext"
:
""
,
"startSceneAssetBundle"
:
false
}
settings/project.json
View file @
f696c7af
{
{
"last-module-event-record-time"
:
16
00677246969
,
"last-module-event-record-time"
:
16
89133324084
,
"migrate-history"
:
[
"migrate-history"
:
[
"cloud-function"
"cloud-function"
]
]
...
...
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