Legacy Documentation: Version 2018.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

AssetModificationProcessor.OnWillSaveAssets(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

Cancel

Description

This is called by Unity when it is about to write serialized assets or scene files to disk.

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.

#pragma strict
public class FileModificationWarning extends SaveAssetsProcessor {
	static function OnWillSaveAssets(paths: String[]) {
		Debug.Log("OnWillSaveAssets");
		for (var path: String in paths)
			Debug.Log(path);
		return paths;
	}
}
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; } }

Did you find this page useful? Please give it a rating: