modular-avatar/Runtime/ModularAvatarMergeBlendTree.cs

62 lines
2.0 KiB
C#
Raw Normal View History

#if MA_VRCSDK3_AVATARS
2025-03-09 14:32:50 -07:00
using System;
using API;
using JetBrains.Annotations;
using UnityEngine;
2025-03-09 14:32:50 -07:00
using Object = UnityEngine.Object;
namespace nadena.dev.modular_avatar.core
{
[AddComponentMenu("Modular Avatar/MA Merge Motion (Blend Tree)")]
[HelpURL("https://modular-avatar.nadena.dev/docs/reference/merge-blend-tree?lang=auto")]
2025-03-09 14:32:50 -07:00
public sealed class ModularAvatarMergeBlendTree : AvatarTagComponent, IVirtualizeMotion
{
2025-03-09 14:32:50 -07:00
internal static Func<ModularAvatarMergeBlendTree, object, string> GetMotionBasePathCallback
= (_, _) => "";
// Previous versions of this component expected a BlendTree, which is not available in player builds, so this
// field was made an Object. This can now become a Motion, but unfortunately that would be a breaking change.
/// <summary>
/// The blend tree or other motion to merge.
/// </summary>
[Obsolete("Use Motion property instead; this field will be removed in 2.0")] [PublicAPI]
2025-03-09 14:32:50 -07:00
public Object BlendTree;
[PublicAPI]
public MergeAnimatorPathMode PathMode = MergeAnimatorPathMode.Relative;
[PublicAPI]
public AvatarObjectReference RelativePathRoot = new AvatarObjectReference();
2025-03-09 14:32:50 -07:00
[PublicAPI]
public Motion Motion
{
get => ((IVirtualizeMotion)this).Motion;
set => ((IVirtualizeMotion)this).Motion = value;
}
2025-03-09 14:32:50 -07:00
Motion IVirtualizeMotion.Motion
{
2025-03-21 20:20:23 -07:00
#pragma warning disable CS0618 // Type or member is obsolete
2025-03-09 14:32:50 -07:00
get => (Motion)BlendTree;
set => BlendTree = value;
2025-03-21 20:20:23 -07:00
#pragma warning restore CS0618 // Type or member is obsolete
2025-03-09 14:32:50 -07:00
}
2025-03-21 20:20:23 -07:00
string IVirtualizeMotion.GetMotionBasePath(object ndmfBuildContext, bool clearPath)
2025-03-09 14:32:50 -07:00
{
var path = GetMotionBasePathCallback(this, ndmfBuildContext);
if (clearPath)
{
PathMode = MergeAnimatorPathMode.Absolute;
}
return path;
}
}
}
#endif