Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


OnWillDeleteAsset(string, RemoveAssetOptions)

This is called by Unity when it is about to delete an asset from disk.
Read time 1 minuteLast updated 12 days ago

Definition

OnWillDeleteAsset()

public void OnWillDeleteAsset(string arg0, RemoveAssetOptions removeAssetOptions)

Parameters

arg0


removeAssetOptions

Remarks

If this is implemented, it allows you to delete the asset yourself. Deletion of a file can be prevented by returning AssetDeleteResult.FailedDelete You should not call any Unity AssetDatabase api from within this callback, preferably keep to file operations or VCS apis.