First I must say you have done a great job with CEGUI, best and most dynamic UI I've tried for a long time.
Now to my question, have started with some tooltips and have a little problem with clipping. What is strange is that it shows right in the editor but not when I load the layout in ogre3d.
Here is a picture to clarify the problem, the left is the layout loaded in the editor and to the right loaded in ogre3d.
As you can see, the frame appears around normaly. But in ogre3d, it only render the area inside the red frame.
Some simple loading code.
Code: Select all
// Create Sheet.
CEGUI::Window *pSheet = windowMgr.createWindow("DefaultWindow", "root");
pSheet->setMousePassThroughEnabled(true);
CEGUI::System::getSingleton().setGUISheet(pSheet);
// Loading of Layout
CEGUI::Window *pLayout = windowMgr.loadWindowLayout("test.layout", prefix);
pSheet->addChildWindow(pLayout);
Thanks and keep your good work up!