/// <summary>
        /// Cancels any haptic process currently running on the Left Controller using the main <see cref="HapticProcess"/>.
        /// </summary>
        public virtual void CancelHapticProcessOnLeftController()
        {
            if (ActiveLeftHapticProcess == null)
            {
                return;
            }

            ActiveLeftHapticProcess.Cancel();
        }
        /// <summary>
        /// Begins the haptic process on the Left Controller using the main <see cref="HapticProcess"/>.
        /// </summary>
        public virtual void BeginHapticProcessOnLeftController()
        {
            if (ActiveLeftHapticProcess == null)
            {
                return;
            }

            ActiveLeftHapticProcess.Begin();
        }