fix null check

This commit is contained in:
ousttrue 2020-09-11 17:33:26 +09:00
parent 70f62853e0
commit 8efcc3da09

View File

@ -16,6 +16,7 @@ namespace VRM
if (r.Renderer == null)
{
yield return Validation.Error($"[VRMFirstPerson]{self.name}.Renderers[{i}].Renderer is null");
continue;
}
if (!hierarchy.Contains(r.Renderer.transform))
{