发表时间

Simple demonstration video of how to use
https://youtu.be/WmsNEtCIm8s
or
https://v.youku.com/v_show/id_XNTg0NjI2NDk2OA==.html

List of available parameters
?//
Meaning: Annotation, all rule nodes have this parameter.
Valid format: STRING
Default value: NULL

?name:
Meaning: Node name, all rule nodes have this parameter.
Valid format: STRING
Default value: NULL

?event:
Meaning: Trigger event type for mouse or touch screen or external sensor.
Valid format: One of the available values.
Available values:
—————————
down: The user presses the button.
up: The user releases the button.
both: 「down」and「up」.
—————————
Default value: both

?count:
Meaning: The number of button events specified, when this number is reached, exit the current node. A value of zero means that the current node will not exit until it is forced to jump out by another node.
Valid format: One of the available values.
Available values:
—————————
NUMBER: An integer between zero and one hundred.
—————————
Default value: 0

?storename:
Meaning: This name is used as the variable name of the custom button array, which is used to store all specified button objects.
Valid format: STRING
Default value: NULL

?nobreak:
Meaning: Prohibit jumping to the specified node type during the current node duration.
Valid format: One of the available values.
Available values:
—————————
button: The specified node type is「Button」.
limit: The specified node type is「Limit」.
both: 「Button」and「Limit」.
—————————
Default value: NULL

Continuous updates

作者
分类 Rules

发表时间

Simple demonstration video of how to use
https://youtu.be/Jw2HRHGHKLw
or
https://v.youku.com/v_show/id_XNTg0NjI2NjQzMg==.html

List of available parameters
?//
Meaning: Annotation, all rule nodes have this parameter.
Valid format: STRING
Default value: NULL

?name:
Meaning: Node name, all rule nodes have this parameter.
Valid format: STRING
Default value: NULL

?condition:
Meaning: Once the condition is met(the result is non-zero), it will jump to the current node after the specified time ends. Note that not all variable types are listened for value changes.
Valid format: Full arithmetic expression that supports variable values.
Available variable values:
—————————
#var.[STRING]: Custom numeric variable. The default value is 0.
#var.score: Predefined numeric variable. Modifying the value of this variable will refresh the software window at the same time to display the score in real time.
—————————
Default value: 1. Since there is no listening variable, it is only triggered once when the training is just started.

?timeout:
Meaning: The length of time from meeting the condition to jumping to the current node.
Valid format: One of the available values.
Available values:
—————————
NUMBER: The format is「hours:minutes:seconds」, it also supports one digit after the decimal point, for example,「5:2」 or「5:2.5」, etc.
—————————
Default value: 0

Continuous updates

作者
分类 Rules