mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-13 22:09:53 -05:00
fix: dotから始まるアセットファイルを生成しようとする
This commit is contained in:
parent
2fd81cb173
commit
97eb58b4fc
|
|
@ -70,6 +70,10 @@ namespace UniGLTF
|
|||
{
|
||||
path = path.Replace(x, '+');
|
||||
}
|
||||
|
||||
if (path.StartsWith('.'))
|
||||
path = '+' + path;
|
||||
|
||||
return path;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -67,6 +67,8 @@ namespace UniVRM10
|
|||
{
|
||||
path = path.Replace(x, '+');
|
||||
}
|
||||
if (path.StartsWith('.'))
|
||||
path = '+' + path;
|
||||
return path;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user