// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Microsoft.MixedReality.Toolkit.Experimental.InteractiveElement { /// /// The event configuration for the Focus InteractionState. /// public class FocusEvents : BaseInteractionEventConfiguration { /// /// A Unity event with FocusEventData. This event is fired when focus enters an object. /// public FocusInteractionEvent OnFocusOn = new FocusInteractionEvent(); /// /// A Unity event with FocusEventData. This event is fired when focus exits an object. /// public FocusInteractionEvent OnFocusOff = new FocusInteractionEvent(); } }