acoolrocket

Blender - Searching based on last two characters only

Aug 12th, 2025
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. import bpy
  2. for obj in bpy.data.objects:
  3. if obj.name.endswith("_B"):
  4. obj.select_set(True)
Advertisement
Add Comment
Please, Sign In to add comment