Interface ICondition<T>
Used to filter data of a specific type in a query
Namespace: Unity.MARS.Query
Syntax
public interface ICondition<T> : ICondition, IConditionBase, IRequiresTraits<T>, IRequiresTraits
Type Parameters
Name | Description |
---|---|
T | The type of data to filter against |
Methods
RateDataMatch(ref T)
Describe how well a given piece of data matches a condition. 0 means the match is unacceptable, 1 means a perfect match
Declaration
float RateDataMatch(ref T data)
Parameters
Type | Name | Description |
---|---|---|
T | data |
Returns
Type | Description |
---|---|
Single | A number from 0 to 1 indicating how well a piece of data watches this condition |