GDTKSpawnInfo.GetGameObject
Declaration#
public GameObject GetGameObject()Description#
Gets GameObject from data, loading if needed
Usage#
Example
using NullSave.GDTK;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(GDTKSpawnInfo target) { GameObject go = target.GetGameObject(); }
}