IgeEntity

Method: mouseOut

Gets / sets the callback that is fired when a mouse out event is triggered.
mouseOut (Function callback)
  • Functioncallback
Returns *

Hook the mouse out event and stop it propagating further down the scenegraph

entity.mouseOut(function (event, control) {
    // Mouse out with button
    console.log('Mouse out button: ' + event.button);

    // Stop the event propagating further down the scenegraph
    control.stopPropagation();

    // You can ALSO stop propagation without the control object
    // reference via the global reference:
    ige.input.stopPropagation();
});
© Copyright 2013 Irrelon Software Limited. All Rights Reserved. UK Registered Company Number: 07522767
Isogenic (ī´sōjen´ik): Adj originating from a common source; possessing the same genetic composition.
Strange Things Happen at the One Two Point