modular-avatar/Runtime/ModularAvatarMergeBlendTree.cs

42 lines
1.3 KiB
C#
Raw Normal View History

#if MA_VRCSDK3_AVATARS
2025-03-09 14:32:50 -07:00
using System;
using API;
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 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
= (_, _) => "";
// We can't actually reference a BlendTree here because it's not available when building a player build
2025-03-09 14:32:50 -07:00
public Object BlendTree;
public MergeAnimatorPathMode PathMode = MergeAnimatorPathMode.Relative;
public AvatarObjectReference RelativePathRoot = new AvatarObjectReference();
2025-03-09 14:32:50 -07:00
Motion IVirtualizeMotion.Motion
{
get => (Motion)BlendTree;
set => BlendTree = value;
}
string IVirtualizeMotion.GetMotionBasePath(object ndmfBuildContext, bool clearPath = true)
{
var path = GetMotionBasePathCallback(this, ndmfBuildContext);
if (clearPath)
{
PathMode = MergeAnimatorPathMode.Absolute;
}
return path;
}
}
}
#endif