Table of Contents

Class EntityProcessorCollection

Namespace
Stride.Engine
Assembly
Stride.Engine.dll

Ordered collection of EntityProcessor based on the Order property.

public class EntityProcessorCollection : OrderedCollection<EntityProcessor>, ICollection<EntityProcessor>, IEnumerable<EntityProcessor>, IEnumerable
Inheritance
EntityProcessorCollection
Implements
Inherited Members
Extension Methods

Constructors

EntityProcessorCollection()

Initializes a new instance of the EntityProcessorCollection class.

public EntityProcessorCollection()
See Also

EntityProcessorCollection(int)

Initializes a new instance of the EntityProcessorCollection class.

public EntityProcessorCollection(int capacity)

Parameters

capacity int

The capacity.

See Also

Methods

Get<T>()

Gets the first processor of the type T.

public T Get<T>() where T : EntityProcessor

Returns

T

The first processor of type T or null if not found.

Type Parameters

T

Type of the processor

See Also

See Also