// and check to see if the time this task was started is the same
// time the Selection Manager thinks the hover task should be.
synchronized(SceneManager.this) {
if (thisStartTime == hoverStartTime) {
hoverEntity = lastEventEntity;
HoverEvent ev = new HoverEvent(lastEventEntity, true, mouseEvent);
InputManager.inputManager().postEvent(ev);
hoverTimer = null;
}
}
}