12345678910111213141516171819202122232425262728 |
- cc.Class({
- extends: cc.Component,
- properties: {
- imageRare: {
- default: null,
- type: cc.Sprite,
- serializable: true,
- },
- textRere1: {
- default: null,
- type: cc.Label,
- serializable: true,
- },
- },
- // LIFE-CYCLE CALLBACKS:
- // onLoad () {},
- start () {
- },
- // update (dt) {},
- });
|