UNPKG

extjs-gpl

Version:

GPL licensed version of Sencha Ext JS

41 lines (35 loc) 1.06 kB
Ext.define('KitchenSink.view.HitTestComponent', { extend: 'Ext.draw.Component', xtype: 'hit-test-component', // Loading PathUtil is required to be able to hit test // and test for path intersections in sprites. requires: ['Ext.draw.PathUtil'], listeners: { element: 'element', scope: 'this', mouseDown: 'onMouseEvent', mouseMove: 'onMouseEvent' }, onMouseEvent: function (e) { var me = this, surface = me.getSurface(), hitResult = surface.hitTestEvent(e), oldSprite = me.oldSprite; if (oldSprite) { oldSprite.setAttributes({ strokeStyle: 'black', debug: null }); } if (hitResult && hitResult.sprite) { hitResult.sprite.setAttributes({ strokeStyle: 'red', debug: { xray: true } }); me.oldSprite = hitResult.sprite; } surface.renderFrame(); } });