Is there a way to mark all edges to be rendered with freestyle, without marking all edges as freestyle lines in each individual object one by one?
Asked
Active
Viewed 1,459 times
1 Answers
6
A simple python script can turn them all on/off
import bpy
for object in bpy.data.objects:
if object.type == 'MESH':
for edge in object.data.edges:
edge.use_freestyle_mark = True
#show the marked edges
object.data.show_freestyle_edge_marks = True
Just paste this into the text editor, and press the hotkey ALTP, or the Run Script button to run it.
Then, to remove the marks, just change True's to False, and run the script and they should all be gone.
TARDIS Maker
- 5,732
- 1
- 30
- 53
sambler
- 55,387
- 3
- 59
- 192
-
script above not working http://i.stack.imgur.com/WfQqr.png – user1415926535897 Apr 07 '16 at 15:19