Created
April 21, 2020 12:40
-
-
Save openroomxyz/c16e48d6236663056c03d010db068af7 to your computer and use it in GitHub Desktop.
Blender Python : How to deselect all object and select only the object with name?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import bpy | |
bpy.ops.object.select_all(action='DESELECT') | |
bpy.data.objects["PEPE"].select_set(state=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment