NeverConvex

Results 4 comments of NeverConvex

What version of Blender are you using? I think the patch @JensKrumsieck added uses `percent=` as the keyword for versions lower than 2.93.0: https://github.com/mantissa-/RandoMesh/blob/41dccf91e254966ac47acd5a6b18a730d62b54a7/__init__.py#L195 I compared 2.83 to 2.93 when...

Oh, the problem is probably that you're working on a pre-`2.93.0` version, and in the recent patch, the first argument here is a typo: ``` bpy.ops.mesh.select_random(percentage=pct, seed=randint(1,9999)) ``` https://github.com/mantissa-/RandoMesh/blob/41dccf91e254966ac47acd5a6b18a730d62b54a7/__init__.py#L196 `percentage`...

Opened a small PR to patch it: https://github.com/mantissa-/RandoMesh/pull/7

@mantissa- seemed to be quite busy based on the issue that preceded this one, but hopefully he's able to review the tiny new PR shortly. Just tagging him here to...