Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Export Dialog の更新 #550

Merged
merged 5 commits into from
Sep 14, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix null check
  • Loading branch information
ousttrue committed Sep 11, 2020
commit 8efcc3da0988faf792c50bdd9a80d1d82fb08e7d
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ public static IEnumerable<Validation> Validate(this VRMFirstPerson self)
if (r.Renderer == null)
{
yield return Validation.Error($"[VRMFirstPerson]{self.name}.Renderers[{i}].Renderer is null");
continue;
}
if (!hierarchy.Contains(r.Renderer.transform))
{
Expand Down