How to return the controlling to default event handler?
Given that I had installed my own mouse event handler,
but how can I return the controlling to default/system event handler?
Because after installing my own mouse event handler,
and I pressed toolbar to add a sphere/box/cylinder to world
it turned out that the sphere/box/cylinder could not be released and placed on the ground
becuase "Mouse Release Event" is handled by my own mouse handler,default/system event handler cannot listen to this event
How can I deal with this problem?
Thank you~