TabStopForSelectables.attachedObject
public GameObject attachedObject { get; }Description#
Gets the attached object
Usage#
Example
using NullSave.GDTK;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(TabStopForSelectables target) { GameObject result = target.attachedObject; }
}