LeftBottom.ts 246 B

12345678910111213
  1. const {ccclass, property} = cc._decorator;
  2. /**
  3. * 左下角对齐
  4. */
  5. @ccclass
  6. export default class LeftBottom extends cc.Component {
  7. onLoad () {
  8. this.node.x = -cc.winSize.width/2
  9. this.node.y = -cc.winSize.height/2;
  10. }
  11. }