mirror of
https://github.com/wassname/phaser.git
synced 2026-07-28 11:23:50 +08:00
Added class constructors, fixed Stripshader, added relative Tween example and updated Tween source.
This commit is contained in:
@@ -204,6 +204,8 @@ Phaser.Tile.prototype = {
|
||||
|
||||
};
|
||||
|
||||
Phaser.Tile.prototype.constructor = Phaser.Tile;
|
||||
|
||||
/**
|
||||
* @name Phaser.Tile#bottom
|
||||
* @property {number} bottom - The sum of the y and height properties.
|
||||
|
||||
@@ -1086,3 +1086,5 @@ Phaser.Tilemap.prototype = {
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
Phaser.Tilemap.prototype.constructor = Phaser.Tilemap;
|
||||
|
||||
@@ -81,7 +81,7 @@ Phaser.Tileset = function (name, firstgid, width, height, margin, spacing, prope
|
||||
*/
|
||||
this.total = 0;
|
||||
|
||||
}
|
||||
};
|
||||
|
||||
Phaser.Tileset.prototype = {
|
||||
|
||||
@@ -151,4 +151,6 @@ Phaser.Tileset.prototype = {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
};
|
||||
|
||||
Phaser.Tileset.prototype.constructor = Phaser.Tileset;
|
||||
|
||||
Reference in New Issue
Block a user