// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Microsoft.MixedReality.Toolkit.Experimental.InteractiveElement { /// /// The event configuration for the Touch InteractionState. /// public class TouchEvents : BaseInteractionEventConfiguration { /// /// A Unity event with HandTrackingInputEventData. This event is fired when Touch enters an object. /// public TouchInteractionEvent OnTouchStarted = new TouchInteractionEvent(); /// /// A Unity event with HandTrackingInputEventData. This event is fired when Touch exits an object. /// public TouchInteractionEvent OnTouchCompleted = new TouchInteractionEvent(); /// /// A Unity event with HandTrackingInputEventData. This event is fired when Touch is updated. /// public TouchInteractionEvent OnTouchUpdated = new TouchInteractionEvent(); } }