12345678910111213141516171819202122232425262728293031323334 |
- cc.Class({
- extends: cc.Component,
- properties: {
- imageNormal: {
- default: null,
- type: cc.Sprite,
- serializable: true,
- },
-
- imageLight: {
- default: null,
- type: cc.Sprite,
- serializable: true,
- },
- },
- // LIFE-CYCLE CALLBACKS:
- // onLoad () {},
- start () {
- },
- setSelect(b) {
- this.imageNormal.node.active = !b
- this.imageLight.node.active = b
- },
- // update (dt) {},
- });
|