Created
November 9, 2012 01:56
-
-
Save ZachMassia/4043243 to your computer and use it in GitHub Desktop.
Parent Dir JS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
melonJS: 'tiles/Cliff_tileset_0.png' file for tileset 'Cliff_tileset_0' not found! melonJS-0.9.5.js:9303 | |
melonJS: 'tiles/graphics-tiles-waterflow.png' file for tileset 'graphics-tiles-waterflow' not found! melonJS-0.9.5.js:9303 | |
melonJS: 'tiles/desert_1_0_6.png' file for tileset 'desert_1_0_6' not found! melonJS-0.9.5.js:9303 | |
melonJS: 'tiles/ground_tiles.png' file for tileset 'ground_tiles' not found! melonJS-0.9.5.js:9303 | |
melonJS: 'tiles/object- layer_1.png' file for tileset 'object- layer_1' not found! melonJS-0.9.5.js:9303 | |
melonJS: '../metatiles32x32.png' file for tileset 'metatiles32x32' not found! melonJS-0.9.5.js:9303 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Code: | |
g_resources = [{ | |
name: "meta_tiles", | |
type: "image", | |
src: "../data/metatiles32x32.png" | |
}, { | |
name: "tiles_cliff", | |
type: "image", | |
src: "../data/test_level/tiles/Cliff_tileset_0.png" | |
}, { | |
name: "tiles_desert", | |
type: "image", | |
src: "../data/test_level/tiles/desert_1_0_6.png" | |
}, { | |
name: "tiles_waterflow", | |
type: "image", | |
src: "../data/test_level/tiles/graphics-tiles-waterflow.png" | |
}, { | |
name: "tiles_ground", | |
type: "image", | |
src: "../data/test_level/tiles/ground_tiles.png" | |
}, { | |
name: "tiles_object", | |
type: "image", | |
src: "../data/test_level/tiles/object-layer_1.png" | |
}, { | |
name: "test_level", | |
type: "tmx", | |
src: "../data/test_level/test_level.tmx" | |
}]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment