當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript Game.getPainter函數代碼示例

本文整理匯總了TypeScript中ui/Game.getPainter函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript getPainter函數的具體用法?TypeScript getPainter怎麽用?TypeScript getPainter使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了getPainter函數的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: render

  public render(viewport : Viewport) {
    if (!this.decoy_.isValid()) {
      this.game_.getPainter().unregisterDrawable(Layer.PROJECTILES, this);
      return;
    }

    PlayerSprite.renderPlayer(this.game_, viewport, this.decoy_.getOwner(), this.decoy_.getDirection(), this.decoy_.getPosition());
  }
開發者ID:krslynx,項目名稱:dotproduct,代碼行數:8,代碼來源:DecoySprite.ts

示例2: constructor

  constructor(game : Game, decoy : Decoy) {
    super(game.simulation);

    this.game_ = game;
    this.decoy_ = decoy;

    game.getPainter().registerDrawable(Layer.PROJECTILES, this);
  }
開發者ID:krslynx,項目名稱:dotproduct,代碼行數:8,代碼來源:DecoySprite.ts

示例3: constructor

  constructor(game : Game, repel : Repel) {
    super(game.simulation);

    this.game_ = game;
    this.repel_ = repel;
    this.animation_ = game.getResourceManager().getSpriteSheet('repel').getAnimation(0);

    game.getPainter().registerDrawable(Layer.EFFECTS, this);
  }
開發者ID:krslynx,項目名稱:dotproduct,代碼行數:9,代碼來源:RepelSprite.ts

示例4: constructor

  constructor(game : Game, player : Player, layer : Layer) {
    this.game_ = game;
    this.player_ = player;
    this.layer_ = layer;

    Listener.add(player, 'death', this.death_.bind(this));
    Listener.add(player, 'respawn', this.respawn_.bind(this));

    game.getPainter().registerDrawable(layer, this);
  }
開發者ID:krslynx,項目名稱:dotproduct,代碼行數:10,代碼來源:PlayerSprite.ts

示例5: constructor

  constructor(game : Game) {
    this.game_ = game;
    this.resourceManager_ = game.getResourceManager();
    this.player_ = game.simulation.playerList.localPlayer;
    this.statusHudImage_ = this.resourceManager_.getImage('statusHud');
    this.energyFontImage_ = this.resourceManager_.getImage('energyFont');
    this.ledFontImage_ = this.resourceManager_.getImage('ledFont');

    game.getPainter().registerDrawable(Layer.HUD, this);
  }
開發者ID:krslynx,項目名稱:dotproduct,代碼行數:10,代碼來源:HudLayer.ts

示例6: constructor

  constructor(game : Game) {
    super(game.simulation),

    this.resourceManager_ = game.getResourceManager();
    this.map_ = game.simulation.map;
    this.animations_ = [];
    this.tileset_ = this.resourceManager_.getImage('tileset');

    game.getPainter().registerDrawable(Layer.MAP, this);
  }
開發者ID:krslynx,項目名稱:dotproduct,代碼行數:10,代碼來源:MapLayer.ts

示例7: constructor

  constructor(game : Game, animation : Animation, position : Vector, velocity : Vector, layer? : Layer) {
    super(game.simulation);

    this.game_ = game;
    this.animation_ = animation;
    this.position_ = position;
    this.velocity_ = velocity;
    this.layer_ = layer || Layer.EFFECTS;

    game.getPainter().registerDrawable(this.layer_, this);
  }
開發者ID:krslynx,項目名稱:dotproduct,代碼行數:11,代碼來源:Effect.ts

示例8: render

  public render(viewport : Viewport) {
    if (!this.player_.isValid()) {
      this.game_.getPainter().unregisterDrawable(this.layer_, this);
      return;
    }

    if (!this.player_.isAlive) {
      return;
    }

    PlayerSprite.renderPlayer(this.game_, viewport, this.player_, this.player_.direction, this.player_.getPosition());
  }
開發者ID:krslynx,項目名稱:dotproduct,代碼行數:12,代碼來源:PlayerSprite.ts

示例9: constructor

  constructor(game : Game, burst : Burst) {
    super(game.simulation);

    this.game_ = game;
    this.burst_ = burst;
    this.activeAnimation_ = game.getResourceManager().getSpriteSheet('bullets').getAnimation(9);
    this.activeAnimation_.setRepeatCount(-1);
    this.inactiveAnimation_ = game.getResourceManager().getSpriteSheet('bullets').getAnimation(4);
    this.inactiveAnimation_.setRepeatCount(-1);

    Listener.add(this.burst_, 'explode', this.onExplode_.bind(this));

    game.getPainter().registerDrawable(Layer.PROJECTILES, this);
  }
開發者ID:krslynx,項目名稱:dotproduct,代碼行數:14,代碼來源:BurstSprite.ts

示例10: constructor

  constructor(game : Game, bullet : Bullet) {
    super(game.simulation);

    let level = bullet.getLevel();

    this.game_ = game;
    this.bullet_ = bullet;
    this.animation_ = game.getResourceManager().getSpriteSheet('bullets').getAnimation(level);
    this.animation_.setRepeatCount(-1);
    this.bouncingAnimation_ = game.getResourceManager().getSpriteSheet('bullets').getAnimation(5 + level);
    this.bouncingAnimation_.setRepeatCount(-1);

    Listener.add(this.bullet_, 'explode', this.onExplode_.bind(this));
    game.getPainter().registerDrawable(Layer.PROJECTILES, this);
  }
開發者ID:krslynx,項目名稱:dotproduct,代碼行數:15,代碼來源:BulletSprite.ts


注:本文中的ui/Game.getPainter函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。