shawnbless Posted November 30, 2013 Share Posted November 30, 2013 This example is not working for me. Uncaught NotSupportedError: The implementation did not support the requested type of object or operation. Is this a problem for anyone else? Link to comment Share on other sites More sharing options...
kevinthompson Posted November 30, 2013 Share Posted November 30, 2013 This example is not working for me. Uncaught NotSupportedError: The implementation did not support the requested type of object or operation. ... Is this a problem for anyone else? I had the same problem. I've opened an issue on the Github repo here: https://github.com/photonstorm/phaser/issues/235. shawnbless 1 Link to comment Share on other sites More sharing options...
jcs Posted November 30, 2013 Share Posted November 30, 2013 the problem is at line 19 in the example code:bmd = game.add.bitmapData('ball', 32, 64);which calls the GameObjectFactor methodbitmapData: function (width, height)which isn't expecting the 'name' parameter. name is therefore passed as width, and the browser javascript engine barfs(I noted this in the issue) shawnbless 1 Link to comment Share on other sites More sharing options...
Recommended Posts