Notifications
Clear all
[Closed] Deselect specific components?
Nov 25, 2013 7:15 pm
Is there a simple way to deselect specific components (verts/edges/face) by index number? I assume there’s a built in function for this instead of subtracting them from a selection array and using it to reselect everything.
4 Replies
1 Reply
deleteitem <mesh_or_poly>.selectedverts index
or
deselect <mesh_or_poly>.verts[index]
wait a sec… i will make the weirdest one …
1 Reply
but i do it always the way that probably you don’t want:
<node>.selectedverts = <node>.selectedverts as bitarray - #{index}
Nov 25, 2013 7:15 pm
Thanks for the very thorough response! That’s exactly what I needed to know.