Skip to main content

DataSection.isDirty

public bool isDirty { get; }

Description#

Gets if changes have been made since last save

Usage#

Example
using NullSave.GDTKusing UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(DataSection target)    {        bool result = target.isDirty;    }   }