Skip to content

Commit

Permalink
Merge pull request #1118 from ousttrue/fix10/fix_expression_editor
Browse files Browse the repository at this point in the history
[VRM10] VRM10Expression のカスタムエディターの修正
  • Loading branch information
ousttrue authored Aug 3, 2021
2 parents 2aa0f86 + 819fb95 commit 8d193fd
Show file tree
Hide file tree
Showing 9 changed files with 251 additions and 571 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ protected bool CanExtract(ScriptedImporter importer)
{
foreach (var key in m_keys)
{
if (k.type.IsAssignableFrom(key.Type))
if (k.type != null && k.type.IsAssignableFrom(key.Type))
{
return false;
}
Expand Down
272 changes: 0 additions & 272 deletions Assets/VRM10/Editor/Components/Expression/ExpressionEditorBase.cs

This file was deleted.

This file was deleted.

Loading

0 comments on commit 8d193fd

Please sign in to comment.