OnCursorLeave() public method

public OnCursorLeave ( ) : void
return void
示例#1
0
 internal static void SetCursorEnterState(GlFwForm f, bool enter)
 {
     if (enter)
     {
         f.OnCursorEnter();
     }
     else
     {
         f.OnCursorLeave();
     }
 }