mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-01-18 04:10:06 +08:00
27 lines
979 B
C#
27 lines
979 B
C#
using nadena.dev.ndmf;
|
|
using nadena.dev.ndmf.animation;
|
|
using NUnit.Framework;
|
|
using UnityEditor;
|
|
|
|
namespace modular_avatar_tests
|
|
{
|
|
public class MiscAnimationTests : TestBase
|
|
{
|
|
[Test]
|
|
public void HighQualityCurvesSettingPreserved()
|
|
{
|
|
var prefab = CreatePrefab("HighQualityCurvesSettingPreserved.prefab");
|
|
var context = new BuildContext(prefab, null);
|
|
context.ActivateExtensionContext<TrackObjectRenamesContext>();
|
|
context.DeactivateExtensionContext<TrackObjectRenamesContext>();
|
|
|
|
var layer = findFxLayer(prefab, "Base Layer");
|
|
|
|
var hq_on = FindStateInLayer(layer, "HQ_ON");
|
|
var hq_off = FindStateInLayer(layer, "HQ_OFF");
|
|
|
|
Assert.True(new SerializedObject(hq_on.motion).FindProperty("m_UseHighQualityCurve").boolValue);
|
|
Assert.False(new SerializedObject(hq_off.motion).FindProperty("m_UseHighQualityCurve").boolValue);
|
|
}
|
|
}
|
|
} |