Skip to main content

StatsDatabase.GetBackground

Declaration#

public GDTKBackground GetBackground(string id)

Parameters#

NameDescription
idId of object to retrieve

Description#

Get a Background by Id

Usage#

Example
using NullSave.GDTK;using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(StatsDatabase target, string id)    {        GDTKBackground result = target.GetBackground(id);    }
}