私は以下のようなオブジェクトを持っています
function obj() {
this.cellSize = 50;
this.createBlock = function() { // creates a block object
this.x = 0;
this.y = 0 - (this.cellSize * 1.5);
this.baseVelocity = 1;
this.velocity = this.baseVelocity;
return this;
};
this.activeBlock = this.createBlock(); // active block object
this.nextBlock = this.createBlock(); // next block object
}
チェックするobj.activeBlock
と、返されるオブジェクトが取得されていませんobj.createBlock
か?
ありがとう、