Interface IXRFilterList<T>
A list of items.
Namespace: UnityEngine.XR.Interaction.Toolkit
Assembly: solution.dll
Syntax
public interface IXRFilterList<T>
Type Parameters
| Name | Description |
|---|---|
| T | The type of the items in this list. |
Properties
| Name | Description |
|---|---|
| count | The number of items in this list. |
Methods
| Name | Description |
|---|---|
| Add(T) | Adds the given item to the end of this list. |
| Clear() | Removes all items from this list. |
| GetAll(List<T>) | Returns all items into List |
| GetAt(int) | Returns the item at |
| MoveTo(T, int) | Moves the given item in this list. If the given item is not in this list, this can be used to insert the item at the specified index. |
| Remove(T) | Removes the given item from this list. |