diff options
| author | Michele Bini <michele.bini@gmail.com> | 2014-10-05 14:38:17 (GMT) |
|---|---|---|
| committer | Michele Bini <michele.bini@gmail.com> | 2014-10-05 14:38:17 (GMT) |
| commit | 26e282e626be8d16eb40fe1ddf4454f96037a3e1 (patch) | |
| tree | 5711a4aa5c679d24b3bfeddb90b1f88b371347eb /jaws/src/core.js | |
| parent | 251eb1a64f07b5267ddc6a15c9cc1b1187dfe53e (diff) | |
jaws: Remove tilemap support
Diffstat (limited to 'jaws/src/core.js')
| -rwxr-xr-x | jaws/src/core.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/jaws/src/core.js b/jaws/src/core.js index ac28595..48509bd 100755 --- a/jaws/src/core.js +++ b/jaws/src/core.js @@ -38,7 +38,6 @@ var jaws = (function(jaws) { //jaws.Parallax = function() { throw("To use jaws.Parallax() you need to include src/extras/parallax.js") } //jaws.QuadTree = function() { throw("To use QuadTree() you need to include src/extras/quadtree.js") } //jaws.PixelMap = function() { throw("To use PixelMap() you need to include src/extras/pixel_map.js") } - //jaws.TileMap = function() { throw("To use TileMap() you need to include src/extras/tile_map.js") } jaws.SpriteList = function() { throw("To use SpriteList() you need to include src/extras/sprite_list.js") } jaws.Audio = function() { throw("To use jaws.Audio() you need to include src/extras/audio.js") } @@ -66,7 +65,7 @@ var jaws = (function(jaws) { * If a global property is already taken, a warning will be written to jaws log. */ jaws.unpack = function() { - var make_global = ["Sprite", "SpriteList", "Animation", "Viewport", "SpriteSheet", "Parallax", "TileMap", "pressed", "QuadTree"]; + var make_global = ["Sprite", "SpriteList", "Animation", "Viewport", "SpriteSheet", "Parallax", "pressed", "QuadTree"]; make_global.forEach(function(item) { if (window[item]) { |
