quarks Posted January 4, 2015 Share Posted January 4, 2015 Is there any way to tell the loader to always do a fresh GET for a particular resource, rather using the copy from the browser's cache? I'm using a JSON file to configure some stuff, and during development it has been a major pain to get Phaser to use the new version after an edit. Jay Link to comment Share on other sites More sharing options...
pxam Posted January 5, 2015 Share Posted January 5, 2015 Add a timestamp to the filename.var stamp = '?' + new Date().getTime();game.load.image( 'key', 'images/file.png' + stamp ); Link to comment Share on other sites More sharing options...
valueerror Posted January 5, 2015 Share Posted January 5, 2015 you could open chrome devtools and check the "never use cache when dev tools are open" option.. works for me nkholski and quarks 2 Link to comment Share on other sites More sharing options...
Recommended Posts