entity.mouseMove(function (event, control) {
// Mouse moved with button
console.log('Mouse move 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();
});