feat: add version defines for VRCSDK

This commit is contained in:
kaikoga 2024-10-27 18:06:18 +09:00
parent 07b648dcc1
commit 5433227c5b
17 changed files with 90 additions and 26 deletions

View File

@ -1,4 +1,6 @@
using nadena.dev.modular_avatar.core.editor;
#if MA_VRCSDK3_AVATARS
using nadena.dev.modular_avatar.core.editor;
using NUnit.Framework;
using UnityEditor;
using UnityEngine;
@ -36,4 +38,6 @@ namespace modular_avatar_tests
Assert.AreEqual("x", curves[0].propertyName);
}
}
}
}
#endif

View File

@ -1,4 +1,6 @@
using System;
#if MA_VRCSDK3_AVATARS
using System;
using System.Collections.Generic;
using System.Linq;
using nadena.dev.ndmf;
@ -158,4 +160,6 @@ namespace modular_avatar_tests
Assert.IsFalse(state.transformMaskElements.Any(e => e.Item1 == "Armature/Hips/UpperLeg.R"));
}
}
}
}
#endif

View File

@ -1,4 +1,6 @@
using System.Linq;
#if MA_VRCSDK3_AVATARS
using System.Linq;
using nadena.dev.ndmf;
using NUnit.Framework;
using UnityEditor.Animations;
@ -26,4 +28,6 @@ namespace modular_avatar_tests
Assert.AreEqual(desiredIndex, alc.layer);
}
}
}
}
#endif

View File

@ -1,9 +1,10 @@
using nadena.dev.modular_avatar.core.editor;
#if MA_VRCSDK3_AVATARS_3_5_2_OR_NEWER
using nadena.dev.modular_avatar.core.editor;
using NUnit.Framework;
using UnityEditor.Animations;
using VRC.SDK3.Avatars.Components;
#if MA_VRCSDK3_AVATARS_3_5_2_OR_NEWER
namespace modular_avatar_tests
{
public class PlayAudioRemapping : TestBase
@ -28,4 +29,5 @@ namespace modular_avatar_tests
}
}
}
#endif

View File

@ -1,4 +1,6 @@
using modular_avatar_tests;
#if MA_VRCSDK3_AVATARS
using modular_avatar_tests;
using nadena.dev.modular_avatar.animation;
using nadena.dev.modular_avatar.core;
using nadena.dev.modular_avatar.core.editor;
@ -47,4 +49,6 @@ namespace UnitTests.MergeAnimatorTests
Assert.IsTrue(state.motion.name.StartsWith("Anim2"));
}
}
}
}
#endif

View File

@ -1,3 +1,5 @@
#if MA_VRCSDK3_AVATARS
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
@ -35,3 +37,4 @@ public class PreexistingParamsTest : TestBase
}
}
#endif

View File

@ -1,4 +1,6 @@
using modular_avatar_tests;
#if MA_VRCSDK3_AVATARS
using modular_avatar_tests;
using nadena.dev.modular_avatar.core;
using nadena.dev.modular_avatar.core.editor;
using NUnit.Framework;
@ -25,4 +27,6 @@ namespace UnitTests.MergeAnimatorTests.ProxyAnim
Assert.AreEqual(originalClip, resultClip);
}
}
}
}
#endif

View File

@ -1,4 +1,6 @@
using modular_avatar_tests;
#if MA_VRCSDK3_AVATARS
using modular_avatar_tests;
using nadena.dev.ndmf;
using NUnit.Framework;
using UnityEditor.Animations;
@ -38,4 +40,6 @@ namespace UnitTests.MergeAnimatorTests.SyncedLayerOverrideInSubStatemachine
Assert.NotNull(motion);
}
}
}
}
#endif

View File

@ -1,3 +1,5 @@
#if MA_VRCSDK3_AVATARS
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
@ -268,3 +270,4 @@ public class ConvertTransitionTypes : TestBase
}
}
#endif

View File

@ -1,3 +1,5 @@
#if MA_VRCSDK3_AVATARS
using System.Collections;
using System.Collections.Generic;
using System.Collections.Immutable;
@ -24,3 +26,5 @@ public class MergeDirectBlendTreeTests : TestBase
Assert.AreEqual(0, parameters["DEF"]);
}
}
#endif

View File

@ -1,4 +1,6 @@
using System.Linq;
#if MA_VRCSDK3_AVATARS
using System.Linq;
using modular_avatar_tests;
using nadena.dev.modular_avatar.core.editor;
using NUnit.Framework;
@ -58,4 +60,6 @@ namespace UnitTests.ReactiveComponent
Assert.AreEqual(m3.actionGroups, m1.actionGroups);
}
}
}
}
#endif

View File

@ -1,4 +1,6 @@
using System.Linq;
#if MA_VRCSDK3_AVATARS
using System.Linq;
using modular_avatar_tests;
using nadena.dev.modular_avatar.core;
using nadena.dev.modular_avatar.core.editor;
@ -47,4 +49,6 @@ namespace UnitTests.ReactiveComponent
Assert.IsFalse(obj.activeSelf);
}
}
}
}
#endif

View File

@ -1,4 +1,6 @@
using System;
#if MA_VRCSDK3_AVATARS
using System;
using System.Collections.Generic;
using System.Linq;
using modular_avatar_tests;
@ -112,4 +114,6 @@ namespace UnitTests.ReactiveComponent.ParameterAssignment
Assert.AreEqual(expectedDefaultValue, avDesc.expressionParameters.parameters.Single().defaultValue);
}
}
}
}
#endif

View File

@ -1,4 +1,6 @@
using System;
#if MA_VRCSDK3_AVATARS
using System;
using System.Linq;
using modular_avatar_tests;
using nadena.dev.modular_avatar.core;
@ -82,4 +84,6 @@ namespace UnitTests.ReactiveComponent.ParameterAssignment
Assert.AreEqual(expected, descriptor.expressionParameters.parameters.Single().valueType);
}
}
}
}
#endif

View File

@ -1,3 +1,5 @@
#if MA_VRCSDK3_AVATARS
using System.Collections;
using System.Collections.Generic;
using System.Linq;
@ -96,3 +98,5 @@ public class ShapeDeletionAnalysis : TestBase
Assert.AreEqual(originalSharedMesh, mesh.sharedMesh);
}
}
#endif

View File

@ -1,4 +1,6 @@
using modular_avatar_tests;
#if MA_VRCSDK3_AVATARS
using modular_avatar_tests;
using nadena.dev.modular_avatar.animation;
using nadena.dev.modular_avatar.core.editor;
using NUnit.Framework;
@ -121,4 +123,6 @@ namespace ShapeChangerTests
Assert.AreEqual(100.0f, smr.GetBlendShapeWeight(sharedMesh.GetBlendShapeIndex("key3")), 0.1f);
}
}
}
}
#endif

View File

@ -1,4 +1,6 @@
using System.Collections.Generic;
#if MA_VRCSDK3_AVATARS
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
@ -57,4 +59,6 @@ namespace UnitTests.VisibleHeadAccessoryTest
Assert.AreEqual(headchop.globalScaleFactor, 1);
}
}
}
}
#endif