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