RPGLockUnlockAction.parent
public InteractableRPGObject parent { get; }Description#
Gets the parent Interactable RPG Object
Usage#
Example
using NullSave.GDTKusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(RPGLockUnlockAction target) { InteractableRPGObject result = target.parent; } }