ItemInteractorUI.UseAction
Declaration#
public virtual void UseAction(InteractorUIAction action)Parameters#
| Name | Description |
|---|---|
| action | Action to use |
Description#
Perform interaction using an Interactor UI Action
Usage#
using NullSave.GDTK;using NullSave.GDTK.Inventory;using UnityEngine;
public class CodeSample : MonoBehaviour{
public void ExampleMethod(ItemInteractorUI target, InteractorUIAction other) { target.UseAction(other); }
}