Skip to main content

DataFile.isDirty

public bool isDirty { get; }

Description#

Returns true if there is unsaved data

Usage#

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