Advertisement
Guest User

Untitled

a guest
Apr 4th, 2020
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.25 KB | None | 0 0
  1. #Script for selecting vertices with no weights:
  2. for i in C.object.data.vertices:
  3.   if not i.groups:
  4.     i.select = True
  5.  
  6. #Script for selecting vertices with more than 5 weights:
  7. for i in C.object.data.vertices:
  8.   if len(i.groups)>5:
  9.     i.select = True
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement