// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using UnityEngine.Events; namespace Microsoft.MixedReality.Toolkit.Experimental.InteractiveElement { /// /// The event configuration for the ToggleOff InteractionState. /// public class ToggleOffEvents : BaseInteractionEventConfiguration { /// /// A Unity event that is fired when the ToggleOff state is active. /// public UnityEvent OnToggleOff = new UnityEvent(); } }