mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-04-06 20:48:59 +08:00
Support older (pre-VCC) SDKs
This commit is contained in:
parent
17400cd77a
commit
995589b696
@ -22,10 +22,10 @@
|
|||||||
* SOFTWARE.
|
* SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using VRC.SDK3.Validation;
|
|
||||||
|
|
||||||
namespace net.fushizen.modular_avatar.core.editor
|
namespace net.fushizen.modular_avatar.core.editor
|
||||||
{
|
{
|
||||||
@ -34,7 +34,22 @@ namespace net.fushizen.modular_avatar.core.editor
|
|||||||
{
|
{
|
||||||
static ComponentAllowlistPatch()
|
static ComponentAllowlistPatch()
|
||||||
{
|
{
|
||||||
var listField = typeof(AvatarValidation).GetField(nameof(AvatarValidation.ComponentTypeWhiteListCommon),
|
// When running on non-VCC versions of the SDK, we can't reference AvatarValidation directly as it's not in
|
||||||
|
// an assembly definition. So just search all of the assemblies for the type.
|
||||||
|
string typeName = "VRC.SDK3.Validation.AvatarValidation";
|
||||||
|
Type avatarValidationType = null;
|
||||||
|
foreach (Assembly assembly in AppDomain.CurrentDomain.GetAssemblies())
|
||||||
|
{
|
||||||
|
avatarValidationType = assembly.GetType(typeName);
|
||||||
|
if (avatarValidationType != null)
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (avatarValidationType == null) return;
|
||||||
|
|
||||||
|
var listField = avatarValidationType.GetField("ComponentTypeWhiteListCommon",
|
||||||
BindingFlags.Static | BindingFlags.Public);
|
BindingFlags.Static | BindingFlags.Public);
|
||||||
var currentList = new List<string>(listField.GetValue(null) as string[]);
|
var currentList = new List<string>(listField.GetValue(null) as string[]);
|
||||||
currentList.Add(typeof(AvatarTagComponent).FullName);
|
currentList.Add(typeof(AvatarTagComponent).FullName);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user