Disabled invalid HumanoidPlayer prefab path

This commit is contained in:
Pascal Serrarens 2023-03-01 12:17:38 +01:00
parent ab36bea0a7
commit 8769d7328f

View File

@ -22,7 +22,8 @@ namespace Passer.Humanoid {
} }
public static GameObject GetHumanoidPlayerPrefab(string prefabPath) { public static GameObject GetHumanoidPlayerPrefab(string prefabPath) {
GameObject prefab = PrefabUtility.LoadPrefabContents(prefabPath); //GameObject prefab = PrefabUtility.LoadPrefabContents(prefabPath);
GameObject prefab = null;
return prefab; return prefab;
} }