Pre-Return
If the preceding action has a return value, the following action can receive this return value through the identifier "_PRE-RETURN__", and the types of the return and receiver must be the same.
The return value of action in the script
At the end of the script, the return value
Delay propagation of return value
If an action has a return value and all n actions below have a return value of None, the return value of that action will propagate all the way to the n actions below, meaning that all n actions below can receive the return value. Until an action with a return value appears, the propagation will be terminated.
Last updated