StatsDatabase.GetBackground
Declaration#
public GDTKBackground GetBackground(string id)Parameters#
| Name | Description |
|---|---|
| id | Id 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); }
}