Namespace Unity.Entities
Classes
AlwaysSynchronizeSystemAttribute
AlwaysSynchronizeSystem can be applied to a JobComponentSystem to force it to synchronize on all of its dependencies before every update. This attribute should only be applied when a synchronization point is necessary every frame.
AlwaysUpdateSystemAttribute
BeginInitializationEntityCommandBufferSystem
BeginPresentationEntityCommandBufferSystem
BeginSimulationEntityCommandBufferSystem
BlobAssetSerializeExtensions
Extensions for supporting serialization and deserialization of blob assets.
BlobAssetStore
Purpose of this class is to provide a consistent cache of BlobAsset object in order to avoid rebuilding them when it is not necessary
BlobStringExtensions
Extensions that allow the creation of BlobString instances by a BlobBuilder.
ChangedFilterAttribute
ChangeVersionUtility
ChunkSerializableAttribute
States that a component type is serializable.
ComponentDataProxy<T>
ComponentDataProxyBase
ComponentSystem
An abstract class to implement in order to create a system.
ComponentSystemBase
A system provides behavior in an ECS architecture.
ComponentSystemBaseManagedComponentExtensions
ComponentSystemGroup
ComponentSystemSorter
ComponentSystemSorter.CircularSystemDependencyException
ConverterVersionAttribute
By declaring a version number a ComponentSystem can ensure that any cached data by the asset pipeline was prepared using the active code. If the version number of any conversion system or optimization system changes or a new conversion system is added, then the scene will be re-converted.
ConvertToEntity
ConvertToEntitySystem
DefaultTinyWorldInitialization
DefaultWorldInitialization
DisableAutoCreationAttribute
Prevents a system from being automatically created and run.
DisableAutoTypeRegistration
DisallowRefReturnCrossingThisAttribute
What is this : Attribute signaling that ref returned values, of a type that has this attribute, cannot intersect with calls to methods that also have this attribute. Motivation(s): ref returns of values that are backed by native memory (unsafe), like IComponentData in ecs chunks, can have the referenced memory invalidated by certain methods. A way is needed to detect these situations a compilation time to prevent accessing invalidated references. Notes:
- This attribute is used/feeds a Static Analyzer at compilation time.
- Attribute transfers with aggragations: struct A has this attribute, struct B has a field of type A; both A and B are concidered to have the attribute.
DynamicBufferProxy<T>
EndInitializationEntityCommandBufferSystem
EndSimulationEntityCommandBufferSystem
EntityCommandBufferManagedComponentExtensions
EntityCommandBufferSystem
A system that provides EntityCommandBuffer objects for other systems.
EntityContainerPropertyBag
EntityManager
The EntityManager manages entities and components in a World.
EntityManager.EntityManagerDebug
Provides information and utility functions for debugging.
EntityManagerExtensions
EntityManagerManagedComponentExtensions
EntityPatcher
EntityQuery
A EntityQuery provides a queryDesc-based view of your component data.
EntityQueryDesc
Defines a queryDesc to find archetypes with specific components.
EntityQueryDescValidationException
EntityQueryExtensionsForComponentArray
EntityQueryExtensionsForTransformAccessArray
EntityRemapUtility
ExcludeComponentAttribute
FastEquality
ForEachLambdaJobDescription_SetSharedComponent
GameObjectConversionSettings
GameObjectConversionUtility
GameObjectEntity
GenerateAuthoringComponentAttribute
InitializationSystemGroup
InternalBufferCapacityAttribute
Specifies the maximum number of elements to store inside a chunk.
InternalCompilerInterface
JobChunkExtensions
Extensions for scheduling and running IJobChunk Jobs.
JobComponentSystem
An abstract class to implement in order to create a system that uses ECS-specific Jobs.
JobForEachExtensions
LambdaJobChunkDescription_SetSharedComponent
LambdaJobChunkDescriptionConstructionMethods
LambdaJobDescriptionConstructionMethods
LambdaJobQueryConstructionMethods
LambdaSimpleJobDescriptionConstructionMethods
LateSimulationSystemGroup
LayerFieldAttribute
Attribute used to make an int field display as a layer selector drop-down.
MaximumChunkCapacityAttribute
Specifies the maximum number of components of a type that can be stored in the same chunk.
MayOnlyLiveInBlobStorageAttribute
Use this attribute if you have structs that use offset pointers that are only valid when they live inside the blob storage. It will turn ensure a compiler error is generated for every time a reference to the struct is copied, or a field is read from a reference to the struct this attribute is applied on.
PresentationSystemGroup
ReferencedUnityObjects
RegisterGenericComponentTypeAttribute
RequireComponentTagAttribute
RequiresEntityConversionAttribute
RestrictAuthoringInputToAttribute
SceneViewWorldPositionAttribute
ScriptBehaviourUpdateOrder
SharedComponentDataProxy<T>
SimulationSystemGroup
StaticOptimizeEntity
TypeHash
TypeManager
TypeManager.ForcedMemoryOrderingAttribute
TypeManager.TypeVersionAttribute
UpdateAfterAttribute
UpdateBeforeAttribute
UpdateInGroupAttribute
UpdateWorldTimeSystem
World
WorldSystemFilterAttribute
For internal use only.
WriteGroupAttribute
[WriteGroup] Can exclude components which are unknown at the time of creating the query that have been declared to write to the same component.
This allows for extending systems of components safely without editing the previously existing systems.
The goal is to have a way for systems that expect to transform data from one set of components (inputs) to another (output[s]) be able to declare that explicit transform, and they exclusively know about one set of inputs. If there are other inputs that want to write to the same output, the query shouldn't match because it's a nonsensical/unhandled setup. It's both a way to guard against nonsensical components (having two systems write to the same output value), and a way to "turn off" existing systems/queries by putting a component with the same write lock on an entity, letting another system handle it.
Structs
ArchetypeChunk
A block of unmanaged memory containing the components for entities sharing the same Unity.Entities.Archetype.
ArchetypeChunkArray
ArchetypeChunkBufferType<T>
ArchetypeChunkComponentObjects<T>
ArchetypeChunkComponentType<T>
ArchetypeChunkComponentTypeDynamic
ArchetypeChunkEntityType
ArchetypeChunkIterator
Can be passed into IJobChunk.RunWithoutJobs to iterate over an entity query without running any jobs.
ArchetypeChunkSharedComponentType<T>
Asset
Marks the entity as an asset, which is used for the Export phase of GameObject conversion.
BlobArray<T>
An immutable array of value types stored in a blob asset.
BlobAssetChange
Header for a changed blob asset.
BlobAssetComputationContext<TS, TB>
The BlobAssetComputationContext must be used during Authoring to ECS conversion process to detect which BlobAsset should be computed and to declare their association with a GameObject
BlobAssetReference<T>
A reference to a blob asset stored in unmanaged memory.
BlobAssetReferenceChange
Represents a blob asset reference that was changed within a EntityChangeSet
BlobBuilder
Creates blob assets.
BlobBuilderArray<T>
Used by the BlobBuilder methods to reference the arrays within a blob asset.
BlobPtr<T>
A pointer referencing a struct, array, or field inside a blob asset.
BlobString
An immutable, variable-length string stored in a blob asset.
BufferAccessor<T>
BufferFromEntity<T>
ChunkEntitiesDescription
ChunkHeader
ComponentDataFromEntity<T>
A NativeContainer that provides access to all instances of components of type T, indexed by Entity.
ComponentSystemSorter.TypeHeapElement
ComponentType
ComponentTypeHash
ComponentTypes
ComponentTypes.Masks
Disabled
Disables the entity.
DynamicBuffer<T>
An array-like data structure that can be used as a component.
DynamicBufferContainer<T>
EditorRenderData
Entity
Identifies an entity.
EntityArchetype
An EntityArchetype is a unique combination of component types. The EntityManager uses the archetype to group all entities that have the same sets of components.
EntityChanges
EntityChangeSet
An atomic package of changes to entity and component data.
EntityCommandBuffer
A thread-safe command buffer that can buffer commands that affect entities and components for later playback.
EntityCommandBuffer.Concurrent
Allows concurrent (deterministic) command buffer recording.
EntityContainer
EntityGuid
This component is attached to converted Entities and is guaranteed to be unique within a World. It can be used to map back to the authoring GameObject from which it was converted. Note that an EntityGuid does not have enough information to be persistent across sessions.
EntityInChunk
EntityManagerDiffer
The EntityManagerDiffer is used to efficiently track changes to a given world over time.
EntityQueryBuilder
EntityQueryMask
This mask can be used to quickly identify if an entity would be returned by an EntityQuery. There is a maximum limit of 1024 EntityQueryMasks that can be created. EntityQueryMasks cannot be created from EntityQueries with filters.
EntityReferenceChange
Represents an entity reference that was changed within a EntityChangeSet
This structure references the entity by it's unique EntityGuid.
EntityRemapUtility.BufferEntityPatchInfo
EntityRemapUtility.EntityPatchInfo
EntityRemapUtility.EntityRemapInfo
EntityRemapUtility.ManagedEntityPatchInfo
EntityRemapUtility.SparseEntityRemapInfo
ExcludeComponent<T>
ExclusiveEntityTransaction
FastEquality.Layout
FastEquality.TypeInfo
Hash128
LayoutUtility
Low-level utility functions for AOS->SOA (scatter) and SOA->AOS (gather) conversions.
LayoutUtilityManaged
LinkedEntityGroup
The LinkedEntityGroup buffer makes the entity be the root of a set of connected entities.
LinkedEntityGroupChange
MemsetNativeArray<T>
Assign Value to each element of NativeArray
NativeArraySharedValues<S>
Merge sort index list referencing NativeArray values. Provide list of shared values, indices to shared values, and lists of source i value indices with identical shared value. As an example: Given Source NativeArray: [A,A,A,B,B,C,C,A,B] Provides: Shared value indices: [0,0,0,1,1,2,2,0,1] Shared value counts: [4,3,2] (number of occurrences of a shared value) Shared values: [A,B,C] (not stored in this structure) Sorted indices: [0,1,2,7,3,4,8,5,6] (using these indices to look up values in the source array would give you [A,A,A,A,B,B,B,C,C]) Shared value start offsets (into sorted indices): [0,4,7]
PackedComponent
Represents a packed component within an EntityChangeSet
PackedComponentDataChange
Represents a packed component data change within a EntityChangeSet
PackedManagedComponentDataChange
PackedSharedComponentDataChange
Prefab
Marks the entity as a prefab, which implicitly disables the entity.
RequestSceneLoaded
SceneBoundingVolume
SceneReference
SceneSection
SceneSectionData
SceneTag
A Unity-defined shared component assigned to all entities in the same subscene.
SOAFieldInfo
TypeManager.EntityOffsetInfo
TypeManager.FieldInfo
TypeManager.StaticTypeLookup<T>
TypeManager.TypeInfo
TypeManager.TypeInfoDebug
Interfaces
IBufferElementData
An interface for creating structs that can be stored in a DynamicBuffer<T>.
IComponentData
An interface for implementing general-purpose components.
IConvertGameObjectToEntity
ICustomBootstrap
When entering playmode or the game starts in the Player. A default world is created, sometimes you need multiple worlds to be setup when the game starts. This lets you override the bootstrap of game code world creation.
IDeclareReferencedPrefabs
IDynamicBufferContainer
IJobChunk
IJobChunk is a type of Job that iterates over a set of ArchetypeChunk instances.
IJobForEach<T0>
IJobForEachWithEntity<T0>
IRefCounted
ISharedComponentData
An interface for a component type whose value is shared by all entities in the same chunk.
ISystemStateBufferElementData
An interface for a component type that stores system-specific data in a buffer.
ISystemStateComponentData
An interface for a component type that stores system-specific data.
ISystemStateSharedComponentData
An interface for a component type that stores shared system-specific data.
JobForEachExtensions.IBaseJobForEach
Enums
ComponentType.AccessMode
ComponentTypeFlags
ConvertToEntity.Mode
EntityManagerDifferOptions
Parameters used to configure the the execution of the differ.
EntityQueryOptions
The bit flags to use for the Options field.
GameObjectConversionUtility.ConversionFlags
PrimitiveFieldTypes
SceneLoadFlags
TypeManager.TypeCategory
WorldSystemFilterFlags
For internal use only.