complete sceneClass
Showing
73 changed files
with
1102 additions
and
25 deletions
assets/Scene/sceneClass.fire
0 → 100644
This diff is collapsed.
Click to expand it.
assets/Scene/sceneClass.fire.meta
0 → 100644
assets/Script/Class.js
0 → 100644
This diff is collapsed.
Click to expand it.
assets/Script/Class.js.meta
0 → 100644
... | @@ -5,6 +5,7 @@ var FocusInfo = require('FocusInfo'); | ... | @@ -5,6 +5,7 @@ var FocusInfo = require('FocusInfo'); |
5 | var TVCanvas = require('TVCanvas'); | 5 | var TVCanvas = require('TVCanvas'); |
6 | var ListView = require('ListView'); | 6 | var ListView = require('ListView'); |
7 | var GameLobbyCategoryJson = require('GameLobbyCategoryJson'); | 7 | var GameLobbyCategoryJson = require('GameLobbyCategoryJson'); |
8 | var GameCategoryListCell = require('GameCategoryListCell'); | ||
8 | 9 | ||
9 | cc.Class({ | 10 | cc.Class({ |
10 | extends: TVCanvas, | 11 | extends: TVCanvas, |
... | @@ -199,7 +200,12 @@ cc.Class({ | ... | @@ -199,7 +200,12 @@ cc.Class({ |
199 | this._cFocus.flyFocus(this._fiCurrentFocus, fiFocusTarget, Common.MOVE_DIRECTION_LEFT, null, oScrollParameter); | 200 | this._cFocus.flyFocus(this._fiCurrentFocus, fiFocusTarget, Common.MOVE_DIRECTION_LEFT, null, oScrollParameter); |
200 | } | 201 | } |
201 | if (event.keyCode == cc.macro.KEY.enter || event.keyCode == Common.ANDROID_KEY.enter) { | 202 | if (event.keyCode == cc.macro.KEY.enter || event.keyCode == Common.ANDROID_KEY.enter) { |
202 | this.doCurrentFocusTVLinkAction(Common.TV_LINK_ACTION_CLICK); | 203 | // this.doCurrentFocusTVLinkAction(Common.TV_LINK_ACTION_CLICK); |
204 | |||
205 | var apkName=this._fiCurrentFocus.node.getComponent(GameCategoryListCell).apkName; | ||
206 | // cc.log("点击包名:"+apkName); | ||
207 | let o1 = jsb.reflection.callStaticMethod("org/cocos2dx/javascript/TopdrawSDKWrapper", "startGame", "(ILjava/lang/String;Ljava/lang/String;)V", | ||
208 | parseInt(1), apkName, "onGetPlayURL"); | ||
203 | } | 209 | } |
204 | if (event.keyCode == cc.macro.KEY.space) { | 210 | if (event.keyCode == cc.macro.KEY.space) { |
205 | // this.doCurrentFocusTVLinkAction(Common.TV_LINK_ACTION_CLICK); | 211 | // this.doCurrentFocusTVLinkAction(Common.TV_LINK_ACTION_CLICK); |
... | @@ -212,7 +218,14 @@ cc.Class({ | ... | @@ -212,7 +218,14 @@ cc.Class({ |
212 | if (lvCategoryList) { | 218 | if (lvCategoryList) { |
213 | this._oSceneContext.categoryRecordIndexOfFirstCell = lvCategoryList.getRecordIndexOfFirstCellInPage(); | 219 | this._oSceneContext.categoryRecordIndexOfFirstCell = lvCategoryList.getRecordIndexOfFirstCellInPage(); |
214 | } | 220 | } |
221 | }, | ||
215 | 222 | ||
223 | onGetPlayURL : function(strPlayURL){ | ||
224 | try{ | ||
225 | |||
226 | }catch(ex){ | ||
227 | |||
228 | } | ||
216 | }, | 229 | }, |
217 | 230 | ||
218 | onBeforeFocusChange: function (event) { | 231 | onBeforeFocusChange: function (event) { | ... | ... |
... | @@ -281,9 +281,13 @@ cc.Class({ | ... | @@ -281,9 +281,13 @@ cc.Class({ |
281 | ); | 281 | ); |
282 | if (currentNode.getComponent(FocusInfo)) { | 282 | if (currentNode.getComponent(FocusInfo)) { |
283 | let fiBlock = currentNode.getComponent(FocusInfo); //弄tvlink | 283 | let fiBlock = currentNode.getComponent(FocusInfo); //弄tvlink |
284 | if(currentNode.name=="promotionItem_9fd6d854-2a72-42d5-a2c0-1ce824cf406c"){ //针对课程表搞出来一个tvlink | ||
285 | fiBlock.setTVLink('{"click":[{"action":"ChangeScene","parameters":{"sceneName":"sceneClass"}}]}'); | ||
286 | }else{ | ||
284 | // fiBlock.setTVLink(currentRemote.tvlink); | 287 | // fiBlock.setTVLink(currentRemote.tvlink); |
285 | fiBlock.setTVLink('{"click":[{"action":"ChangeScene","parameters":{"sceneName":"sceneCategory"}}]}'); | 288 | fiBlock.setTVLink('{"click":[{"action":"ChangeScene","parameters":{"sceneName":"sceneCategory"}}]}'); |
286 | } | 289 | } |
290 | } | ||
287 | } else if (currentNode.name == "hasChildFrame" && currentNode.childrenCount > 0) { //渲染自动布局的节点 | 291 | } else if (currentNode.name == "hasChildFrame" && currentNode.childrenCount > 0) { //渲染自动布局的节点 |
288 | for (let k = 0; k < currentNode.childrenCount; k++) { | 292 | for (let k = 0; k < currentNode.childrenCount; k++) { |
289 | let sonCurrentNode = currentNode.children[k]; | 293 | let sonCurrentNode = currentNode.children[k]; | ... | ... |
... | @@ -100,6 +100,7 @@ cc.Class({ | ... | @@ -100,6 +100,7 @@ cc.Class({ |
100 | 100 | ||
101 | 101 | ||
102 | //this.node.getChildByName('ScrollBarContainer').getChildByName('ScrollBarBlock').addComponent(FocusInfo); | 102 | //this.node.getChildByName('ScrollBarContainer').getChildByName('ScrollBarBlock').addComponent(FocusInfo); |
103 | //cc.log("before instantiate..."+this.compListCell.PFB_NAME); | ||
103 | Common.loadRes(this.compListCell.PFB_NAME, | 104 | Common.loadRes(this.compListCell.PFB_NAME, |
104 | function (loadedResource) { | 105 | function (loadedResource) { |
105 | for (let i = 0; i < this._iCellRowCount * this._iCellCountEachRow; i++) { | 106 | for (let i = 0; i < this._iCellRowCount * this._iCellCountEachRow; i++) { |
... | @@ -156,7 +157,7 @@ cc.Class({ | ... | @@ -156,7 +157,7 @@ cc.Class({ |
156 | 157 | ||
157 | }, | 158 | }, |
158 | function (error) { | 159 | function (error) { |
159 | cc.log("Error When Loading Prefab Cell..."); | 160 | cc.log("Error When Loading Prefab Cell..."+error); |
160 | }, this | 161 | }, this |
161 | ); | 162 | ); |
162 | 163 | ... | ... |
... | @@ -11,66 +11,73 @@ cc.Class({ | ... | @@ -11,66 +11,73 @@ cc.Class({ |
11 | { | 11 | { |
12 | "id": 233, | 12 | "id": 233, |
13 | "title": "火箭小黄人", | 13 | "title": "火箭小黄人", |
14 | "packageName":"com.topdraw.xhx.bird", | ||
14 | "image": [ | 15 | "image": [ |
15 | { | 16 | { |
16 | "bg": "game/bg_xyx_1", | 17 | "bg": "game/bg_xyx_10", |
17 | "fileUrl": "game/xyx_1" | 18 | "fileUrl": "game/xyx_10" |
18 | } | 19 | } |
19 | ] | 20 | ] |
20 | }, | 21 | }, |
21 | { | 22 | { |
22 | "id": 233, | 23 | "id": 233, |
23 | "title": "接糖果", | 24 | "title": "接糖果", |
25 | "packageName":"com.topdraw.xhx.candy", | ||
24 | "image": [ | 26 | "image": [ |
25 | { | 27 | { |
26 | "bg": "game/bg_xyx_2", | 28 | "bg": "game/bg_xyx_5", |
27 | "fileUrl": "game/xyx_2" | 29 | "fileUrl": "game/xyx_5" |
28 | } | 30 | } |
29 | ] | 31 | ] |
30 | }, | 32 | }, |
31 | { | 33 | { |
32 | "id": 233, | 34 | "id": 233, |
33 | "title": "欢乐叠蛋糕", | 35 | "title": "欢乐叠蛋糕", |
36 | "packageName":"com.topdraw.xhx.cake", | ||
34 | "image": [ | 37 | "image": [ |
35 | { | 38 | { |
36 | "bg": "game/bg_xyx_3", | 39 | "bg": "game/bg_xyx_1", |
37 | "fileUrl": "game/xyx_3" | 40 | "fileUrl": "game/xyx_1" |
38 | } | 41 | } |
39 | ] | 42 | ] |
40 | }, | 43 | }, |
41 | { | 44 | { |
42 | "id": 233, | 45 | "id": 233, |
43 | "title": "记忆翻牌", | 46 | "title": "记忆翻牌", |
47 | "packageName":"com.topdraw.xhx.fanpai", | ||
44 | "image": [ | 48 | "image": [ |
45 | { | 49 | { |
46 | "bg": "game/bg_xyx_4", | 50 | "bg": "game/bg_xyx_2", |
47 | "fileUrl": "game/xyx_4" | 51 | "fileUrl": "game/xyx_2" |
48 | } | 52 | } |
49 | ] | 53 | ] |
50 | }, | 54 | }, |
51 | { | 55 | { |
52 | "id": 233, | 56 | "id": 233, |
53 | "title": "飞檐走壁", | 57 | "title": "飞檐走壁", |
58 | "packageName":"com.topdraw.xhx.feiyanzoubi", | ||
54 | "image": [ | 59 | "image": [ |
55 | { | 60 | { |
56 | "bg": "game/bg_xyx_5", | 61 | "bg": "game/bg_xyx_9", |
57 | "fileUrl": "game/xyx_5" | 62 | "fileUrl": "game/xyx_9" |
58 | } | 63 | } |
59 | ] | 64 | ] |
60 | }, | 65 | }, |
61 | { | 66 | { |
62 | "id": 233, | 67 | "id": 233, |
63 | "title": "旋转海盗", | 68 | "title": "旋转海盗", |
69 | "packageName":"com.topdraw.xhx.haidao", | ||
64 | "image": [ | 70 | "image": [ |
65 | { | 71 | { |
66 | "bg": "game/bg_xyx_6", | 72 | "bg": "game/bg_xyx_8", |
67 | "fileUrl": "game/xyx_6" | 73 | "fileUrl": "game/xyx_8" |
68 | } | 74 | } |
69 | ] | 75 | ] |
70 | }, | 76 | }, |
71 | { | 77 | { |
72 | "id": 233, | 78 | "id": 233, |
73 | "title": "奔跑吧小马宝莉", | 79 | "title": "奔跑吧小马宝莉", |
80 | "packageName":"com.topdraw.xhx.run", | ||
74 | "image": [ | 81 | "image": [ |
75 | { | 82 | { |
76 | "bg": "game/bg_xyx_7", | 83 | "bg": "game/bg_xyx_7", |
... | @@ -81,30 +88,33 @@ cc.Class({ | ... | @@ -81,30 +88,33 @@ cc.Class({ |
81 | { | 88 | { |
82 | "id": 233, | 89 | "id": 233, |
83 | "title": "猜猜我是谁", | 90 | "title": "猜猜我是谁", |
91 | "packageName":"com.topdraw.xhx.guess", | ||
84 | "image": [ | 92 | "image": [ |
85 | { | 93 | { |
86 | "bg": "game/bg_xyx_8", | 94 | "bg": "game/bg_xyx_3", |
87 | "fileUrl": "game/xyx_8" | 95 | "fileUrl": "game/xyx_3" |
88 | } | 96 | } |
89 | ] | 97 | ] |
90 | }, | 98 | }, |
91 | { | 99 | { |
92 | "id": 233, | 100 | "id": 233, |
93 | "title": "它的颜色", | 101 | "title": "它的颜色", |
102 | "packageName":"com.topdraw.xhx.guesscolor", | ||
94 | "image": [ | 103 | "image": [ |
95 | { | 104 | { |
96 | "bg": "game/bg_xyx_9", | 105 | "bg": "game/bg_xyx_4", |
97 | "fileUrl": "game/xyx_9" | 106 | "fileUrl": "game/xyx_4" |
98 | } | 107 | } |
99 | ] | 108 | ] |
100 | }, | 109 | }, |
101 | { | 110 | { |
102 | "id": 233, | 111 | "id": 233, |
103 | "title": "数一数", | 112 | "title": "数一数", |
113 | "packageName":"com.topdraw.xhx.shuyishu", | ||
104 | "image": [ | 114 | "image": [ |
105 | { | 115 | { |
106 | "bg": "game/bg_xyx_10", | 116 | "bg": "game/bg_xyx_6", |
107 | "fileUrl": "game/xyx_10" | 117 | "fileUrl": "game/xyx_6" |
108 | } | 118 | } |
109 | ] | 119 | ] |
110 | } | 120 | } | ... | ... |
... | @@ -30,7 +30,8 @@ cc.Class({ | ... | @@ -30,7 +30,8 @@ cc.Class({ |
30 | }, | 30 | }, |
31 | { | 31 | { |
32 | "name": "three2six", | 32 | "name": "three2six", |
33 | "tvlink": '{"click": [{"action": "changeLayout","parameters": {"layoutPath": "layout/waterfall_three2six.json"}}]}', | 33 | //"tvlink": '{"click": [{"action": "changeLayout","parameters": {"layoutPath": "layout/waterfall_three2six.json"}}]}', |
34 | "tvlink": '{"click": [{"action": "ChangeScene","parameters": {"sceneName":"sceneGameLobby"}}]}', | ||
34 | "type": "promotion_item", | 35 | "type": "promotion_item", |
35 | "imageURL": "image/navigator/three2six.png", | 36 | "imageURL": "image/navigator/three2six.png", |
36 | "top": 240, | 37 | "top": 240, | ... | ... |
... | @@ -40,7 +40,7 @@ cc.Class({ | ... | @@ -40,7 +40,7 @@ cc.Class({ |
40 | "height": 287 | 40 | "height": 287 |
41 | }, | 41 | }, |
42 | { | 42 | { |
43 | "name": "dailyRecommend", | 43 | "name": "classSchedule", |
44 | "code": "promotionItem_9fd6d854-2a72-42d5-a2c0-1ce824cf406c", | 44 | "code": "promotionItem_9fd6d854-2a72-42d5-a2c0-1ce824cf406c", |
45 | "left": 0, | 45 | "left": 0, |
46 | "top": 308, | 46 | "top": 308, | ... | ... |
1 | var Common = require('Common'); | ||
2 | var FocusInfo = require('FocusInfo'); | ||
3 | var ListCell = require('ListCell'); | ||
4 | var Network = require('Network'); | ||
5 | |||
6 | cc.Class({ | ||
7 | extends: ListCell, | ||
8 | |||
9 | properties: { | ||
10 | id: 0, | ||
11 | pic: cc.Sprite, | ||
12 | activeName1: cc.Label, | ||
13 | activeName2: cc.Label, | ||
14 | normalName: cc.Label, | ||
15 | }, | ||
16 | |||
17 | statics: { | ||
18 | PFB_NAME: 'prefab/pfbClassCategoryCell', | ||
19 | CELL_NAME: 'OtherListCell', | ||
20 | }, | ||
21 | |||
22 | init: function (iCellIndex, bIsFocusEnable, compSceneCanvas) { | ||
23 | // cc.find("CollectionBg", this.node).opacity = 0; | ||
24 | // let nodeCollectionBg = this.node.getChildByName("CollectionBg"); | ||
25 | // nodeCollectionBg.getComponent(cc.Sprite).spriteFrame.setRect(cc.rect(0, 0, 53, 171)); | ||
26 | // let nodeCollectionPic = nodeCollectionBg.getChildByName('CollectionPic'); | ||
27 | // nodeCollectionPic.getComponent(cc.Sprite).spriteFrame.setRect(cc.rect(0, 0, 30, 28)); | ||
28 | |||
29 | // let fiCollection = this.node.getChildByName('CollectionBg').addComponent(FocusInfo); | ||
30 | // fiCollection.init( | ||
31 | // null, true, null, null, 1.0); | ||
32 | // compSceneCanvas.addNodeToFocusTarget(0, this.node.getChildByName('CollectionBg').name + iCellIndex, this.node); | ||
33 | // 准备焦点坐标 | ||
34 | // let fiCategoryBlock=this.node.getChildByName('Pic').addComponent(FocusInfo); | ||
35 | let fiCategoryBlock = this.node.addComponent(FocusInfo); | ||
36 | fiCategoryBlock.init( | ||
37 | null, false, null, null, 1.0 | ||
38 | ); | ||
39 | compSceneCanvas.addNodeToFocusTarget(0, this.node.name, this.node); | ||
40 | }, | ||
41 | |||
42 | render(oData, iRecordIndex) { | ||
43 | // var self = this; | ||
44 | // this.id = oData.id; | ||
45 | // this.activeName1.string = oData.name; | ||
46 | // this.activeName2.string = oData.name; | ||
47 | // this.normalName.string = oData.name; | ||
48 | // this.activeName1._updateRenderData(true); | ||
49 | // this.activeName2._updateRenderData(true); | ||
50 | // this.normalName._updateRenderData(true); | ||
51 | // if (oData.play_times) { | ||
52 | // let value = parseInt(oData.play_times); | ||
53 | // if (value > 10000) { | ||
54 | // this.textPlayTimes.string = parseInt(value / 10000) + "万+"; | ||
55 | // } else { | ||
56 | // this.textPlayTimes.string = value; | ||
57 | // } | ||
58 | // } | ||
59 | |||
60 | // if (oData.images.list[0]) { | ||
61 | // Network.loadImageInNativeRuntime( | ||
62 | // Common.TOPDRAW_IMAGE_SERVER_EDU_RIGHT + oData.images.list[0].fileUrl, | ||
63 | // function (texture) { | ||
64 | // self.pic.spriteFrame = new cc.SpriteFrame(texture); | ||
65 | // }, null, this | ||
66 | // ); | ||
67 | // } | ||
68 | |||
69 | // self.collectBg.spriteFrame.setRect(cc.rect(0, 0, 53, 171)); | ||
70 | // self.collectPic.spriteFrame.setRect(cc.rect(0, 0, 30, 28)); | ||
71 | // if (oData.isCollect) { | ||
72 | // cc.loader.loadRes("texture/ui/collect_heart", cc.Texture2D, function (err, texture) { | ||
73 | // var spriteFrame = new cc.SpriteFrame(texture, cc.rect(0, 28, 30, 28)); | ||
74 | // self.collectPic.spriteFrame = spriteFrame; | ||
75 | // }); | ||
76 | // } else { | ||
77 | // cc.loader.loadRes("texture/ui/collect_heart", cc.Texture2D, function (err, texture) { | ||
78 | // var spriteFrame = new cc.SpriteFrame(texture, cc.rect(0, 0, 30, 28)); | ||
79 | // self.collectPic.spriteFrame = spriteFrame; | ||
80 | // }); | ||
81 | // } | ||
82 | |||
83 | // this.node.getComponent(FocusInfo).setTVLink(oData.tvlink); | ||
84 | }, | ||
85 | |||
86 | enableFocusInfo: function () { | ||
87 | this.node.getComponent(FocusInfo).setEnable(true); | ||
88 | }, | ||
89 | |||
90 | disableFocusInfo: function () { | ||
91 | this.node.getComponent(FocusInfo).setEnable(false); | ||
92 | }, | ||
93 | |||
94 | setUIWithFocus: function () { | ||
95 | let nodeCellName = this.node.getChildByName('Name'); | ||
96 | cc.find("NormalName", nodeCellName).opacity = 255; | ||
97 | //超出滚动 | ||
98 | let nodeScreenTitleText = cc.find('ActiveName/NameContainer/NameText', nodeCellName); | ||
99 | |||
100 | let fOriginalX = nodeScreenTitleText.x; | ||
101 | let fOriginalY = nodeScreenTitleText.y; | ||
102 | |||
103 | let nodeScreenTitleText1 = nodeScreenTitleText.getChildByName('NameText1'); | ||
104 | let nodeScreenTitleText2 = nodeScreenTitleText.getChildByName('NameText2'); | ||
105 | nodeScreenTitleText2.x = nodeScreenTitleText1.x + nodeScreenTitleText1.width + 10;//TODO:补丁,解决滚动重叠 | ||
106 | if (nodeScreenTitleText1.width > nodeScreenTitleText.width) { | ||
107 | cc.find("ActiveName/NameContainer", nodeCellName).opacity = 255; | ||
108 | cc.find("NormalName", nodeCellName).opacity = 0; | ||
109 | let fEndPositionDelta = (nodeScreenTitleText1.width + 30); | ||
110 | //下方时长和字有关系,才能速度一样 | ||
111 | var ftaScreenTitleMoveToTarget = cc.moveTo(10 * (nodeScreenTitleText1.width / nodeScreenTitleText.width), fOriginalX - fEndPositionDelta, fOriginalY); | ||
112 | var ftaScreenTitleMoveToBack = cc.moveTo(0, fOriginalX, fOriginalY); | ||
113 | var sequenceMediaTitle = cc.sequence(ftaScreenTitleMoveToTarget, ftaScreenTitleMoveToBack); | ||
114 | var repeatScreenTitle = cc.repeat(sequenceMediaTitle, 10); | ||
115 | repeatScreenTitle.setTag(Common.OVERLENGTH_MOVING); | ||
116 | nodeScreenTitleText.runAction(repeatScreenTitle); | ||
117 | nodeScreenTitleText2.active = true; | ||
118 | } | ||
119 | }, | ||
120 | setUIWithoutFocus: function () { | ||
121 | let nodeCellName = this.node.getChildByName('Name'); | ||
122 | cc.find("NormalName", nodeCellName).opacity = 255; | ||
123 | // cc.find("ActiveName/ActiveNameBg", nodeCellName).opacity = 0; | ||
124 | //如有滚动停止滚动 | ||
125 | let nodeScreenTitleText = cc.find('ActiveName/NameContainer/NameText', nodeCellName); | ||
126 | if (null != nodeScreenTitleText.getActionByTag(Common.OVERLENGTH_MOVING)) { | ||
127 | nodeScreenTitleText.stopActionByTag(Common.OVERLENGTH_MOVING); | ||
128 | nodeScreenTitleText.getChildByName('NameText2').active = false; | ||
129 | cc.find("ActiveName/NameContainer", nodeCellName).opacity = 0; | ||
130 | } | ||
131 | nodeScreenTitleText.x = 0; | ||
132 | }, | ||
133 | |||
134 | }); |
... | @@ -9,6 +9,7 @@ cc.Class({ | ... | @@ -9,6 +9,7 @@ cc.Class({ |
9 | 9 | ||
10 | properties: { | 10 | properties: { |
11 | id: 0, | 11 | id: 0, |
12 | apkName:"", //包名 | ||
12 | bg: cc.Sprite, //背景 | 13 | bg: cc.Sprite, //背景 |
13 | starName: cc.Label, //名称 | 14 | starName: cc.Label, //名称 |
14 | pic: cc.Sprite, //动漫图片 | 15 | pic: cc.Sprite, //动漫图片 |
... | @@ -31,6 +32,7 @@ cc.Class({ | ... | @@ -31,6 +32,7 @@ cc.Class({ |
31 | render(oData, iRecordIndex) { | 32 | render(oData, iRecordIndex) { |
32 | this.id = oData.id; | 33 | this.id = oData.id; |
33 | this.starName.string = oData.title; | 34 | this.starName.string = oData.title; |
35 | this.apkName=oData.packageName; | ||
34 | // // this.bg.spriteFrame.setRect(cc.rect(0, 0, 214, 214)); | 36 | // // this.bg.spriteFrame.setRect(cc.rect(0, 0, 214, 214)); |
35 | var self = this; | 37 | var self = this; |
36 | cc.loader.loadRes(oData.image[0].fileUrl, cc.Texture2D, function (err, texture) { | 38 | cc.loader.loadRes(oData.image[0].fileUrl, cc.Texture2D, function (err, texture) { |
... | @@ -45,8 +47,8 @@ cc.Class({ | ... | @@ -45,8 +47,8 @@ cc.Class({ |
45 | // }, null, this | 47 | // }, null, this |
46 | // ); | 48 | // ); |
47 | // } | 49 | // } |
48 | // //准备焦点坐标 | 50 | //准备焦点坐标oData.tvlink |
49 | // this.node.getComponent(FocusInfo).setTVLink(oData.tvlink); | 51 | this.node.getComponent(FocusInfo).setTVLink(""); |
50 | }, | 52 | }, |
51 | 53 | ||
52 | enableFocusInfo: function () { | 54 | enableFocusInfo: function () { | ... | ... |
assets/resources/class.meta
0 → 100644
assets/resources/class/0.png
0 → 100644

2.19 KB
assets/resources/class/0.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.3.1", | ||
3 | "uuid": "8e2938b3-18ec-4f90-b737-89ad29898a3a", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "platformSettings": {}, | ||
9 | "subMetas": { | ||
10 | "0": { | ||
11 | "ver": "1.0.4", | ||
12 | "uuid": "a26ee8c8-2654-4085-a546-86f47777b6da", | ||
13 | "rawTextureUuid": "8e2938b3-18ec-4f90-b737-89ad29898a3a", | ||
14 | "trimType": "auto", | ||
15 | "trimThreshold": 1, | ||
16 | "rotated": false, | ||
17 | "offsetX": 0, | ||
18 | "offsetY": 2.5, | ||
19 | "trimX": 40, | ||
20 | "trimY": 9, | ||
21 | "width": 41, | ||
22 | "height": 106, | ||
23 | "rawWidth": 121, | ||
24 | "rawHeight": 129, | ||
25 | "borderTop": 0, | ||
26 | "borderBottom": 0, | ||
27 | "borderLeft": 0, | ||
28 | "borderRight": 0, | ||
29 | "subMetas": {} | ||
30 | } | ||
31 | } | ||
32 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
assets/resources/class/1.png
0 → 100644

2.3 KB
assets/resources/class/1.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.3.1", | ||
3 | "uuid": "0139af40-31ec-4fac-bee8-51dee907242e", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "platformSettings": {}, | ||
9 | "subMetas": { | ||
10 | "1": { | ||
11 | "ver": "1.0.4", | ||
12 | "uuid": "95efd913-c8a4-40b2-9f34-4d0ede5f8cfe", | ||
13 | "rawTextureUuid": "0139af40-31ec-4fac-bee8-51dee907242e", | ||
14 | "trimType": "auto", | ||
15 | "trimThreshold": 1, | ||
16 | "rotated": false, | ||
17 | "offsetX": 0.5, | ||
18 | "offsetY": 2.5, | ||
19 | "trimX": 40, | ||
20 | "trimY": 9, | ||
21 | "width": 42, | ||
22 | "height": 106, | ||
23 | "rawWidth": 121, | ||
24 | "rawHeight": 129, | ||
25 | "borderTop": 0, | ||
26 | "borderBottom": 0, | ||
27 | "borderLeft": 0, | ||
28 | "borderRight": 0, | ||
29 | "subMetas": {} | ||
30 | } | ||
31 | } | ||
32 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
assets/resources/class/2.png
0 → 100644

2.37 KB
assets/resources/class/2.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.3.1", | ||
3 | "uuid": "3d498573-d61d-4344-b9de-8f68d91a29ef", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "platformSettings": {}, | ||
9 | "subMetas": { | ||
10 | "2": { | ||
11 | "ver": "1.0.4", | ||
12 | "uuid": "5398d373-7857-4ca9-8224-6725af716690", | ||
13 | "rawTextureUuid": "3d498573-d61d-4344-b9de-8f68d91a29ef", | ||
14 | "trimType": "auto", | ||
15 | "trimThreshold": 1, | ||
16 | "rotated": false, | ||
17 | "offsetX": 0.5, | ||
18 | "offsetY": 2.5, | ||
19 | "trimX": 40, | ||
20 | "trimY": 9, | ||
21 | "width": 42, | ||
22 | "height": 106, | ||
23 | "rawWidth": 121, | ||
24 | "rawHeight": 129, | ||
25 | "borderTop": 0, | ||
26 | "borderBottom": 0, | ||
27 | "borderLeft": 0, | ||
28 | "borderRight": 0, | ||
29 | "subMetas": {} | ||
30 | } | ||
31 | } | ||
32 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
assets/resources/class/3.png
0 → 100644

2.59 KB
assets/resources/class/3.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.3.1", | ||
3 | "uuid": "80b77deb-d328-47b1-acab-513b557636cb", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "platformSettings": {}, | ||
9 | "subMetas": { | ||
10 | "3": { | ||
11 | "ver": "1.0.4", | ||
12 | "uuid": "d8dd1726-9a6b-4992-a267-d012cf2a7626", | ||
13 | "rawTextureUuid": "80b77deb-d328-47b1-acab-513b557636cb", | ||
14 | "trimType": "auto", | ||
15 | "trimThreshold": 1, | ||
16 | "rotated": false, | ||
17 | "offsetX": 0.5, | ||
18 | "offsetY": 2.5, | ||
19 | "trimX": 40, | ||
20 | "trimY": 9, | ||
21 | "width": 42, | ||
22 | "height": 106, | ||
23 | "rawWidth": 121, | ||
24 | "rawHeight": 129, | ||
25 | "borderTop": 0, | ||
26 | "borderBottom": 0, | ||
27 | "borderLeft": 0, | ||
28 | "borderRight": 0, | ||
29 | "subMetas": {} | ||
30 | } | ||
31 | } | ||
32 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
assets/resources/class/4.png
0 → 100644

2.55 KB
assets/resources/class/4.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.3.1", | ||
3 | "uuid": "21fe4565-54b8-413e-b7f5-196347455e7b", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "platformSettings": {}, | ||
9 | "subMetas": { | ||
10 | "4": { | ||
11 | "ver": "1.0.4", | ||
12 | "uuid": "6fcc571e-d8a1-4274-b292-bb18557c4c34", | ||
13 | "rawTextureUuid": "21fe4565-54b8-413e-b7f5-196347455e7b", | ||
14 | "trimType": "auto", | ||
15 | "trimThreshold": 1, | ||
16 | "rotated": false, | ||
17 | "offsetX": 0.5, | ||
18 | "offsetY": 2.5, | ||
19 | "trimX": 40, | ||
20 | "trimY": 9, | ||
21 | "width": 42, | ||
22 | "height": 106, | ||
23 | "rawWidth": 121, | ||
24 | "rawHeight": 129, | ||
25 | "borderTop": 0, | ||
26 | "borderBottom": 0, | ||
27 | "borderLeft": 0, | ||
28 | "borderRight": 0, | ||
29 | "subMetas": {} | ||
30 | } | ||
31 | } | ||
32 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
assets/resources/class/5.png
0 → 100644

2.66 KB
assets/resources/class/5.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.3.1", | ||
3 | "uuid": "35cc5246-f140-430c-8811-06db650e22e0", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "platformSettings": {}, | ||
9 | "subMetas": { | ||
10 | "5": { | ||
11 | "ver": "1.0.4", | ||
12 | "uuid": "a0bafb80-e643-4fa6-a121-fd2926d01d50", | ||
13 | "rawTextureUuid": "35cc5246-f140-430c-8811-06db650e22e0", | ||
14 | "trimType": "auto", | ||
15 | "trimThreshold": 1, | ||
16 | "rotated": false, | ||
17 | "offsetX": 0, | ||
18 | "offsetY": 2.5, | ||
19 | "trimX": 40, | ||
20 | "trimY": 9, | ||
21 | "width": 41, | ||
22 | "height": 106, | ||
23 | "rawWidth": 121, | ||
24 | "rawHeight": 129, | ||
25 | "borderTop": 0, | ||
26 | "borderBottom": 0, | ||
27 | "borderLeft": 0, | ||
28 | "borderRight": 0, | ||
29 | "subMetas": {} | ||
30 | } | ||
31 | } | ||
32 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
assets/resources/class/6.png
0 → 100644

2.41 KB
assets/resources/class/6.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.3.1", | ||
3 | "uuid": "bf6b07d0-e8ce-4caa-bb10-74efce49cab0", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "platformSettings": {}, | ||
9 | "subMetas": { | ||
10 | "6": { | ||
11 | "ver": "1.0.4", | ||
12 | "uuid": "9234d7ba-bcc7-4706-b7e8-9072daf507e4", | ||
13 | "rawTextureUuid": "bf6b07d0-e8ce-4caa-bb10-74efce49cab0", | ||
14 | "trimType": "auto", | ||
15 | "trimThreshold": 1, | ||
16 | "rotated": false, | ||
17 | "offsetX": 0, | ||
18 | "offsetY": 2, | ||
19 | "trimX": 40, | ||
20 | "trimY": 9, | ||
21 | "width": 41, | ||
22 | "height": 107, | ||
23 | "rawWidth": 121, | ||
24 | "rawHeight": 129, | ||
25 | "borderTop": 0, | ||
26 | "borderBottom": 0, | ||
27 | "borderLeft": 0, | ||
28 | "borderRight": 0, | ||
29 | "subMetas": {} | ||
30 | } | ||
31 | } | ||
32 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
assets/resources/class/GSGX.png
0 → 100644

4.31 KB
assets/resources/class/GSGX.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.3.1", | ||
3 | "uuid": "ebab674d-99e1-49c4-9502-eafbe6f2b311", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "platformSettings": {}, | ||
9 | "subMetas": { | ||
10 | "GSGX": { | ||
11 | "ver": "1.0.4", | ||
12 | "uuid": "b94df350-7424-492f-9ff6-89699784f129", | ||
13 | "rawTextureUuid": "ebab674d-99e1-49c4-9502-eafbe6f2b311", | ||
14 | "trimType": "auto", | ||
15 | "trimThreshold": 1, | ||
16 | "rotated": false, | ||
17 | "offsetX": -1.5, | ||
18 | "offsetY": -2, | ||
19 | "trimX": 16, | ||
20 | "trimY": 14, | ||
21 | "width": 86, | ||
22 | "height": 108, | ||
23 | "rawWidth": 121, | ||
24 | "rawHeight": 132, | ||
25 | "borderTop": 0, | ||
26 | "borderBottom": 0, | ||
27 | "borderLeft": 0, | ||
28 | "borderRight": 0, | ||
29 | "subMetas": {} | ||
30 | } | ||
31 | } | ||
32 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
assets/resources/class/MSSG.png
0 → 100644

3.5 KB
assets/resources/class/MSSG.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.3.1", | ||
3 | "uuid": "09e629d6-8d4a-47e0-9ba6-19fa35ba313f", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "platformSettings": {}, | ||
9 | "subMetas": { | ||
10 | "MSSG": { | ||
11 | "ver": "1.0.4", | ||
12 | "uuid": "d89c5008-2ded-4b89-a313-f30e6e79e436", | ||
13 | "rawTextureUuid": "09e629d6-8d4a-47e0-9ba6-19fa35ba313f", | ||
14 | "trimType": "auto", | ||
15 | "trimThreshold": 1, | ||
16 | "rotated": false, | ||
17 | "offsetX": -1.5, | ||
18 | "offsetY": -2, | ||
19 | "trimX": 16, | ||
20 | "trimY": 14, | ||
21 | "width": 86, | ||
22 | "height": 108, | ||
23 | "rawWidth": 121, | ||
24 | "rawHeight": 132, | ||
25 | "borderTop": 0, | ||
26 | "borderBottom": 0, | ||
27 | "borderLeft": 0, | ||
28 | "borderRight": 0, | ||
29 | "subMetas": {} | ||
30 | } | ||
31 | } | ||
32 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
assets/resources/class/SHBK.png
0 → 100644

3.9 KB
assets/resources/class/SHBK.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.3.1", | ||
3 | "uuid": "43a5ba60-7f8f-4649-9613-c438597613e5", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "platformSettings": {}, | ||
9 | "subMetas": { | ||
10 | "SHBK": { | ||
11 | "ver": "1.0.4", | ||
12 | "uuid": "2adfc87d-f72d-4d23-8830-1165eb8b40f7", | ||
13 | "rawTextureUuid": "43a5ba60-7f8f-4649-9613-c438597613e5", | ||
14 | "trimType": "auto", | ||
15 | "trimThreshold": 1, | ||
16 | "rotated": false, | ||
17 | "offsetX": -1, | ||
18 | "offsetY": -2, | ||
19 | "trimX": 16, | ||
20 | "trimY": 14, | ||
21 | "width": 87, | ||
22 | "height": 108, | ||
23 | "rawWidth": 121, | ||
24 | "rawHeight": 132, | ||
25 | "borderTop": 0, | ||
26 | "borderBottom": 0, | ||
27 | "borderLeft": 0, | ||
28 | "borderRight": 0, | ||
29 | "subMetas": {} | ||
30 | } | ||
31 | } | ||
32 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
assets/resources/class/Today.png
0 → 100644

2.9 KB
assets/resources/class/Today.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.3.1", | ||
3 | "uuid": "dc8fe9a3-b97c-459c-96c2-55cd760ceeb5", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "platformSettings": {}, | ||
9 | "subMetas": { | ||
10 | "Today": { | ||
11 | "ver": "1.0.4", | ||
12 | "uuid": "60a35e08-196c-401c-8967-25cd2f0a4f1c", | ||
13 | "rawTextureUuid": "dc8fe9a3-b97c-459c-96c2-55cd760ceeb5", | ||
14 | "trimType": "auto", | ||
15 | "trimThreshold": 1, | ||
16 | "rotated": false, | ||
17 | "offsetX": 0, | ||
18 | "offsetY": 2.5, | ||
19 | "trimX": 39, | ||
20 | "trimY": 9, | ||
21 | "width": 43, | ||
22 | "height": 106, | ||
23 | "rawWidth": 121, | ||
24 | "rawHeight": 129, | ||
25 | "borderTop": 0, | ||
26 | "borderBottom": 0, | ||
27 | "borderLeft": 0, | ||
28 | "borderRight": 0, | ||
29 | "subMetas": {} | ||
30 | } | ||
31 | } | ||
32 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
assets/resources/class/YSQM.png
0 → 100644

4.09 KB
assets/resources/class/YSQM.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.3.1", | ||
3 | "uuid": "2eee0e78-34b6-4d3b-8b4a-ffd84ff6623a", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "platformSettings": {}, | ||
9 | "subMetas": { | ||
10 | "YSQM": { | ||
11 | "ver": "1.0.4", | ||
12 | "uuid": "f8360087-8a5e-4e4e-9b54-8cf79535cec5", | ||
13 | "rawTextureUuid": "2eee0e78-34b6-4d3b-8b4a-ffd84ff6623a", | ||
14 | "trimType": "auto", | ||
15 | "trimThreshold": 1, | ||
16 | "rotated": false, | ||
17 | "offsetX": -1, | ||
18 | "offsetY": -2.5, | ||
19 | "trimX": 16, | ||
20 | "trimY": 14, | ||
21 | "width": 87, | ||
22 | "height": 109, | ||
23 | "rawWidth": 121, | ||
24 | "rawHeight": 132, | ||
25 | "borderTop": 0, | ||
26 | "borderBottom": 0, | ||
27 | "borderLeft": 0, | ||
28 | "borderRight": 0, | ||
29 | "subMetas": {} | ||
30 | } | ||
31 | } | ||
32 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
assets/resources/class/YYSJ.png
0 → 100644

4.09 KB
assets/resources/class/YYSJ.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.3.1", | ||
3 | "uuid": "3e90dcb2-3dd4-4b49-99eb-ef59828e51f2", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "platformSettings": {}, | ||
9 | "subMetas": { | ||
10 | "YYSJ": { | ||
11 | "ver": "1.0.4", | ||
12 | "uuid": "3e7ef534-4b22-4e03-8544-2cdc3c0d95ea", | ||
13 | "rawTextureUuid": "3e90dcb2-3dd4-4b49-99eb-ef59828e51f2", | ||
14 | "trimType": "auto", | ||
15 | "trimThreshold": 1, | ||
16 | "rotated": false, | ||
17 | "offsetX": -1, | ||
18 | "offsetY": -2, | ||
19 | "trimX": 16, | ||
20 | "trimY": 14, | ||
21 | "width": 87, | ||
22 | "height": 108, | ||
23 | "rawWidth": 121, | ||
24 | "rawHeight": 132, | ||
25 | "borderTop": 0, | ||
26 | "borderBottom": 0, | ||
27 | "borderLeft": 0, | ||
28 | "borderRight": 0, | ||
29 | "subMetas": {} | ||
30 | } | ||
31 | } | ||
32 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
assets/resources/class/ZJYZ.png
0 → 100644

4.06 KB
assets/resources/class/ZJYZ.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.3.1", | ||
3 | "uuid": "6c093af2-be1c-4e55-be04-f782506ae6bf", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "platformSettings": {}, | ||
9 | "subMetas": { | ||
10 | "ZJYZ": { | ||
11 | "ver": "1.0.4", | ||
12 | "uuid": "90842bfe-129a-4da0-82f1-0cac006e9149", | ||
13 | "rawTextureUuid": "6c093af2-be1c-4e55-be04-f782506ae6bf", | ||
14 | "trimType": "auto", | ||
15 | "trimThreshold": 1, | ||
16 | "rotated": false, | ||
17 | "offsetX": -0.5, | ||
18 | "offsetY": -2, | ||
19 | "trimX": 17, | ||
20 | "trimY": 14, | ||
21 | "width": 86, | ||
22 | "height": 108, | ||
23 | "rawWidth": 121, | ||
24 | "rawHeight": 132, | ||
25 | "borderTop": 0, | ||
26 | "borderBottom": 0, | ||
27 | "borderLeft": 0, | ||
28 | "borderRight": 0, | ||
29 | "subMetas": {} | ||
30 | } | ||
31 | } | ||
32 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
assets/resources/class/ZRZS.png
0 → 100644

4.35 KB
assets/resources/class/ZRZS.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.3.1", | ||
3 | "uuid": "98784910-c2be-4984-b65b-2de6d3d56f5f", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "platformSettings": {}, | ||
9 | "subMetas": { | ||
10 | "ZRZS": { | ||
11 | "ver": "1.0.4", | ||
12 | "uuid": "deba5aca-791b-43b3-bda4-1a7a9c7da1d6", | ||
13 | "rawTextureUuid": "98784910-c2be-4984-b65b-2de6d3d56f5f", | ||
14 | "trimType": "auto", | ||
15 | "trimThreshold": 1, | ||
16 | "rotated": false, | ||
17 | "offsetX": -0.5, | ||
18 | "offsetY": -2, | ||
19 | "trimX": 17, | ||
20 | "trimY": 14, | ||
21 | "width": 86, | ||
22 | "height": 108, | ||
23 | "rawWidth": 121, | ||
24 | "rawHeight": 132, | ||
25 | "borderTop": 0, | ||
26 | "borderBottom": 0, | ||
27 | "borderLeft": 0, | ||
28 | "borderRight": 0, | ||
29 | "subMetas": {} | ||
30 | } | ||
31 | } | ||
32 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
assets/resources/class/baseboard.png
0 → 100644

1.82 KB
assets/resources/class/baseboard.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.3.1", | ||
3 | "uuid": "0d220822-9ae7-42fd-abd5-86898338266c", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "platformSettings": {}, | ||
9 | "subMetas": { | ||
10 | "baseboard": { | ||
11 | "ver": "1.0.4", | ||
12 | "uuid": "ea54d67e-d60b-4099-af3c-fd79637bebe8", | ||
13 | "rawTextureUuid": "0d220822-9ae7-42fd-abd5-86898338266c", | ||
14 | "trimType": "auto", | ||
15 | "trimThreshold": 1, | ||
16 | "rotated": false, | ||
17 | "offsetX": 0, | ||
18 | "offsetY": 0, | ||
19 | "trimX": 0, | ||
20 | "trimY": 0, | ||
21 | "width": 121, | ||
22 | "height": 88, | ||
23 | "rawWidth": 121, | ||
24 | "rawHeight": 88, | ||
25 | "borderTop": 0, | ||
26 | "borderBottom": 0, | ||
27 | "borderLeft": 0, | ||
28 | "borderRight": 0, | ||
29 | "subMetas": {} | ||
30 | } | ||
31 | } | ||
32 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
assets/resources/class/baseboard_active.png
0 → 100644

2.78 KB
1 | { | ||
2 | "ver": "2.3.1", | ||
3 | "uuid": "c24c9094-2f04-4c2e-b1aa-203dca6d08b2", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "platformSettings": {}, | ||
9 | "subMetas": { | ||
10 | "baseboard_active": { | ||
11 | "ver": "1.0.4", | ||
12 | "uuid": "f6ec8f94-2ebd-4b95-b9e5-786860239c34", | ||
13 | "rawTextureUuid": "c24c9094-2f04-4c2e-b1aa-203dca6d08b2", | ||
14 | "trimType": "auto", | ||
15 | "trimThreshold": 1, | ||
16 | "rotated": false, | ||
17 | "offsetX": 0, | ||
18 | "offsetY": 0, | ||
19 | "trimX": 0, | ||
20 | "trimY": 0, | ||
21 | "width": 129, | ||
22 | "height": 96, | ||
23 | "rawWidth": 129, | ||
24 | "rawHeight": 96, | ||
25 | "borderTop": 0, | ||
26 | "borderBottom": 0, | ||
27 | "borderLeft": 0, | ||
28 | "borderRight": 0, | ||
29 | "subMetas": {} | ||
30 | } | ||
31 | } | ||
32 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
assets/resources/class/bg.jpg
0 → 100644

612 KB
assets/resources/class/bg.jpg.meta
0 → 100644
1 | { | ||
2 | "ver": "2.3.1", | ||
3 | "uuid": "6b52990e-9cd9-46ea-bc70-dc437bd43367", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "platformSettings": {}, | ||
9 | "subMetas": { | ||
10 | "bg": { | ||
11 | "ver": "1.0.4", | ||
12 | "uuid": "01bdcd01-33d3-4f02-893f-d68c1ba9058a", | ||
13 | "rawTextureUuid": "6b52990e-9cd9-46ea-bc70-dc437bd43367", | ||
14 | "trimType": "auto", | ||
15 | "trimThreshold": 1, | ||
16 | "rotated": false, | ||
17 | "offsetX": 0, | ||
18 | "offsetY": 0, | ||
19 | "trimX": 0, | ||
20 | "trimY": 0, | ||
21 | "width": 1280, | ||
22 | "height": 720, | ||
23 | "rawWidth": 1280, | ||
24 | "rawHeight": 720, | ||
25 | "borderTop": 0, | ||
26 | "borderBottom": 0, | ||
27 | "borderLeft": 0, | ||
28 | "borderRight": 0, | ||
29 | "subMetas": {} | ||
30 | } | ||
31 | } | ||
32 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
assets/resources/class/class_pic.png
0 → 100644

79.8 KB
assets/resources/class/class_pic.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.3.1", | ||
3 | "uuid": "5ae0f1d4-1b33-4547-b92f-e65868b2e2f1", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "platformSettings": {}, | ||
9 | "subMetas": { | ||
10 | "class_pic": { | ||
11 | "ver": "1.0.4", | ||
12 | "uuid": "13426eee-945c-4029-8729-8e11b539c3c7", | ||
13 | "rawTextureUuid": "5ae0f1d4-1b33-4547-b92f-e65868b2e2f1", | ||
14 | "trimType": "auto", | ||
15 | "trimThreshold": 1, | ||
16 | "rotated": false, | ||
17 | "offsetX": 0, | ||
18 | "offsetY": 0, | ||
19 | "trimX": 0, | ||
20 | "trimY": 0, | ||
21 | "width": 274, | ||
22 | "height": 168, | ||
23 | "rawWidth": 274, | ||
24 | "rawHeight": 168, | ||
25 | "borderTop": 0, | ||
26 | "borderBottom": 0, | ||
27 | "borderLeft": 0, | ||
28 | "borderRight": 0, | ||
29 | "subMetas": {} | ||
30 | } | ||
31 | } | ||
32 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |

24.4 KB
1 | { | ||
2 | "ver": "2.3.1", | ||
3 | "uuid": "427d1bcb-af19-4ddc-84d7-8d0c69a61706", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "platformSettings": {}, | ||
9 | "subMetas": { | ||
10 | "customizedCourses_button": { | ||
11 | "ver": "1.0.4", | ||
12 | "uuid": "99be0119-8aad-4127-95aa-696b6b040925", | ||
13 | "rawTextureUuid": "427d1bcb-af19-4ddc-84d7-8d0c69a61706", | ||
14 | "trimType": "auto", | ||
15 | "trimThreshold": 1, | ||
16 | "rotated": false, | ||
17 | "offsetX": 0, | ||
18 | "offsetY": -2, | ||
19 | "trimX": 0, | ||
20 | "trimY": 4, | ||
21 | "width": 176, | ||
22 | "height": 124, | ||
23 | "rawWidth": 176, | ||
24 | "rawHeight": 128, | ||
25 | "borderTop": 0, | ||
26 | "borderBottom": 0, | ||
27 | "borderLeft": 0, | ||
28 | "borderRight": 0, | ||
29 | "subMetas": {} | ||
30 | } | ||
31 | } | ||
32 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
assets/resources/class/drak.png
0 → 100644

3.68 KB
assets/resources/class/drak.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.3.1", | ||
3 | "uuid": "20b82ba2-ddf0-492b-be1d-1d4c9f08ef51", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "platformSettings": {}, | ||
9 | "subMetas": { | ||
10 | "drak": { | ||
11 | "ver": "1.0.4", | ||
12 | "uuid": "c8e536c0-b0ef-4439-8922-ca983188e6fc", | ||
13 | "rawTextureUuid": "20b82ba2-ddf0-492b-be1d-1d4c9f08ef51", | ||
14 | "trimType": "auto", | ||
15 | "trimThreshold": 1, | ||
16 | "rotated": false, | ||
17 | "offsetX": 0.5, | ||
18 | "offsetY": -0.5, | ||
19 | "trimX": 2, | ||
20 | "trimY": 2, | ||
21 | "width": 48, | ||
22 | "height": 47, | ||
23 | "rawWidth": 51, | ||
24 | "rawHeight": 50, | ||
25 | "borderTop": 0, | ||
26 | "borderBottom": 0, | ||
27 | "borderLeft": 0, | ||
28 | "borderRight": 0, | ||
29 | "subMetas": {} | ||
30 | } | ||
31 | } | ||
32 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
assets/resources/class/grade_button.png
0 → 100644

24.2 KB
assets/resources/class/grade_button.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.3.1", | ||
3 | "uuid": "701fe32b-1deb-4705-83f6-11db5cb25943", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "platformSettings": {}, | ||
9 | "subMetas": { | ||
10 | "grade_button": { | ||
11 | "ver": "1.0.4", | ||
12 | "uuid": "ec3f7e4f-0e2b-4d91-b1d1-2b9b15514b4b", | ||
13 | "rawTextureUuid": "701fe32b-1deb-4705-83f6-11db5cb25943", | ||
14 | "trimType": "auto", | ||
15 | "trimThreshold": 1, | ||
16 | "rotated": false, | ||
17 | "offsetX": 1, | ||
18 | "offsetY": -2, | ||
19 | "trimX": 2, | ||
20 | "trimY": 4, | ||
21 | "width": 174, | ||
22 | "height": 124, | ||
23 | "rawWidth": 176, | ||
24 | "rawHeight": 128, | ||
25 | "borderTop": 0, | ||
26 | "borderBottom": 0, | ||
27 | "borderLeft": 0, | ||
28 | "borderRight": 0, | ||
29 | "subMetas": {} | ||
30 | } | ||
31 | } | ||
32 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
assets/resources/class/growup_button.png
0 → 100644

23.5 KB
1 | { | ||
2 | "ver": "2.3.1", | ||
3 | "uuid": "09461cfe-b4d2-4f50-b57f-39c8d4bd6119", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "platformSettings": {}, | ||
9 | "subMetas": { | ||
10 | "growup_button": { | ||
11 | "ver": "1.0.4", | ||
12 | "uuid": "309165d6-22f3-40e6-b1da-194cd6255941", | ||
13 | "rawTextureUuid": "09461cfe-b4d2-4f50-b57f-39c8d4bd6119", | ||
14 | "trimType": "auto", | ||
15 | "trimThreshold": 1, | ||
16 | "rotated": false, | ||
17 | "offsetX": 1.5, | ||
18 | "offsetY": -2, | ||
19 | "trimX": 3, | ||
20 | "trimY": 4, | ||
21 | "width": 173, | ||
22 | "height": 124, | ||
23 | "rawWidth": 176, | ||
24 | "rawHeight": 128, | ||
25 | "borderTop": 0, | ||
26 | "borderBottom": 0, | ||
27 | "borderLeft": 0, | ||
28 | "borderRight": 0, | ||
29 | "subMetas": {} | ||
30 | } | ||
31 | } | ||
32 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
assets/resources/class/star_groove.png
0 → 100644

5.26 KB
assets/resources/class/star_groove.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.3.1", | ||
3 | "uuid": "f7467269-6833-4487-ac26-fbbca565cdb8", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "platformSettings": {}, | ||
9 | "subMetas": { | ||
10 | "star_groove": { | ||
11 | "ver": "1.0.4", | ||
12 | "uuid": "7888448f-8fb2-462a-a128-52df9e9be325", | ||
13 | "rawTextureUuid": "f7467269-6833-4487-ac26-fbbca565cdb8", | ||
14 | "trimType": "auto", | ||
15 | "trimThreshold": 1, | ||
16 | "rotated": false, | ||
17 | "offsetX": 0, | ||
18 | "offsetY": 0, | ||
19 | "trimX": 0, | ||
20 | "trimY": 0, | ||
21 | "width": 159, | ||
22 | "height": 61, | ||
23 | "rawWidth": 159, | ||
24 | "rawHeight": 61, | ||
25 | "borderTop": 0, | ||
26 | "borderBottom": 0, | ||
27 | "borderLeft": 0, | ||
28 | "borderRight": 0, | ||
29 | "subMetas": {} | ||
30 | } | ||
31 | } | ||
32 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |

5.28 KB
1 | { | ||
2 | "ver": "2.3.1", | ||
3 | "uuid": "02d02138-53ca-4477-826e-066ce5d9138a", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "platformSettings": {}, | ||
9 | "subMetas": { | ||
10 | "star_groove_active": { | ||
11 | "ver": "1.0.4", | ||
12 | "uuid": "387d0cd6-cfc9-4f3f-a3c0-fc7addad8971", | ||
13 | "rawTextureUuid": "02d02138-53ca-4477-826e-066ce5d9138a", | ||
14 | "trimType": "auto", | ||
15 | "trimThreshold": 1, | ||
16 | "rotated": false, | ||
17 | "offsetX": 0, | ||
18 | "offsetY": 0, | ||
19 | "trimX": 0, | ||
20 | "trimY": 0, | ||
21 | "width": 159, | ||
22 | "height": 61, | ||
23 | "rawWidth": 159, | ||
24 | "rawHeight": 61, | ||
25 | "borderTop": 0, | ||
26 | "borderBottom": 0, | ||
27 | "borderLeft": 0, | ||
28 | "borderRight": 0, | ||
29 | "subMetas": {} | ||
30 | } | ||
31 | } | ||
32 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
assets/resources/class/this_week.png
0 → 100644

2.98 KB
assets/resources/class/this_week.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.3.1", | ||
3 | "uuid": "bfbaac04-906d-40e4-aa37-527a841b434b", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "platformSettings": {}, | ||
9 | "subMetas": { | ||
10 | "this_week": { | ||
11 | "ver": "1.0.4", | ||
12 | "uuid": "a43abdbe-41d8-4519-ab17-6998fb5e57b6", | ||
13 | "rawTextureUuid": "bfbaac04-906d-40e4-aa37-527a841b434b", | ||
14 | "trimType": "auto", | ||
15 | "trimThreshold": 1, | ||
16 | "rotated": false, | ||
17 | "offsetX": 0, | ||
18 | "offsetY": 0, | ||
19 | "trimX": 0, | ||
20 | "trimY": 0, | ||
21 | "width": 158, | ||
22 | "height": 30, | ||
23 | "rawWidth": 158, | ||
24 | "rawHeight": 30, | ||
25 | "borderTop": 0, | ||
26 | "borderBottom": 0, | ||
27 | "borderLeft": 0, | ||
28 | "borderRight": 0, | ||
29 | "subMetas": {} | ||
30 | } | ||
31 | } | ||
32 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
assets/resources/class/tips.png
0 → 100644

11.2 KB
assets/resources/class/tips.png.meta
0 → 100644
1 | { | ||
2 | "ver": "2.3.1", | ||
3 | "uuid": "5cc7e44d-177f-4281-9d96-497f6c7b14bc", | ||
4 | "type": "sprite", | ||
5 | "wrapMode": "clamp", | ||
6 | "filterMode": "bilinear", | ||
7 | "premultiplyAlpha": false, | ||
8 | "platformSettings": {}, | ||
9 | "subMetas": { | ||
10 | "tips": { | ||
11 | "ver": "1.0.4", | ||
12 | "uuid": "5ef776c1-c670-49c8-a1f0-39f8cb1d33a6", | ||
13 | "rawTextureUuid": "5cc7e44d-177f-4281-9d96-497f6c7b14bc", | ||
14 | "trimType": "auto", | ||
15 | "trimThreshold": 1, | ||
16 | "rotated": false, | ||
17 | "offsetX": 0, | ||
18 | "offsetY": 0, | ||
19 | "trimX": 0, | ||
20 | "trimY": 0, | ||
21 | "width": 326, | ||
22 | "height": 137, | ||
23 | "rawWidth": 326, | ||
24 | "rawHeight": 137, | ||
25 | "borderTop": 0, | ||
26 | "borderBottom": 0, | ||
27 | "borderLeft": 0, | ||
28 | "borderRight": 0, | ||
29 | "subMetas": {} | ||
30 | } | ||
31 | } | ||
32 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
... | @@ -23,7 +23,7 @@ | ... | @@ -23,7 +23,7 @@ |
23 | "group-list": [ | 23 | "group-list": [ |
24 | "default" | 24 | "default" |
25 | ], | 25 | ], |
26 | "last-module-event-record-time": 1567662056700, | 26 | "last-module-event-record-time": 1568625456259, |
27 | "simulator-orientation": false, | 27 | "simulator-orientation": false, |
28 | "simulator-resolution": { | 28 | "simulator-resolution": { |
29 | "height": 640, | 29 | "height": 640, | ... | ... |
-
Please register or sign in to post a comment