Hello,
You can actually assign exposed parameters to drive random seeds in your graphs. This can be done by following these steps:
- Create the input parameters you need at the graph level. Please note that only native Integer values will work reliably;
- Create an Empty Function for the Random Seed at the node level;
- Read the value of the parameter you created with a 'Get Integer' node.
Additionally, please keep in mind that operations such as multiplications and divisions should be avoided in Random Seed functions. Therefore, please stick to additions and substractions for this type of function.
Also, by '
native Integer values' I mean that converting a Float value to an Integer with a '
Cast' node should not be done, as the value will remain processed as a Float which will not provide reliable outputs. As such, we recommend working with Integer from the outset.
Best regards,
Luca Giarrizzo