Skip to content

Instantly share code, notes, and snippets.

@seacloud9
Created December 11, 2016 01:12
Show Gist options
  • Save seacloud9/0ac35fd5011c8eb7c7feab9f5cde46b1 to your computer and use it in GitHub Desktop.
Save seacloud9/0ac35fd5011c8eb7c7feab9f5cde46b1 to your computer and use it in GitHub Desktop.
import bpy
import bmesh
scene = bpy.context.scene
for ob in scene.objects:
if ob.name.startswith("Curve"):
curve = ob.data
curve.dimensions = '2D'
curve.extrude = 0.04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment