Page 1 of 1

Hide Mouse Cursor

Posted: Mon Mar 19, 2007 21:37
by CaseyB
I am using OIS for input and have create the mouse in non-exclusive mode, so I want to be able to hide the CEGUI mouse pointer. Is there an overall switch for this or do I need to set it per window?

Posted: Mon Mar 19, 2007 21:40
by Pompei2

Code: Select all

CEGUI::MouseCursor::getSingleton().hide( );

:)

Posted: Tue Mar 20, 2007 14:06
by CaseyB
hehe, I must have missed that! Thanks!