VisionSensor.targets
public IReadOnlyList<GameObject> targets { get; }Description#
Gets a list of currently visible targets
Usage#
Example
using NullSave.GDTKusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(VisionSensor target) { System.Collections.Generic.IReadOnlyList<GameObject> result = target.targets; } }