[ Web Proxy ]
URL:
Viewing: https://docs.unity3d.com/ScriptReference/AssetModificationProcessor.MakeEditable.html [Back]  [Original]

Unity - Scripting API: AssetModificationProcessor.MakeEditable(string[],string,List<string>)
Version: Unity 6.5 (6000.5)
    • Supported
    • Legacy
    LanguageEnglish
    • C#

    AssetModificationProcessor.MakeEditable(string[],string,List<string>)

    Suggest a change

    Success!

    Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

    Close

    Submission failed

    For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

    Close
    Your name Your email Suggestion* Submit suggestion

    Cancel

    Parameters

    Parameter Description
    paths Specifies an array of file paths relative to the project root.
    prompt Dialog prompt to show to the user, if a version control operation needs to be done. If null (default), no prompt is shown.
    outNotEditablePaths Output list of file paths that could not be made editable.

    Returns

    void Returns true if all files have been made editable.

    Description

    Unity calls this method when one or more files need to be opened for editing.

    It must be static if implemented.

    Additional resources: AssetDatabase.MakeEditable.

    using System.Collections.Generic;
    using UnityEngine;

    class CustomAssetModificationProcessor : UnityEditor.AssetModificationProcessor { static bool MakeEditable(string[] paths, string prompt, List<string> outNotEditablePaths) { Debug.Log("MakeEditable:"); foreach (var path in paths) Debug.Log(path); return true; } }

    Web Proxy Viewer  |  New URL  |  Original Page