2023-11-10 14:37:56 +08:00
|
|
|
|
#if MA_VRCSDK3_AVATARS
|
|
|
|
|
|
|
|
|
|
using nadena.dev.modular_avatar.core.editor;
|
2023-04-10 19:18:59 +08:00
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
using VRC.SDK3.Avatars.Components;
|
|
|
|
|
using VRC.SDK3.Avatars.ScriptableObjects;
|
|
|
|
|
|
|
|
|
|
namespace modular_avatar_tests
|
|
|
|
|
{
|
|
|
|
|
public class NullSubparameterTest : TestBase
|
|
|
|
|
{
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestNullSubparametersField()
|
|
|
|
|
{
|
|
|
|
|
VRCExpressionsMenu menu = ScriptableObject.CreateInstance<VRCExpressionsMenu>();
|
|
|
|
|
var root = CreateRoot("root");
|
|
|
|
|
|
|
|
|
|
var avatar = root.GetComponent<VRCAvatarDescriptor>();
|
|
|
|
|
avatar.expressionsMenu = menu;
|
|
|
|
|
|
|
|
|
|
// This should not throw an exception
|
|
|
|
|
ParameterPolicy.ProbeParameters(root);
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-11-10 14:37:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|