Ategon@programming.devM to Godot@programming.dev · 1 year agoDaily Godot Tip #4: If you have an array of items that you need to pick a random thing from, Godot has a built in pick_random methodprogramming.devvideomessage-square1linkfedilinkarrow-up11arrow-down10
arrow-up11arrow-down1videoDaily Godot Tip #4: If you have an array of items that you need to pick a random thing from, Godot has a built in pick_random methodprogramming.devAtegon@programming.devM to Godot@programming.dev · 1 year agomessage-square1linkfedilink
minus-squarepe1uca@lemmy.pe1uca.devlinkfedilinkarrow-up1·1 year agoGood tip, just also good to remember there’s no way to control the seed of the generator, for example for a seeded world. For that use case you still need to manually run the generator you created with your seed to select an item.
Good tip, just also good to remember there’s no way to control the seed of the generator, for example for a seeded world.
For that use case you still need to manually run the generator you created with your seed to select an item.