Skip to content

Commit

Permalink
URP プロジェクトで matcap を含むモデルを Editor import するとエラーになるのを回避(暫定)
Browse files Browse the repository at this point in the history
とりえあずエラー回避。
`Exception: UnityEngine.Texture.Sphere is not converted`
mtoon URP "MToon" shader is not ready. import fallback to unlit
  • Loading branch information
ousttrue committed Jul 23, 2024
1 parent 2f38b0a commit 0f704c7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ public void Extract(SubAssetKey key, TextureDescriptor texDesc)
}
else
{
throw new Exception($"{key} is not converted.");
// throw new Exception($"{key} is not converted.");
Debug.LogWarning($"{key} is not converted.");
}
}

Expand Down

0 comments on commit 0f704c7

Please sign in to comment.