You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: nodes/random-number@v1.yml
+15-5Lines changed: 15 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -12,27 +12,37 @@ style:
12
12
background: "#7c6652"
13
13
short_desc: Generates a random number based on user-defined range and seed. Can be used as well for boolean values by setting the minimum and maximum values to 0 and 1 respectively.
14
14
outputs:
15
+
exec-success:
16
+
name: ''
17
+
exec: true
18
+
index: 0
19
+
desc: Triggered when the random number is generated.
15
20
number:
16
21
type: number
17
22
name: Random Number
18
23
desc: The generated random number
19
-
index: 0
24
+
index: 1
20
25
inputs:
26
+
exec:
27
+
exec: true
28
+
index: 0
29
+
name: ''
30
+
desc: Triggers the generation of the random number.
21
31
min:
22
32
type: number
23
33
name: Minimum Value
24
34
desc: The minimum value of the random number
25
-
index: 0
35
+
index: 1
26
36
initial: 0.0
27
37
max:
28
38
type: number
29
39
name: Maximum Value
30
40
desc: The maximum value of the random number
31
-
index: 1
41
+
index: 2
32
42
initial: 1.0
33
43
seed:
34
44
type: number
35
45
name: Seed
36
46
desc: The seed for the random number generator (-1 for true randomness)
Copy file name to clipboardExpand all lines: nodes/stream-cache@v1.yml
+9-2Lines changed: 9 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -14,13 +14,20 @@ style:
14
14
short_desc: Cache a stream and output it as a string.
15
15
long_desc: Like the [File Read](./../file-read/v1.md) node, some streams are readable only by a single consumer. This node caches the stream and outputs it as a string, which can be used by multiple consumers.
0 commit comments