enriqueto Posted April 27, 2014 Share Posted April 27, 2014 used phaser 2.0.3 and IE 11 link to the game: www.coldcherry.com/test/AKP Screenshot attached. Any solution? I need to fix that to sell the game Link to comment Share on other sites More sharing options...
spencerTL Posted April 27, 2014 Share Posted April 27, 2014 I ran into this a while back.The float32array is in the p2 physics and ie10 does not support this. You probably have this line in your index if you have based it on the included Phaser examples.<meta http-equiv="X-UA-Compatible" content="chrome=1, IE=9">Change it to IE=11.Note it still won't work on IE10 but, unless you need the p2 physics, you can use the Phaser build that doesn't use P2 and it will work on IE9+ Not sure about the other physics systems. Link to comment Share on other sites More sharing options...
george Posted April 27, 2014 Share Posted April 27, 2014 Edit: Did not read thoroughly enough. Spencer is right, you should ensure that IE is not running in IE9 mode. Anyway I keep my post here for reference:Float32Array is supported by IE10 as any other typed arrays are. Although you need to care for IE9. Here is a related github issuehttps://github.com/photonstorm/phaser/issues/615 You can mimic a typed arrays by using a so called polyfill. Do not expect the best performance. And do not use it with the bleeding edge of phaser- as there are currently typed arrays in use for bitmaps- which would blow the polyfill as they are far to large to handle. Instead use the latest released version of phaser (2.0.3) https://github.com/inexorabletash/polyfill/blob/master/typedarray.js Good luck! Link to comment Share on other sites More sharing options...
spencerTL Posted April 27, 2014 Share Posted April 27, 2014 You're right, my mistake. In my case it didn't work on IE10 and blamed the typed array but that was because I had the other line set to IE9 and so was forcing the browser to work like IE9, which was solved when I changed it. Later I avoided the physics because my project didn't need it anyway and that allowed it to work on IE9 too without any other solution. Link to comment Share on other sites More sharing options...
george Posted April 27, 2014 Share Posted April 27, 2014 Good luck with you sweet game. I really like the artwork! Link to comment Share on other sites More sharing options...
enriqueto Posted April 28, 2014 Author Share Posted April 28, 2014 Thanks! The game works on IE11 now Link to comment Share on other sites More sharing options...
Recommended Posts