mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-27 13:32:46 -05:00
Merge pull request #1884 from ousttrue/fix/may_fixed_1866
remove ThisType? field.
This commit is contained in:
commit
8644aabd1e
|
|
@ -50,20 +50,10 @@ namespace VRMShaders
|
|||
}
|
||||
}
|
||||
|
||||
static PathObject? _root;
|
||||
public static PathObject UnityRoot
|
||||
{
|
||||
get
|
||||
{
|
||||
if (!_root.HasValue)
|
||||
{
|
||||
_root = FromFullPath(Path.GetDirectoryName(Application.dataPath));
|
||||
}
|
||||
return _root.Value;
|
||||
}
|
||||
}
|
||||
public static PathObject UnityRoot { get; } = FromFullPath(Path.GetDirectoryName(Application.dataPath));
|
||||
|
||||
public static PathObject UnityAssets => UnityRoot.Child("Assets/");
|
||||
// 記述順に解決?
|
||||
public static PathObject UnityAssets { get; } = UnityRoot.Child("Assets/");
|
||||
|
||||
PathObject(string src)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user