Browse Source

Update op_export.py

Add enabling check boxes for texture-map-on-export and hobble-beziers-on-export features.
pull/224/head
Mark Eggert 5 years ago committed by GitHub
parent
commit
2ce7e40a92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      korman/operators/op_export.py

8
korman/operators/op_export.py

@ -63,6 +63,14 @@ class PlasmaAgeExportOperator(ExportOperator, bpy.types.Operator):
"description": "Forces the Blender System Console open during the export",
"default": True}),
"transform_offsets": (BoolProperty, {"name": "Transform Texture Offsets",
"description": "Transforms Blender Texture Offsets to Plasma during the export",
"default": False}),
"bad_beziers": (BoolProperty, {"name": "Hobble Bezier Animation",
"description": "Forces Worst-Case Beziers during the export",
"default": False}),
"texcache_path": (StringProperty, {"name": "Texture Cache Path",
"description": "Texture Cache Filepath"}),

Loading…
Cancel
Save