InventoryCollisionDamage.parent
public Actor parent { get; }Description#
Gets the top-level actor (if different) dealing damage
Usage#
Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(InventoryCollisionDamage target) { Actor result = target.parent; } }