Weird question maybe... I'd like to "chain" two generators together in sequence, via a button that passes a bunch of variables from the first one to the second one. Is this doable?
Weird question maybe... I'd like to "chain" two generators together in sequence, via a button that passes a bunch of variables from the first one to the second one. Is this doable?
6 Comments
eatham@aussie.zone · 2 pts · 1y
You can import the other gen into the main gen.
CalibanStorm@lemmy.world · 2 pts · 1y
True. But both are pretty big, so I'd like to break it into steps.
VioneT@lemmy.world · 2 pts · 1y
Maybe explain the process that you want to achieve and have some test generators? It should simply be something like:
CalibanStorm@lemmy.world · 1 pts · 1y
Okay the process I am trying to achieve:
VioneT@lemmy.world · 2 pts · 1y
You can do something like this on the second generator:
Then on the first generator:
This way, you set the variables of the second generator from the first generator, so that the lists used have the correct odds used.
Here are also some references from previous threads:
CalibanStorm@lemmy.world · 1 pts · 1y
So Awesome! Thank you! I figured there had to be a way!