Interface IDelayedSpatialPicker<T>
Namespace: Unity.Reflect.Collections
Syntax
public interface IDelayedSpatialPicker<T>
Type Parameters
| Name | Description |
|---|---|
| T |
Methods
DelayedPick(Int32, Action<List<T>>)
Declaration
void DelayedPick(int distance, Action<List<T>> callback)
Parameters
| Type | Name | Description |
|---|---|---|
| Int32 | distance | |
| Action<List<T>> | callback |
DelayedPick(Ray, Action<List<T>>)
Declaration
void DelayedPick(Ray ray, Action<List<T>> callback)
Parameters
| Type | Name | Description |
|---|---|---|
| Ray | ray | |
| Action<List<T>> | callback |
DelayedPick(Vector3[], Int32, Action<List<T>>)
Declaration
void DelayedPick(Vector3[] samplePoints, int samplePointCount, Action<List<T>> callback)
Parameters
| Type | Name | Description |
|---|---|---|
| Vector3[] | samplePoints | |
| Int32 | samplePointCount | |
| Action<List<T>> | callback |