1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
| "use strict";
| cc._RF.push(module, 'd1630AlF1lBI65/ILUT/VyJ', 'tips_const');
| // Scripts/mod/tips/tips_const.js
|
| "use strict";
|
| // --------------------------------------------------------------------
| // @author: shiraho@syg.com(必填, 创建模块的人员)
| // @description:
| // tips常量
| // <br/>Create: new Date().toISOString()
| // --------------------------------------------------------------------
| var TipsConst = {
| type: {
| GOODS: 1,
| // 通用物品
| EQUIP: 2,
| // 装备tips
| HEAD_CIRCLE: 3,
| // 头像框
| COMMON: 4,
| // 普通通用tips
| SKILL: 5,
| //技能提示
| ADVENTURE_BUFF: 6 //神界buff
|
| },
| eqmTips: {
| normal: 0,
| backpack: 1,
| partner: 2,
| other: 3
| },
| eqmBtnTypes: {
| LEFT: 1,
| RIGHT: 2
| }
| };
| module.exports = TipsConst;
|
| cc._RF.pop();
|
|