Class EntitiesJournaling.Records
Non-blocking utility methods to retrieve records.
Namespace: Unity.Entities
Syntax
public static class Records
Properties
| Name | Description |
|---|---|
| All | Get all records currently in buffer. |
Methods
| Name | Description |
|---|---|
| Range(Int32, Int32) | Get a number records starting from index. |
| WithComponentType(String) | Get all records matching a component type name. |
| WithComponentType(ComponentType) | Get all records matching a component type. |
| WithComponentType(TypeIndex) | Get all records matching a component type index. |
| WithEntity(Int32) | Get all records matching an entity index. |
| WithEntity(Int32, Int32) | Get all records matching an entity index and version. |
| WithEntity(String) | Get all records matching an existing entity name. |
| WithEntity(Entity) | Get all records matching an entity. |
| WithExecutingSystem(String) | Get all records matching an executing system type name. |
| WithExecutingSystem(SystemHandle) | Get all records matching an executing system handle untyped. |
| WithFrameIndex(Int32) | Get all records matching a frame index. |
| WithOriginSystem(String) | Get all records matching an origin system type name. |
| WithOriginSystem(SystemHandle) | Get all records matching an origin system handle untyped. |
| WithRecordIndex(UInt64) | Get the record matching a record index. |
| WithRecordType(EntitiesJournaling.RecordType) | Get all records matching a record type. |
| WithSystem(String) | Get all records matching a system type name. |
| WithSystem(SystemHandle) | Get all records matching a system handle untyped. |
| WithWorld(String) | Get all records matching a world name. |
| WithWorld(UInt64) | Get all records matching a world sequence number. |
| WithWorld(World) | Get all records matching an existing world. |