Это вызывается Unity, когда он собирается записать сериализованные ассеты или файлы сцены на диск.
If it is implemented, it allows you to override which files are written by returning an array containing a subset of the pathnames which have been passed by Unity. Note that this function is static.
using UnityEngine; using UnityEditor; using System.Collections;
public class FileModificationWarning : SaveAssetsProcessor { static string[] OnWillSaveAssets(string[] paths) { Debug.Log("OnWillSaveAssets"); foreach (string path in paths) Debug.Log(path); return paths; } }