UMD.HCIL.Piccolo.Event.PInputEventArgs.PopCursor C# (CSharp) Method

PopCursor() public method

Pop the cursor on top of the cursorStack and set it as the canvas cursor.
public PopCursor ( ) : void
return void
		public virtual void PopCursor() {
			TopCamera.Canvas.PopCursor();
		}

Usage Example

			/// <summary>
			/// Overridden.  See <see cref="PBasicInputEventHandler.OnMouseUp">
			/// PBasicInputEventHandler.OnMouseUp</see>.
			/// </summary>
			public override void OnMouseUp(object sender, PInputEventArgs e) {
				base.OnMouseUp(sender, e);
				if (cursorPushed) {
					e.PopCursor();
					cursorPushed = false;
				}
			}
All Usage Examples Of UMD.HCIL.Piccolo.Event.PInputEventArgs::PopCursor