예제 #1
0
        //---------------------------------------------------------------
        #endregion
        //---------------------------------------------------------------

        //---------------------------------------------------------------
        #region Methods
        //---------------------------------------------------------------
        /// <summary>
        /// Method that handles mouse events.
        /// </summary>
        /// <param name="position">The current position of the mouse.</param>
        /// <param name="button">The button that is pressed or released.</param>
        /// <param name="pressed">Flag that indicates if button is pressed or released.</param>
        /// <returns>True if the key was handled and shouldn't be passed on to the underlaying elements.</returns>
        public override bool OnMouse(Purple.Math.Vector3 position, Purple.Input.MouseButton button, bool pressed)
        {
            ButtonState newState = buttonLogic.Update(this, position, button, pressed);

            UpdateState(newState);
            return(false);
        }
예제 #2
0
 /// <summary>
 /// Method that handles mouse events.
 /// </summary>
 /// <param name="position">The current position of the mouse.</param>
 /// <param name="button">The button that is pressed or released.</param>
 /// <param name="pressed">Flag that indicates if button is pressed or released.</param>
 /// <returns>True if the key was handled and shouldn't be passed on to the underlaying elements.</returns>
 public override bool OnMouse(Purple.Math.Vector3 position, Purple.Input.MouseButton button, bool pressed)
 {
     return(base.OnMouse(position, button, pressed));
 }