示例#1
0
    public static void FindHallResourcesDependences()
    {
        var isMakeSure = EditorUtility.DisplayDialog("VisualResClearUtil", "查找资源依赖", "是", "否");

        if (!isMakeSure)
        {
            return;
        }
        ClearDeleteFileList();
        ResEditorCleaner.CheckHall();
    }
示例#2
0
    public static void CleanHallResources()
    {
        var isMakeSure = EditorUtility.DisplayDialog("VisualResClearUtil", "清理无用资源", "是", "否");

        if (!isMakeSure)
        {
            return;
        }
        ClearDeleteFileList();
        ResEditorCleaner.CleanHall();
        InitDeleteAssets();
    }