fix: 修复Windows平台开启路径的报错

feature/Inventory
胡宇飞 2024-01-09 11:07:02 +08:00
parent f9e295df2b
commit d033651510
1 changed files with 2 additions and 1 deletions

View File

@ -340,8 +340,9 @@ namespace Guru.Editor
#if UNITY_EDITOR_OSX
EditorUtility.RevealInFinder(path);
#else
Application.Open($"file://{path}");
Application.OpenURL($"file://{path}");
#endif
}
#endregion