mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-09-26 04:42:06 -05:00
fix: dotから始まるアセットファイルを生成しようとする
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user