Phaser를 이용한 게임만들기 - 1. 기본

Phaser를 이용한 게임만들기 - 1. 기본 updated_at: 2024-03-21 14:26

기본 구조

export class MyScene extends Phaser.Scene {
  private game: any;
  private config = {
    type: Phaser.AUTO,
    width: 800,
    height: 600,
    scene: {
      preload: preload,
      create: create,
      update: update
    }
  };

  constructor() {
    this.game = new Phaser.Game(this.config);
  }

  public preload()  {
  }

  public create()  {
  }

  override update()  {
  }
}

coinfig.scene 에 정의된 함수대로 차례로 실행된다.

그러나 위의 방식은 angular에서는 문제점이 발생한다. preload나 create 등의 안에서 this를 호출하면 MyScene 이 아니라 Phaser.Scene가 this가 된다. 따라서 angular에서는 아래의 방법(Scene manager)으로 수정하는 것이 옳은 것 같다. 또한 이 방법이 추후 복잡한 게임으로 전개시 확장성이 더 있다. game.scene.add 에 세번째 인자값을 true로 추가하면 scene 에 추가시 바로 preload, create, update가 실행된다.

export class BasicGameComponent1 {
  // public game: any;

  private config = {
    type: Phaser.AUTO,
    width: 800,
    height: 600
  }


  constructor() {
    const game = new Phaser.Game(this.config);
    game.scene.add('main', new MyScene(), true);
  }
}

export class MyScene extends Phaser.Scene {
  constructor() {
    super({});
  }

  private preload ()
  {
  }

  private create ()
  {
  }

  override update ()
  {
  }
}

Table of contents 목차

평점을 남겨주세요
평점 : 5.0
총 투표수 : 1

질문 및 답글