ComponentPredicate_T_(T).md

March 19, 2022 ยท View on GitHub

DefaultEcs

DefaultEcs

ComponentPredicate(T) Delegate

Represents the method that defines a set of criteria and determines whether the specified component meets those criteria.

public delegate bool ComponentPredicate<T>(in T value);

Type parameters

T

The type of the component to compare.

Parameters

value T

The component value.

Returns

System.Boolean
true if the component meets the criteria; otherwise, false.

Contents

  1. 0.1DefaultEcs
  2. 1ComponentPredicate(T) Delegate