Jump to content

Update not called automatically anymore?


isfuturebright
 Share

Recommended Posts

I have a ClassA that extends Phaser.Sprite and I do the following:

this.a = new Class(this.game);this.add.existing(this.a);

On ClassA.js:

ClassA = function(game, x, y, texture){  Phaser.Sprite.call(this, game, x, y, texture);};ClassA.prototype = Object.create(Phaser.Sprite.prototype);ClassA.prototype.constructor = ClassA;ClassA.prototype.update = function(){   console.log("here");};

Log isn't showing up. The object is being rendered but the update is not being called. Do I have to call it manually on my state's update?

Link to comment
Share on other sites

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...