Search the Community
Showing results for tags 'internetexplorer'.
-
Hi all, Wondering if anyone had any experiences with Phaser in IE9. Is it just always going to be slow? I'm using P2 with the built in polyfill provided in the official repo for 2.0.5. Desperately trying to boost performance cross-browser, any thoughts at all would be useful... thank you. Nick
- 2 replies
-
- ie 9
- internetexplorer
-
(and 2 more)
Tagged with:
-
Hi, the Device class by phaser (refer to line 339) sets the touch property to true on IE10, Windows7, because of the msPOinterEnabled property. if ('ontouchstart' in document.documentElement || window.navigator.msPointerEnabled) { this.touch = true; } This confuses me since no touch events are fired. As I can read in the msdn - our lovely friends from M$, fires pointer events instead of touch events. Besides, in my case, no pointer device is attached anyway, and only normal mouse events are triggered. So, my question is - is it correct to equalize pointer events with touch events? How do you guys handle pointer events? Thanks for any enlightenment ;-) Best, benny!