Skip to content

Instantly share code, notes, and snippets.

@SChinchi
SChinchi / RoR2AssetDump.cs
Last active May 19, 2024 20:51 — forked from yekoc/RoR2AssetDump.cs
Label game object children as `currentIndex / total`
Awake of your mod
RoR2Application.onLoad += Thing;
private static bool IsNetworkBaseType(Type type)
{
return type.BaseType != null && type.BaseType == typeof(UnityEngine.Networking.NetworkBehaviour);
}
private static bool HasValidBaseType(Type type)