Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
U
unit_demo
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
unit_demo
Commits
eaa67fb7
Commit
eaa67fb7
authored
Sep 17, 2020
by
范雪寒
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 将预制节点放到resources文件夹里
parent
3ae5f23b
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
120 additions
and
1462 deletions
+120
-1462
resources.meta
play/assets/resources.meta
+12
-0
prefabs.meta
play/assets/resources/prefabs.meta
+0
-0
ButtonsNode.js
play/assets/resources/prefabs/ButtonsNode.js
+70
-0
ButtonsNode.js.meta
play/assets/resources/prefabs/ButtonsNode.js.meta
+0
-0
ButtonsNode.prefab
play/assets/resources/prefabs/ButtonsNode.prefab
+26
-12
ButtonsNode.prefab.meta
play/assets/resources/prefabs/ButtonsNode.prefab.meta
+0
-0
ButtonsNode.js
play/assets/tmpGame/prefabs/ButtonsNode.js
+0
-38
mainPage.fire
play/assets/tmpGame/scene/mainPage.fire
+4
-1411
mainPage.js
play/assets/tmpGame/scene/mainPage.js
+8
-1
No files found.
play/assets/resources.meta
0 → 100644
View file @
eaa67fb7
{
"ver": "1.1.2",
"uuid": "75835c75-5df7-4594-bb63-56f33654da79",
"isBundle": true,
"bundleName": "resources",
"priority": 8,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
play/assets/
tmpGame
/prefabs.meta
→
play/assets/
resources
/prefabs.meta
View file @
eaa67fb7
File moved
play/assets/resources/prefabs/ButtonsNode.js
0 → 100644
View file @
eaa67fb7
// Learn cc.Class:
// - https://docs.cocos.com/creator/manual/en/scripting/class.html
// Learn Attribute:
// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html
// Learn life-cycle callbacks:
// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html
cc
.
Class
({
extends
:
cc
.
Component
,
properties
:
{
},
ctor
()
{
this
.
_dataList
=
null
;
this
.
_currentIdx
=
0
;
},
start
()
{
this
.
initListeners
();
},
initListeners
()
{
const
BtnNext
=
this
.
node
.
getChildByName
(
'
BtnNext
'
);
const
BtnPrevious
=
this
.
node
.
getChildByName
(
'
BtnPrevious
'
);
const
BtnBack
=
this
.
node
.
getChildByName
(
'
BtnBack
'
);
const
buttonsNode
=
cc
.
find
(
'
ButtonsNode
'
);
if
(
!
this
.
_dataList
[
this
.
_currentIdx
+
1
])
{
BtnNext
.
active
=
false
;
}
BtnNext
.
on
(
'
click
'
,
()
=>
{
demoItem
=
this
.
_dataList
[
this
.
_currentIdx
+
1
];
cc
.
director
.
loadScene
(
demoItem
.
sceneName
,
()
=>
{
const
scene
=
cc
.
director
.
getScene
();
const
newButtonNode
=
cc
.
instantiate
(
buttonsNode
);
newButtonNode
.
parent
=
scene
;
newButtonNode
.
x
=
0
;
newButtonNode
.
y
=
0
;
newButtonNode
.
getComponent
(
'
ButtonsNode
'
).
setDataList
(
demoList
,
idx
);
});
});
if
(
!
this
.
_dataList
[
this
.
_currentIdx
-
1
])
{
BtnPrevious
.
active
=
false
;
}
BtnPrevious
.
on
(
'
click
'
,
()
=>
{
demoItem
=
this
.
_dataList
[
this
.
_currentIdx
-
1
];
cc
.
director
.
loadScene
(
demoItem
.
sceneName
,
()
=>
{
const
scene
=
cc
.
director
.
getScene
();
const
newButtonNode
=
cc
.
instantiate
(
buttonsNode
);
newButtonNode
.
parent
=
scene
;
newButtonNode
.
x
=
0
;
newButtonNode
.
y
=
0
;
newButtonNode
.
getComponent
(
'
ButtonsNode
'
).
setDataList
(
demoList
,
idx
);
});
});
BtnBack
.
on
(
'
click
'
,
()
=>
{
cc
.
director
.
loadScene
(
'
mainPage
'
);
});
},
setDataList
(
dataList
,
currentIdx
)
{
this
.
_dataList
=
dataList
;
this
.
_currentIdx
=
currentIdx
;
},
// update (dt) {},
});
play/assets/
tmpGame
/prefabs/ButtonsNode.js.meta
→
play/assets/
resources
/prefabs/ButtonsNode.js.meta
View file @
eaa67fb7
File moved
play/assets/
tmpGame
/prefabs/ButtonsNode.prefab
→
play/assets/
resources
/prefabs/ButtonsNode.prefab
View file @
eaa67fb7
...
@@ -28,9 +28,13 @@
...
@@ -28,9 +28,13 @@
}
}
],
],
"_active": true,
"_active": true,
"_components": [
],
"_components": [
"_prefab":
{
{
"__id__": 35
"__id__": 35
}
],
"_prefab": {
"__id__": 36
},
},
"_opacity": 255,
"_opacity": 255,
"_color": {
"_color": {
...
@@ -325,7 +329,7 @@
...
@@ -325,7 +329,7 @@
"__id__": 1
"__id__": 1
},
},
"asset": {
"asset": {
"__
id__": 0
"__
uuid__": "ffa620db-880d-4ed4-8dd1-00133559ac52"
},
},
"fileId": "f7UGNL7UVGk4CTBReMALGN",
"fileId": "f7UGNL7UVGk4CTBReMALGN",
"sync": false
"sync": false
...
@@ -395,7 +399,7 @@
...
@@ -395,7 +399,7 @@
"__id__": 1
"__id__": 1
},
},
"asset": {
"asset": {
"__
id__": 0
"__
uuid__": "ffa620db-880d-4ed4-8dd1-00133559ac52"
},
},
"fileId": "7bl06GQFdGLa/C8+8YqOF7",
"fileId": "7bl06GQFdGLa/C8+8YqOF7",
"sync": false
"sync": false
...
@@ -515,7 +519,7 @@
...
@@ -515,7 +519,7 @@
"__id__": 1
"__id__": 1
},
},
"asset": {
"asset": {
"__
id__": 0
"__
uuid__": "ffa620db-880d-4ed4-8dd1-00133559ac52"
},
},
"fileId": "5fVxX0MPlFjKczib59bpkl",
"fileId": "5fVxX0MPlFjKczib59bpkl",
"sync": false
"sync": false
...
@@ -766,7 +770,7 @@
...
@@ -766,7 +770,7 @@
"__id__": 1
"__id__": 1
},
},
"asset": {
"asset": {
"__
id__": 0
"__
uuid__": "ffa620db-880d-4ed4-8dd1-00133559ac52"
},
},
"fileId": "69vL47dSFMiYTImeroVZPx",
"fileId": "69vL47dSFMiYTImeroVZPx",
"sync": false
"sync": false
...
@@ -836,7 +840,7 @@
...
@@ -836,7 +840,7 @@
"__id__": 1
"__id__": 1
},
},
"asset": {
"asset": {
"__
id__": 0
"__
uuid__": "ffa620db-880d-4ed4-8dd1-00133559ac52"
},
},
"fileId": "02nTlGH8pMYKr9XuX25KFp",
"fileId": "02nTlGH8pMYKr9XuX25KFp",
"sync": false
"sync": false
...
@@ -956,7 +960,7 @@
...
@@ -956,7 +960,7 @@
"__id__": 1
"__id__": 1
},
},
"asset": {
"asset": {
"__
id__": 0
"__
uuid__": "ffa620db-880d-4ed4-8dd1-00133559ac52"
},
},
"fileId": "416mO1C4lJEb9hSe7wx3Jg",
"fileId": "416mO1C4lJEb9hSe7wx3Jg",
"sync": false
"sync": false
...
@@ -1207,7 +1211,7 @@
...
@@ -1207,7 +1211,7 @@
"__id__": 1
"__id__": 1
},
},
"asset": {
"asset": {
"__
id__": 0
"__
uuid__": "ffa620db-880d-4ed4-8dd1-00133559ac52"
},
},
"fileId": "771uGcSddClYMu7NGmbLaH",
"fileId": "771uGcSddClYMu7NGmbLaH",
"sync": false
"sync": false
...
@@ -1277,7 +1281,7 @@
...
@@ -1277,7 +1281,7 @@
"__id__": 1
"__id__": 1
},
},
"asset": {
"asset": {
"__
id__": 0
"__
uuid__": "ffa620db-880d-4ed4-8dd1-00133559ac52"
},
},
"fileId": "4b75kT7rVHTruaArhQn4G5",
"fileId": "4b75kT7rVHTruaArhQn4G5",
"sync": false
"sync": false
...
@@ -1397,18 +1401,28 @@
...
@@ -1397,18 +1401,28 @@
"__id__": 1
"__id__": 1
},
},
"asset": {
"asset": {
"__
id__": 0
"__
uuid__": "ffa620db-880d-4ed4-8dd1-00133559ac52"
},
},
"fileId": "aa1/O6kH1CT62jMktS6TUP",
"fileId": "aa1/O6kH1CT62jMktS6TUP",
"sync": false
"sync": false
},
},
{
"__type__": "abb52OcegZE5rPyTByt2ykw",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 1
},
"_enabled": true,
"_id": ""
},
{
{
"__type__": "cc.PrefabInfo",
"__type__": "cc.PrefabInfo",
"root": {
"root": {
"__id__": 1
"__id__": 1
},
},
"asset": {
"asset": {
"__
id__": 0
"__
uuid__": "ffa620db-880d-4ed4-8dd1-00133559ac52"
},
},
"fileId": "d7OJrcCmJLEIoN3nqNXoZJ",
"fileId": "d7OJrcCmJLEIoN3nqNXoZJ",
"sync": false
"sync": false
...
...
play/assets/
tmpGame
/prefabs/ButtonsNode.prefab.meta
→
play/assets/
resources
/prefabs/ButtonsNode.prefab.meta
View file @
eaa67fb7
File moved
play/assets/tmpGame/prefabs/ButtonsNode.js
deleted
100644 → 0
View file @
3ae5f23b
// Learn cc.Class:
// - https://docs.cocos.com/creator/manual/en/scripting/class.html
// Learn Attribute:
// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html
// Learn life-cycle callbacks:
// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html
cc
.
Class
({
extends
:
cc
.
Component
,
properties
:
{
// foo: {
// // ATTRIBUTES:
// default: null, // The default value will be used only when the component attaching
// // to a node for the first time
// type: cc.SpriteFrame, // optional, default is typeof default
// serializable: true, // optional, default is true
// },
// bar: {
// get () {
// return this._bar;
// },
// set (value) {
// this._bar = value;
// }
// },
},
// LIFE-CYCLE CALLBACKS:
// onLoad () {},
start
()
{
},
// update (dt) {},
});
play/assets/tmpGame/scene/mainPage.fire
View file @
eaa67fb7
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
"__id__": 2
"__id__": 2
}
}
],
],
"_active":
tru
e,
"_active":
fals
e,
"_components": [],
"_components": [],
"_prefab": null,
"_prefab": null,
"_opacity": 255,
"_opacity": 255,
...
@@ -73,21 +73,18 @@
...
@@ -73,21 +73,18 @@
},
},
{
{
"__id__": 5
"__id__": 5
},
{
"__id__": 12
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
47
"__id__":
12
},
},
{
{
"__id__":
48
"__id__":
13
},
},
{
{
"__id__":
49
"__id__":
14
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -608,1410 +605,6 @@
...
@@ -608,1410 +605,6 @@
},
},
"_id": "0a0IhGy5REDYQ/VngTF5zN"
"_id": "0a0IhGy5REDYQ/VngTF5zN"
},
},
{
"__type__": "cc.Node",
"_name": "ButtonsNode",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_children": [
{
"__id__": 13
},
{
"__id__": 24
},
{
"__id__": 35
}
],
"_active": true,
"_components": [],
"_prefab": {
"__id__": 46
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 1280,
"height": 720
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
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": "d7OJrcCmJLEIoN3nqNXoZJ"
},
{
"__type__": "cc.Node",
"_name": "BtnNext",
"_objFlags": 0,
"_parent": {
"__id__": 12
},
"_children": [
{
"__id__": 14
}
],
"_active": true,
"_components": [
{
"__id__": 21
},
{
"__id__": 22
}
],
"_prefab": {
"__id__": 23
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 200,
"height": 40
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
440,
-290,
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": "5fVxX0MPlFjKczib59bpkl"
},
{
"__type__": "cc.Node",
"_name": "Background",
"_objFlags": 512,
"_parent": {
"__id__": 13
},
"_children": [
{
"__id__": 15
}
],
"_active": true,
"_components": [
{
"__id__": 18
},
{
"__id__": 19
}
],
"_prefab": {
"__id__": 20
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 200,
"height": 40
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
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": "7bl06GQFdGLa/C8+8YqOF7"
},
{
"__type__": "cc.Node",
"_name": "Label",
"_objFlags": 512,
"_parent": {
"__id__": 14
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 16
}
],
"_prefab": {
"__id__": 17
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 200,
"height": 40
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
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": "f7UGNL7UVGk4CTBReMALGN"
},
{
"__type__": "cc.Label",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 15
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_useOriginalSize": false,
"_string": "NEXT --->",
"_N$string": "NEXT --->",
"_fontSize": 20,
"_lineHeight": 40,
"_enableWrapText": false,
"_N$file": null,
"_isSystemFontUsed": true,
"_spacingX": 0,
"_batchAsBitmap": false,
"_styleFlags": 0,
"_underlineHeight": 0,
"_N$horizontalAlign": 1,
"_N$verticalAlign": 1,
"_N$fontFamily": "Arial",
"_N$overflow": 1,
"_N$cacheMode": 1,
"_id": "d6fdjPj61HWI6Ed/owcLvO"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 12
},
"asset": {
"__uuid__": "ffa620db-880d-4ed4-8dd1-00133559ac52"
},
"fileId": "f7UGNL7UVGk4CTBReMALGN",
"sync": false
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 14
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
},
"_type": 1,
"_sizeMode": 0,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "5afVVBqpVFjZTBP8gsj8XP"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 14
},
"_enabled": true,
"alignMode": 0,
"_target": null,
"_alignFlags": 45,
"_left": 0,
"_right": 0,
"_top": 0,
"_bottom": 0,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 100,
"_originalHeight": 40,
"_id": "9fyxNmTrtEK6noWH+pK/zZ"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 12
},
"asset": {
"__uuid__": "ffa620db-880d-4ed4-8dd1-00133559ac52"
},
"fileId": "7bl06GQFdGLa/C8+8YqOF7",
"sync": false
},
{
"__type__": "cc.Button",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 13
},
"_enabled": true,
"_normalMaterial": null,
"_grayMaterial": null,
"duration": 0.1,
"zoomScale": 1.2,
"clickEvents": [],
"_N$interactable": true,
"_N$enableAutoGrayEffect": false,
"_N$transition": 2,
"transition": 2,
"_N$normalColor": {
"__type__": "cc.Color",
"r": 230,
"g": 230,
"b": 230,
"a": 255
},
"_N$pressedColor": {
"__type__": "cc.Color",
"r": 200,
"g": 200,
"b": 200,
"a": 255
},
"pressedColor": {
"__type__": "cc.Color",
"r": 200,
"g": 200,
"b": 200,
"a": 255
},
"_N$hoverColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"hoverColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_N$disabledColor": {
"__type__": "cc.Color",
"r": 120,
"g": 120,
"b": 120,
"a": 200
},
"_N$normalSprite": {
"__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
},
"_N$pressedSprite": {
"__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
},
"pressedSprite": {
"__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
},
"_N$hoverSprite": {
"__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
},
"hoverSprite": {
"__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
},
"_N$disabledSprite": {
"__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
},
"_N$target": {
"__id__": 14
},
"_id": "8cfby2aBJB/pMvBWuUZ79M"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 13
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 36,
"_left": 0,
"_right": 100,
"_top": 0,
"_bottom": 50,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_id": "69kNzi3KhH1Jnn4xTEXteD"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 12
},
"asset": {
"__uuid__": "ffa620db-880d-4ed4-8dd1-00133559ac52"
},
"fileId": "5fVxX0MPlFjKczib59bpkl",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "BtnPrevious",
"_objFlags": 0,
"_parent": {
"__id__": 12
},
"_children": [
{
"__id__": 25
}
],
"_active": true,
"_components": [
{
"__id__": 32
},
{
"__id__": 33
}
],
"_prefab": {
"__id__": 34
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 200,
"height": 40
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
-440,
-290,
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": "416mO1C4lJEb9hSe7wx3Jg"
},
{
"__type__": "cc.Node",
"_name": "Background",
"_objFlags": 512,
"_parent": {
"__id__": 24
},
"_children": [
{
"__id__": 26
}
],
"_active": true,
"_components": [
{
"__id__": 29
},
{
"__id__": 30
}
],
"_prefab": {
"__id__": 31
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 200,
"height": 40
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
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": "02nTlGH8pMYKr9XuX25KFp"
},
{
"__type__": "cc.Node",
"_name": "Label",
"_objFlags": 512,
"_parent": {
"__id__": 25
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 27
}
],
"_prefab": {
"__id__": 28
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 200,
"height": 40
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
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": "69vL47dSFMiYTImeroVZPx"
},
{
"__type__": "cc.Label",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 26
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_useOriginalSize": false,
"_string": "<---PREVIOUS",
"_N$string": "<---PREVIOUS",
"_fontSize": 20,
"_lineHeight": 40,
"_enableWrapText": false,
"_N$file": null,
"_isSystemFontUsed": true,
"_spacingX": 0,
"_batchAsBitmap": false,
"_styleFlags": 0,
"_underlineHeight": 0,
"_N$horizontalAlign": 1,
"_N$verticalAlign": 1,
"_N$fontFamily": "Arial",
"_N$overflow": 1,
"_N$cacheMode": 1,
"_id": "bb2VwBFLlBO5+hF2CWHWUn"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 12
},
"asset": {
"__uuid__": "ffa620db-880d-4ed4-8dd1-00133559ac52"
},
"fileId": "69vL47dSFMiYTImeroVZPx",
"sync": false
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 25
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
},
"_type": 1,
"_sizeMode": 0,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "32BO8Q/6RDL4c3ddlDC5ZE"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 25
},
"_enabled": true,
"alignMode": 0,
"_target": null,
"_alignFlags": 45,
"_left": 0,
"_right": 0,
"_top": 0,
"_bottom": 0,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 100,
"_originalHeight": 40,
"_id": "b1j6e5yeNGlLg6eaZVbURr"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 12
},
"asset": {
"__uuid__": "ffa620db-880d-4ed4-8dd1-00133559ac52"
},
"fileId": "02nTlGH8pMYKr9XuX25KFp",
"sync": false
},
{
"__type__": "cc.Button",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 24
},
"_enabled": true,
"_normalMaterial": null,
"_grayMaterial": null,
"duration": 0.1,
"zoomScale": 1.2,
"clickEvents": [],
"_N$interactable": true,
"_N$enableAutoGrayEffect": false,
"_N$transition": 2,
"transition": 2,
"_N$normalColor": {
"__type__": "cc.Color",
"r": 230,
"g": 230,
"b": 230,
"a": 255
},
"_N$pressedColor": {
"__type__": "cc.Color",
"r": 200,
"g": 200,
"b": 200,
"a": 255
},
"pressedColor": {
"__type__": "cc.Color",
"r": 200,
"g": 200,
"b": 200,
"a": 255
},
"_N$hoverColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"hoverColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_N$disabledColor": {
"__type__": "cc.Color",
"r": 120,
"g": 120,
"b": 120,
"a": 200
},
"_N$normalSprite": {
"__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
},
"_N$pressedSprite": {
"__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
},
"pressedSprite": {
"__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
},
"_N$hoverSprite": {
"__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
},
"hoverSprite": {
"__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
},
"_N$disabledSprite": {
"__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
},
"_N$target": {
"__id__": 25
},
"_id": "4a4lXNpztB/LpNwki6Wtby"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 24
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 12,
"_left": 100,
"_right": 0,
"_top": 0,
"_bottom": 50,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_id": "07gUYJeUxNs6A6EHQjcctZ"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 12
},
"asset": {
"__uuid__": "ffa620db-880d-4ed4-8dd1-00133559ac52"
},
"fileId": "416mO1C4lJEb9hSe7wx3Jg",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "BtnBack",
"_objFlags": 0,
"_parent": {
"__id__": 12
},
"_children": [
{
"__id__": 36
}
],
"_active": true,
"_components": [
{
"__id__": 43
},
{
"__id__": 44
}
],
"_prefab": {
"__id__": 45
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 100,
"height": 40
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
-490,
290,
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": "aa1/O6kH1CT62jMktS6TUP"
},
{
"__type__": "cc.Node",
"_name": "Background",
"_objFlags": 512,
"_parent": {
"__id__": 35
},
"_children": [
{
"__id__": 37
}
],
"_active": true,
"_components": [
{
"__id__": 40
},
{
"__id__": 41
}
],
"_prefab": {
"__id__": 42
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 100,
"height": 40
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
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": "4b75kT7rVHTruaArhQn4G5"
},
{
"__type__": "cc.Node",
"_name": "Label",
"_objFlags": 512,
"_parent": {
"__id__": 36
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 38
}
],
"_prefab": {
"__id__": 39
},
"_opacity": 255,
"_color": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 100,
"height": 40
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
0,
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": "771uGcSddClYMu7NGmbLaH"
},
{
"__type__": "cc.Label",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 37
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_useOriginalSize": false,
"_string": "back",
"_N$string": "back",
"_fontSize": 20,
"_lineHeight": 40,
"_enableWrapText": false,
"_N$file": null,
"_isSystemFontUsed": true,
"_spacingX": 0,
"_batchAsBitmap": false,
"_styleFlags": 0,
"_underlineHeight": 0,
"_N$horizontalAlign": 1,
"_N$verticalAlign": 1,
"_N$fontFamily": "Arial",
"_N$overflow": 1,
"_N$cacheMode": 1,
"_id": "f0d29bCWdBLoC6kEnJMCuz"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 12
},
"asset": {
"__uuid__": "ffa620db-880d-4ed4-8dd1-00133559ac52"
},
"fileId": "771uGcSddClYMu7NGmbLaH",
"sync": false
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 36
},
"_enabled": true,
"_materials": [
{
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
"__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
},
"_type": 1,
"_sizeMode": 0,
"_fillType": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
"_id": "d480mZonRKUIcs3/LIxUgZ"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 36
},
"_enabled": true,
"alignMode": 0,
"_target": null,
"_alignFlags": 45,
"_left": 0,
"_right": 0,
"_top": 0,
"_bottom": 0,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 100,
"_originalHeight": 40,
"_id": "d7et9iO4BDTaolM8bGivw8"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 12
},
"asset": {
"__uuid__": "ffa620db-880d-4ed4-8dd1-00133559ac52"
},
"fileId": "4b75kT7rVHTruaArhQn4G5",
"sync": false
},
{
"__type__": "cc.Button",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 35
},
"_enabled": true,
"_normalMaterial": null,
"_grayMaterial": null,
"duration": 0.1,
"zoomScale": 1.2,
"clickEvents": [],
"_N$interactable": true,
"_N$enableAutoGrayEffect": false,
"_N$transition": 2,
"transition": 2,
"_N$normalColor": {
"__type__": "cc.Color",
"r": 230,
"g": 230,
"b": 230,
"a": 255
},
"_N$pressedColor": {
"__type__": "cc.Color",
"r": 200,
"g": 200,
"b": 200,
"a": 255
},
"pressedColor": {
"__type__": "cc.Color",
"r": 200,
"g": 200,
"b": 200,
"a": 255
},
"_N$hoverColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"hoverColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_N$disabledColor": {
"__type__": "cc.Color",
"r": 120,
"g": 120,
"b": 120,
"a": 200
},
"_N$normalSprite": {
"__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
},
"_N$pressedSprite": {
"__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
},
"pressedSprite": {
"__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
},
"_N$hoverSprite": {
"__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
},
"hoverSprite": {
"__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
},
"_N$disabledSprite": {
"__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
},
"_N$target": {
"__id__": 36
},
"_id": "53xQZPqvRDkbi4MgATLov1"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 35
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 9,
"_left": 100,
"_right": 100,
"_top": 50,
"_bottom": 50,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_id": "88ycMdiBVMx7+RlDEjSTWf"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 12
},
"asset": {
"__uuid__": "ffa620db-880d-4ed4-8dd1-00133559ac52"
},
"fileId": "aa1/O6kH1CT62jMktS6TUP",
"sync": false
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 12
},
"asset": {
"__uuid__": "ffa620db-880d-4ed4-8dd1-00133559ac52"
},
"fileId": "d7OJrcCmJLEIoN3nqNXoZJ",
"sync": false
},
{
{
"__type__": "cc.Canvas",
"__type__": "cc.Canvas",
"_name": "",
"_name": "",
...
...
play/assets/tmpGame/scene/mainPage.js
View file @
eaa67fb7
...
@@ -34,9 +34,16 @@ cc.Class({
...
@@ -34,9 +34,16 @@ cc.Class({
button
.
x
=
(
width
/
widthLength
)
*
((
idx
%
widthLength
)
-
(
widthLength
-
1
)
/
2
);
button
.
x
=
(
width
/
widthLength
)
*
((
idx
%
widthLength
)
-
(
widthLength
-
1
)
/
2
);
button
.
y
=
300
-
Math
.
floor
(
idx
/
widthLength
)
*
50
;
button
.
y
=
300
-
Math
.
floor
(
idx
/
widthLength
)
*
50
;
const
buttonsNode
=
cc
.
find
(
'
ButtonsNode
'
);
button
.
on
(
'
click
'
,
()
=>
{
button
.
on
(
'
click
'
,
()
=>
{
cc
.
director
.
loadScene
(
demoItem
.
sceneName
,
()
=>
{
cc
.
director
.
loadScene
(
demoItem
.
sceneName
,
()
=>
{
const
scene
=
cc
.
director
.
getScene
();
const
newButtonNode
=
cc
.
instantiate
(
buttonsNode
);
newButtonNode
.
parent
=
scene
;
newButtonNode
.
x
=
0
;
newButtonNode
.
y
=
0
;
newButtonNode
.
getComponent
(
'
ButtonsNode
'
).
setDataList
(
demoList
,
idx
);
});
});
});
});
});
});
...
...
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