Basics
Random - CreateRandom_CreateFromSeed
Creates a new Random object using the provided seed.
IN
| Name | Type | Description |
|---|---|---|
| InSeed | Int | Input seed. |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| OutRandom | Random | The Random instance. |
| Error | ErrorState | Gets the execution error message |
Random - Reset
Reinitialize the generator using a random seed.
IN
| Name | Type | Description |
|---|---|---|
| InRandom | Random | The input Random |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| OutRandom | Random | The modified Core.Data.Types.Random |
| Error | ErrorState | Gets the execution error message |
Random - ResetWithSeed
Reinitialize the generator using the provided seed.
IN
| Name | Type | Description |
|---|---|---|
| InRandom | Random | The input Random |
| InSeed | Int | Input seed. |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| OutRandom | Random | The modified Core.Data.Types.Random |
| Error | ErrorState | Gets the execution error message |