blue_mc Posted February 4, 2015 Share Posted February 4, 2015 I'm using RequireJS to organize my game structure and tried to add this debug plugin https://github.com/englercj/phaser-debug , but I don't know how to do it. I tried to add it directly on script tag, or using requirejs to load it, but both of them fail.Anyone can help? Link to comment Share on other sites More sharing options...
CtlAltDel Posted February 4, 2015 Share Posted February 4, 2015 script tag should work, but you need to enable the debug plugin like all plugins.Add this to the create() function of your boot state for instance:game.add.plugin(Phaser.Plugin.Debug); Link to comment Share on other sites More sharing options...
blue_mc Posted February 4, 2015 Author Share Posted February 4, 2015 yeah, i've tried that.I've got this error :TypeError: plugin is undefined Link to comment Share on other sites More sharing options...
mxmlb Posted February 4, 2015 Share Posted February 4, 2015 The syntax is game.plugins.add Link to comment Share on other sites More sharing options...
blue_mc Posted February 4, 2015 Author Share Posted February 4, 2015 still the same.tried to log Phaser.Plugin.Debug and it's value is undefined. So somehow there's something wrong with the plugin constructor? Link to comment Share on other sites More sharing options...
pxam Posted February 5, 2015 Share Posted February 5, 2015 // require the plugin var PhaserDebug = require('phaser-debug'); //in the preload function this.add.plugin(PhaserDebug); blue_mc 1 Link to comment Share on other sites More sharing options...
blue_mc Posted February 5, 2015 Author Share Posted February 5, 2015 i tried that and got thisError: Module name "libs/phaserDebug/dist/phaser-debug" has not been loaded yet for context: _. Use require([])http://requirejs.org/docs/errors.html#notloadedso i try thisrequire(['libs/phaserDebug/dist/phaser-debug'], function (PhaserDebug) { game.plugins.add(PhaserDebug);});and it works! thanks guys Link to comment Share on other sites More sharing options...
Recommended Posts