Version: 2022.3
言語: 日本語

説明

Unity calls this method when file mode has been changed for one or more files.

Array of strings specifies changed files. FileMode specifies new file mode. This method must be static if implemented.

using UnityEngine;
using UnityEditor.VersionControl;

class CustomAssetModificationProcessor : UnityEditor.AssetModificationProcessor { static void FileModeChanged(string[] paths, FileMode mode) { Debug.Log($"{nameof(FileModeChanged)} ({mode}):"); foreach (var path in paths) Debug.Log(path); } }