Optional Elements
Modifier and Type |
Optional Element |
Description |
java.lang.String |
ancestor_of |
The indirect parent's command name that this command must have to be valid.
|
java.lang.String |
background_color |
Background color of the command label/icon on bot editor window
|
boolean |
branch_end |
Is this command always the last item in a series of branches? ("Else").
|
java.lang.String |
branch_of |
The branch parent command name that this command must have.
|
boolean |
branchable |
Does this command accept branches ("If" has "Else if" and "Else").
|
boolean |
comment |
Is comment command?
|
java.lang.String |
default_return_package |
The package the default return variable belongs to.
|
java.lang.String |
default_return_variable_name |
The name of the default variable to assign the return value to.
|
java.lang.String |
description |
Short description of what the command does.
|
java.lang.String |
group_label |
The display label for the containing group (multiple commands with the same
groupLabel will be grouped together).
|
boolean |
hidden |
It will hide the command
|
java.lang.String |
icon |
Icon for this command.
|
long |
id |
Currently unused.
|
boolean |
nestable |
Does this command allow nested child commands.
|
java.lang.String |
node_label |
The label for the command instance inside of a taskbot node.
|
java.lang.String |
property_description |
The help text to accompany the property.
|
java.lang.String |
property_input_attribute |
The property input attribute name used by the compiler to assign value
|
java.lang.String |
property_name |
The name of the property to be used in an expression.
|
DataType |
property_return_sub_type |
The return subtype of this property (for lists, dictionaries, etc).
|
DataType |
property_return_type |
The return type of this property.
|
DataType |
property_type |
The type of object we are extending.
|
boolean |
recordable |
Can this command be used to populate a recording.
|
java.lang.String |
return_description |
The description for the return input.
|
java.lang.String |
return_label |
The label for the return input.
|
boolean |
return_required |
Is the return variable required.
|
DataType |
return_sub_type |
The return subtype of this command.
|
DataType |
return_type |
The return type of this command.
|
java.lang.String |
text_color |
Text color of the command label on bot editor window
|
DataType |
variable_return_type |
The variable type of this command.
|