12345678910111213141516171819202122232425262728 |
- // Learn TypeScript:
- // - https://docs.cocos.com/creator/2.4/manual/en/scripting/typescript.html
- // Learn Attribute:
- // - https://docs.cocos.com/creator/2.4/manual/en/scripting/reference/attributes.html
- // Learn life-cycle callbacks:
- // - https://docs.cocos.com/creator/2.4/manual/en/scripting/life-cycle-callbacks.html
- const { ccclass, property } = cc._decorator;
- @ccclass
- export default class GoldContent extends cc.Component {
- @property(cc.Prefab)
- Prefab: cc.Prefab = null;
- @property(cc.Node)
- Content: cc.Node = null;
- onLoad() {
- }
- start() {
- }
- // update (dt) {}
- }
|