Skip to main content

InWorldContainer.RefreshActor

Declaration#

public void RefreshActor()

Description#

Attempt to find actor for component

Usage#

Example
using NullSave.GDTK.Inventory;using UnityEngine;
public class CodeSample : MonoBehaviour{
    public void ExampleMethod(InWorldContainer target)    {        // Update Actor reference        target.RefreshActor();    }
}