fix: 修复Windows平台开启路径的报错
parent
f9e295df2b
commit
d033651510
|
|
@ -340,8 +340,9 @@ namespace Guru.Editor
|
||||||
#if UNITY_EDITOR_OSX
|
#if UNITY_EDITOR_OSX
|
||||||
EditorUtility.RevealInFinder(path);
|
EditorUtility.RevealInFinder(path);
|
||||||
#else
|
#else
|
||||||
Application.Open($"file://{path}");
|
Application.OpenURL($"file://{path}");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue