StatsDatabaseV2.GetFirstSubRace
Declaration#
public GDTKRace GetFirstSubRace(GDTKRace race)Parameters#
| Name | Description |
|---|---|
| race | Race to check |
Description#
Get the first child of a race (if any)
Usage#
Example
using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{ public void ExampleMethod(GDTKRace target) { GDTKRace result = StatsDatabaseV2.instance.GetFirstSubRace(target); }}