From 07397554d7f678c9ef51e9220dcb5271e310d5eb Mon Sep 17 00:00:00 2001 From: castled Date: Thu, 9 Oct 2014 13:00:08 -0700 Subject: [PATCH] Fix loader for tiles --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index 86ce36b..3157e99 100644 --- a/main.js +++ b/main.js @@ -20,7 +20,7 @@ function Main(){ //document.body.appendChild(renderer.view); // Set up the asset loader for sprite images with the .json data and a callback - var tileAtlas = ["citystates.json"]; + var tileAtlas = ["tiles.json"]; var loader = new PIXI.AssetLoader(tileAtlas); loader.onComplete = onLoaded; loader.load();