On this pageDataSection.isDirtypublic bool isDirty { get; }CopyDescription#Gets if changes have been made since last saveUsage#Exampleusing NullSave.GDTKusing UnityEngine; public class Example : MonoBehaviour{ public void ExampleMethod(DataSection target) { bool result = target.isDirty; } }Copy