mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-07-01 04:10:17 -05:00
null check
何故か null の時がある
This commit is contained in:
parent
c1c778e907
commit
a7d0880295
|
|
@ -81,7 +81,7 @@ namespace UniGLTF
|
|||
{
|
||||
foreach (var key in m_keys)
|
||||
{
|
||||
if (k.type.IsAssignableFrom(key.Type))
|
||||
if (k.type != null && k.type.IsAssignableFrom(key.Type))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user