Click or drag to resize
ReferenceTaskTryGetValueT Method (TaskParameterDescription, T)
Tries to fetch the value of the parameter with the passed description.

Namespace: Slash.AI.BehaviorTrees.Implementations
Assembly: Slash.AI.BehaviorTrees (in Slash.AI.BehaviorTrees.dll) Version: 1.0.6018.40184
Syntax
public bool TryGetValue<T>(
	TaskParameterDescription parameterDescription,
	ref T value
)

Parameters

parameterDescription
Type: Slash.AI.BehaviorTrees.EditorTaskParameterDescription
Parameter description.
value
Type: T
Contains the value of the parameter with the passed description if found.

Type Parameters

T
Expected type of value.

Return Value

Type: Boolean
True if the value for the parameter with the passed description was found; otherwise, false.
See Also