[Solved] How to hide cursor in CEGUI 0.8.3
Posted: Sun Mar 23, 2014 11:27
I want to hide the cursor so I searched the forum/google to know how to do so. All links points to
but getSingleton() isn't the member of CEGUI::MouseCursor anymore, so how do I hide the cursor now? I tried
but it didn't work (as expected since we won't get current cursor pointer with that).
Thank you.
Code: Select all
CEGUI::MouseCursor::getSingleton().hide();
but getSingleton() isn't the member of CEGUI::MouseCursor anymore, so how do I hide the cursor now? I tried
Code: Select all
CEGUI::MouseCursor cursor;
cursor.hide();
but it didn't work (as expected since we won't get current cursor pointer with that).
Thank you.