1

だから私はTDゲームを作るためにjavascriptとeaseljsを一緒に学ぼうとしています。チュートリアルからスプライト クラスを拡張して、各ゲーム オブジェクトを個別に作成する方法を考え出すことができました。私がやろうとしているのは、 である基本クラスを作成し、などSpriteの各オブジェクトがそれを継承することです。TowerEnemy

Entity.js

function Entity(name, img, x_end) {
   this.initialize(name,img,x_end); <- throws Error 
}

Entity.prototype = new createjs.Sprite();
Entity.prototype.Sprite_initialize = this.initialize; //unique to avoid overiding base class

Entity.prototype.initialize = function (name, img, x_end) {
    var localSpriteSheet = new createjs.SpriteSheet({
        images: [img], //image to use
        frames: {width: 32, height: 32},
        animations: {
            walk: [0, 0, "walk", 4],
        }
    });

    this.Sprite_initialize(localSpriteSheet);
    this.x_end = x_end;

    // start playing the first sequence:
    this.gotoAndPlay("walk");     //animate

    // starting directly at the first frame of the walk_h sequence
    this.currentFrame = 0;
};

Tower.js

function Tower(TowerName, imgTower, x_end) {

    Entity.call(this,arguments);
}

//Inherit Entity
Tower.prototype = new Entity();

// correct the constructor pointer because it points to Person
Tower.prototype.constructor = Tower;

Main.js

var Towers = new Array();
Towers[0] = new Tower("TowerA", "src/images/arrowtower_thumb2.png", canvas.width)

エラー

Uncaught TypeError: Object #< Tower > has no method 'initialize'.
4

1 に答える 1