// 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'; onLoad () { } start () { } update (dt) { //1.兩種日誌log()寫法都可以 //console.log('dt = '+dt); cc.log('dt = '+dt); //4.x超過500就停止 //if(this.node.x >= 500)return; //2.每次向右移動5 px this.node.x += 5; //3.x超過500從左邊進入 if(this.node.x >= 500) this.node.x = -500; } }