GlueViewTestPlugins.EntityControl.Handles.Handle.IsMouseOver C# (CSharp) Method

IsMouseOver() public method

Checks to see if the cursor is over the handle
public IsMouseOver ( ) : bool
return bool
		public bool IsMouseOver()
		{
			if (InputManager.Mouse.IsOwnerFocused && GuiManager.Cursor.IsOn(mCircle))
			{
				return true;
			}

			return false;
		}