On this pageDataFile.isDirtypublic bool isDirty { get; }CopyDescription#Returns true if there is unsaved dataUsage#Exampleusing NullSave.GDTKusing UnityEngine; public class Example : MonoBehaviour{ public void ExampleMethod(DataFile target) { bool result = target.isDirty; } }Copy