You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 15, 2026. It is now read-only.
My project keeps external packages in a different folder than Application.dataPath, which breaks this extension. I'd be happy to write a pull request when I'm away from work this weekend. It looks like the issue is just in getting the GUI paths:
private static GUISkin GetUiStyle()
{
var searchRoot = string.IsNullOrEmpty(EDEX_ROOT) ? Application.dataPath : EDEX_ROOT;
var guiPaths = Directory.GetFiles(searchRoot, "AppCenterStyles.guiskin", SearchOption.AllDirectories);
foreach (var eachPath in guiPaths)
{
var loadPath = eachPath.Substring(eachPath.LastIndexOf("Assets/"));
return (GUISkin)AssetDatabase.LoadAssetAtPath(loadPath, typeof(GUISkin));
}
return null;
}
(Lines 43-53 in Editor/Scripts/Utils/AppCenterEditorHelper.cs)
My project keeps external packages in a different folder than Application.dataPath, which breaks this extension. I'd be happy to write a pull request when I'm away from work this weekend. It looks like the issue is just in getting the GUI paths:
(Lines 43-53 in Editor/Scripts/Utils/AppCenterEditorHelper.cs)