mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-01-04 13:45:04 +08:00
ddbc3b164b
* chore: rearrange package structure to have the package at the root * ci: update CI workflows * ci: fixing workflow bugs * ci: recurse building .zip package * ci: more fixes * ci: add back in the nadena.dev VPM repo * ci: fix tests
26 lines
839 B
C#
26 lines
839 B
C#
using nadena.dev.modular_avatar.core.editor;
|
|
using NUnit.Framework;
|
|
using UnityEditor.Animations;
|
|
|
|
namespace modular_avatar_tests.DirectBlendTreeParameters
|
|
{
|
|
public class DirectBlendTreeParameters : TestBase
|
|
{
|
|
[Test]
|
|
public void RemapsDirectBlendTreeParameters()
|
|
{
|
|
var prefab = CreatePrefab("DirectBlendTreeParameters.prefab");
|
|
AvatarProcessor.ProcessAvatar(prefab);
|
|
|
|
var layerName = "merged";
|
|
|
|
var motion = findFxMotion(prefab, layerName);
|
|
var blendTree = motion as BlendTree;
|
|
Assert.NotNull(blendTree);
|
|
|
|
var children = blendTree.children;
|
|
Assert.AreEqual(children[0].directBlendParameter, "A"); //not remapped
|
|
Assert.AreEqual(children[1].directBlendParameter, "C"); //remapped
|
|
}
|
|
}
|
|
} |