 | ReferenceTaskTryGetValue Method (TaskParameterDescription, Object) |
Tries to fetch the value of the parameter with the passed description.
Namespace: Slash.AI.BehaviorTrees.ImplementationsAssembly: Slash.AI.BehaviorTrees (in Slash.AI.BehaviorTrees.dll) Version: 1.0.6018.40184
Syntaxpublic bool TryGetValue(
TaskParameterDescription parameterDescription,
out Object objectValue
)
Public Function TryGetValue (
parameterDescription As TaskParameterDescription,
<OutAttribute> ByRef objectValue As Object
) As Boolean
public:
bool TryGetValue(
TaskParameterDescription^ parameterDescription,
[OutAttribute] Object^% objectValue
)
member TryGetValue :
parameterDescription : TaskParameterDescription *
objectValue : Object byref -> bool
Parameters
- parameterDescription
- Type: Slash.AI.BehaviorTrees.EditorTaskParameterDescription
Parameter description. - objectValue
- Type: SystemObject
Contains the value of the parameter with the passed description if found; otherwise the default value.
Return Value
Type:
Boolean True if the value for the parameter with the passed description was found; otherwise, false.
See Also