| source |
|---|
Defines the valid matching operations that are available when using findEntities() to find world entities.
export declare enum EntityNameMatchOperation | Member | Value | Description |
|---|---|---|
| Contains | 3 |
Entity name must contain the provided string |
| EndsWith | 2 |
Entity name must end with the provided string |
| Exact | 0 |
Entity name must exactly match the provided string |
| Regex | 4 |
Entity name must match the provided regular expression |
| StartsWith | 1 |
Entity name must start with the provided string |