const {ccclass, property} = cc._decorator; /** * 左下角对齐 */ @ccclass export default class LeftBottom extends cc.Component { onLoad () { this.node.x = -cc.winSize.width/2 this.node.y = -cc.winSize.height/2; } }