InteractorMouse.interactorComponents
public List<InteractorComponent> interactorComponents { get; }Description#
Get list of interactor components associated with this object
Usage#
Example
using NullSave.GDTKusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(InteractorMouse target) { System.Collections.Generic.List<InteractorComponent> result = target.interactorComponents; } }