示例#1
0
    public static void BuildUpdate()
    {
        var    m_Settings = AddressableAssetSettingsDefaultObject.Settings;
        string path       = (Application.dataPath.Substring(0, Application.dataPath.LastIndexOf('/')) + "/" + m_Settings.RemoteCatalogBuildPath.GetValue(m_Settings));

        MyEditorTools.ShowExplorer(path.Substring(0, path.LastIndexOf('/')));
    }
示例#2
0
 public static void ShowInExplorer()
 {
     MyEditorTools.ShowExplorer(GetExportPath());
 }
示例#3
0
 public static void OpenLocalBuild()
 {
     MyEditorTools.ShowExplorer(Application.dataPath.Substring(0, Application.dataPath.LastIndexOf('/')) + "/" + Addressables.BuildPath);
 }