Reimplement solo and mp rig switching

This commit is contained in:
2024-09-12 16:55:54 +02:00
parent e428d3a9f9
commit f8822831aa
9 changed files with 119 additions and 198 deletions

View File

@@ -43,4 +43,9 @@ public static class Injector
{
LookupContainer(go, container).InjectGameObject(go);
}
public static void Inject(this MonoBehaviour mb, ContainerSources container = ContainerSources.SceneContext)
{
LookupContainer(mb.gameObject, container).Inject(mb);
}
}