Multi editing for param Selectable ?
10 October 2016 18:09
11 October 2016 15:50
Hi,
You can use a three-lines Python script for this task.
1) Open "Text Editor" in Blender.
2) Create a new file and put the following text inside:
3) Select all required objects and press the "Run Script" button.
This approach can be used for any property you need.
You can use a three-lines Python script for this task.
1) Open "Text Editor" in Blender.
2) Create a new file and put the following text inside:
import bpy
for o in bpy.context.selected_objects:
o.b4w_selectable = True
3) Select all required objects and press the "Run Script" button.
This approach can be used for any property you need.
11 October 2016 16:03
11 October 2016 17:05