Files
dungeons/Assets/UltimateXR/Runtime/Scripts/Avatar/Controllers/UxrEventVarAction.cs
2024-08-06 21:58:35 +02:00

23 lines
766 B
C#

// --------------------------------------------------------------------------------------------------------------------
// <copyright file="UxrEventVarAction.cs" company="VRMADA">
// Copyright (c) VRMADA, All rights reserved.
// </copyright>
// --------------------------------------------------------------------------------------------------------------------
using UnityEngine;
namespace UltimateXR.Avatar.Controllers
{
/// <summary>
/// Enumerates possible actions over an <see cref="Animator" /> component. Used by
/// <see cref="UxrStandardAvatarController" />.
/// </summary>
public enum UxrEventVarAction
{
DoNothing,
ToggleBool,
SetBool,
SetInt,
SetFloat,
Trigger
}
}