From 2ce7e40a9263579d4552b412488124a7e4ec0d1b Mon Sep 17 00:00:00 2001 From: Mark Eggert <72320499+TikiBear@users.noreply.github.com> Date: Sun, 11 Oct 2020 17:33:10 -0700 Subject: [PATCH] Update op_export.py Add enabling check boxes for texture-map-on-export and hobble-beziers-on-export features. --- korman/operators/op_export.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/korman/operators/op_export.py b/korman/operators/op_export.py index 7ccfa8b..d883ec9 100644 --- a/korman/operators/op_export.py +++ b/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"}),