[Ogre] GUI 추가시 마우스 갇히는 현상
Ogre 에서 제공하는 ExampleFrameListener 와 ExampleApplication 객체를 상속받지 않고 GUI를 추가할때 생기는 문제중, 마우스가 특정영역에 갇히는 경우가 있습니다. ogre 어플리케이션위자드로 생성하거나, 기존의 example 코드를 상속받아서 할때는 잘되지만, 상속받지 않을때는 안되는 이유는 ExampleFrameListener 의 한 부분을 보면 알수 있었습니다. //Adjust mouse clipping area virtual void windowResized(RenderWindow* rw) { unsigned int width, height, depth; int left, top; rw->getMetrics(width, height, depth, left, top..