This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// originally by https://github.com/brandonvdongen/PFCTools | |
using UnityEditor; | |
using UnityEngine; | |
using VRC.SDK3.Avatars.Components; | |
// ReSharper disable once CheckNamespace | |
public class HierarchyFix : AssetPostprocessor { | |
private static readonly HumanBodyBones[] Limbs = { | |
HumanBodyBones.LeftUpperArm, | |
HumanBodyBones.LeftLowerArm, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using HarmonyLib; | |
using UnityEditor; | |
using UnityEngine; | |
using System.Collections.Generic; | |
using System.Reflection.Emit; | |
[HarmonyPatch] | |
public static class PatchIsSourceBuild | |
{ |