Created
March 24, 2013 00:20
-
-
Save enzyme69/5229868 to your computer and use it in GitHub Desktop.
BLENDER / LIST THE NAMES OF SELECTED OBJECTS
This file contains 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
# NORMAL STYLE | |
import bpy | |
selected_objects = bpy.context.selected_objects | |
obNameList = [] | |
for item in selected_objects: | |
obNameList.append(item.name) #append each name into list | |
print(obNameList) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks!