jdotr Posted June 20, 2018 Share Posted June 20, 2018 Hey All! I needed to display some dialog boxes in a recent game and the old 9-slice plugin wasn't ported to v3 yet so I wrote one (github repo). I have a live demo here and a gif of it in use follows. Would love to see this get some use outside of my projects so give it a spin. I'm pretty active on the discord and try to check in here weekly so feel free to ping if you have any questions! Happy hacking! B3L7, Frederik and Befive.Info 2 1 Link to comment Share on other sites More sharing options...
B3L7 Posted June 20, 2018 Share Posted June 20, 2018 This looks great. Can't wait to try it out. Thank you! Link to comment Share on other sites More sharing options...
Keisha Posted September 4, 2018 Share Posted September 4, 2018 On 6/20/2018 at 8:32 AM, jdotr said: Hey All! I needed to display some dialog boxes in a recent game and the old 9-slice plugin wasn't ported to v3 yet so I wrote one (github repo). I have a live demo here and a gif of it in use follows. Would love to see this get some use outside of my projects so give it a spin. I'm pretty active on the discord and try to check in here weekly so feel free to ping if you have any questions! Happy hacking! @jdotr I am trying to use this plugin in my game. Getting the following error: Uncaught ReferenceError: NineSlicePlugin is not defined. My code is look like this. <script type="text/javascript" src="https://github.com/jdotrjs/phaser3-nineslice/releases/download/v0.3.7/nineslice.js" ></script> var conf = { type: Phaser.AUTO, width: window.innerWidth, height: window.innerHeight, backgroundColor: 0x57407c, plugins: { global: [ NineSlicePlugin.DefaultCfg ], }, scene: [gameScene] }; game = new Phaser.Game(conf); let gameScene = new Phaser.Scene('Game'); gameScene.create = function () { this.dlg = this.add.nineslice( 110, 110, // this is the starting x/y location 340, 240, // the width and height of your object 'dlgLarge', // a key to an already loaded image 88, // the width and height to offset for a corner slice 24 // (optional) pixels to offset when computing the safe usage area ) }; Link to comment Share on other sites More sharing options...
prob Posted September 4, 2018 Share Posted September 4, 2018 Looks like you mistyped the plugin name; it should be "NineSlice.Plugin.DefaultCfg". jdotr 1 Link to comment Share on other sites More sharing options...
bambieee Posted December 2, 2018 Share Posted December 2, 2018 Great job! Thank you! Would you consider to also add a Muliatlas feature to the plugin? Link to comment Share on other sites More sharing options...
Frederik Posted October 15, 2020 Share Posted October 15, 2020 (edited) Thanks for making this! I'm trying to use it with Phaser 3.1.16 (my code is very similar to the example code in your demo) and an error (t.save is not a function) popped up. It seems that error was fixed in a previous build, but maybe only for earlier Phaser 3 version? EDIT: Just update to latest phaser and plugin, and that works fine! Thanks again for an excellent plugin. Edited October 15, 2020 by Frederik Issue obsolete Link to comment Share on other sites More sharing options...
Recommended Posts