// Learn TypeScript: // - https://docs.cocos.com/creator/manual/en/scripting/typescript.html // Learn Attribute: // - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html // Learn life-cycle callbacks: // - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html const {ccclass, property} = cc._decorator; @ccclass export default class NewClass extends cc.Component { // @property(cc.Label) // label: cc.Label = null; // @property // text: string = 'hello'; @property 姓名: string = 'john'; @property 血型 = 'B'; @property 身高 = 170; @property("number") 體重 = 60; @property("string") email = 60; @property("boolean") 男生 = true; // LIFE-CYCLE CALLBACKS: // onLoad () {} start () { } // update (dt) {} }