Multi-Object-Mode: Edit Curve Tools add support for Select Random (CURVE_OT_select_random)
Details
Details
- Reviewers
Dalai Felinto (dfelinto) Campbell Barton (campbellbarton) - Maniphest Tasks
- T54648: Multi-Object-Mode: Edit Curve Tools
Diff Detail
Diff Detail
- Repository
- rB Blender
Event Timeline
Comment Actions
As @Campbell Barton (campbellbarton) commented on MetaBall Tool select random D3319
Object order isn't deterministic, please follow convention here: rB847f028b715f20aea1021220e18da1183f45c131
I thing it is apply in your case too.
| source/blender/editors/curve/editcurve_select.c | ||
|---|---|---|
| 1063 | int seed_iter = seed;
/* This gives a consistent result regardless of object order. */
if (ob_index) {
seed_iter += BLI_ghashutil_strhash_p(obedit->id.name);
} | |