Version: 2022.3
언어: 한국어

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

매뉴얼로 전환

파라미터

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.

반환

void Returns true if all files have been made editable.

설명

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

It must be static if implemented.

See Also: 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; } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961