mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-08-28 13:54:45 -05:00
Merge pull request #810 from ousttrue/fix/gltfparser_targetpath
fix GltfParser.TargetPath
This commit is contained in:
@@ -77,7 +77,15 @@ namespace UniGLTF
|
||||
Parse(path, File.ReadAllBytes(path));
|
||||
}
|
||||
|
||||
public string TargetPath;
|
||||
string m_targetPath;
|
||||
public string TargetPath
|
||||
{
|
||||
get => m_targetPath;
|
||||
set
|
||||
{
|
||||
m_targetPath = Path.GetFullPath(value);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Parse gltf json or Parse json chunk of glb
|
||||
|
||||
Reference in New Issue
Block a user