Table of Contents

Struct EntityQueryEnumerator<T>

Namespace
Frent.Systems
Assembly
Frent.dll

Enumerates all component references of the specified types and the Entity instance for each Entity in a query.

public ref struct EntityQueryEnumerator<T>

Type Parameters

T
Inherited Members

Properties

Current

The current tuple of component references.

public EntityRefTuple<T> Current { get; }

Property Value

EntityRefTuple<T>

Methods

Dispose()

Indicates to the world that this enumeration is finished; the world might allow structual changes after this.

public void Dispose()

GetEnumerator()

Gets the enumerator over a query.

public EntityQueryEnumerator<T> GetEnumerator()

Returns

EntityQueryEnumerator<T>

MoveNext()

Moves to the next component tuple in this enumeration.

public bool MoveNext()

Returns

bool

true when its possible to enumerate further, otherwise false.