Editor/HumanoidRetargeter/Embedded/ValveResourceFormat/Resource/Enums/MorphBundleType.cs
#nullable enable
using System;
using System.Collections.Generic;
using System.Linq;
using HumanoidRetargeterVrf.Utils;
namespace HumanoidRetargeterVrf
{
    /// <summary>
    /// Morph bundle data types.
    /// </summary>
    public enum MorphBundleType
    {
#pragma warning disable CS1591
        None = 0,
        PositionSpeed = 1,
        NormalWrinkle = 2,
#pragma warning restore CS1591
    }
}