|
@@ -374,10 +374,6 @@ def restore_export_settings(properties, settings):
|
|
|
constants.INDENT,
|
|
|
constants.EXPORT_OPTIONS[constants.INDENT])
|
|
|
|
|
|
- properties.option_compact_separators = settings.get(
|
|
|
- constants.COMPACT_SEPARATORS,
|
|
|
- constants.EXPORT_OPTIONS[constants.COMPACT_SEPARATORS])
|
|
|
-
|
|
|
properties.option_copy_textures = settings.get(
|
|
|
constants.COPY_TEXTURES,
|
|
|
constants.EXPORT_OPTIONS[constants.COPY_TEXTURES])
|
|
@@ -471,7 +467,6 @@ def set_settings(properties):
|
|
|
constants.LOGGING: properties.option_logging,
|
|
|
constants.COMPRESSION: properties.option_compression,
|
|
|
constants.INDENT: properties.option_indent,
|
|
|
- constants.COMPACT_SEPARATORS: properties.option_compact_separators,
|
|
|
constants.COPY_TEXTURES: properties.option_copy_textures,
|
|
|
constants.TEXTURE_FOLDER: properties.option_texture_folder,
|
|
|
|
|
@@ -735,11 +730,6 @@ class ExportThree(bpy.types.Operator, ExportHelper):
|
|
|
description="Disable this to reduce the file size",
|
|
|
default=constants.EXPORT_OPTIONS[constants.INDENT])
|
|
|
|
|
|
- option_compact_separators = BoolProperty(
|
|
|
- name="Compact JSON separators",
|
|
|
- description="Enable this to reduce the file size",
|
|
|
- default=constants.EXPORT_OPTIONS[constants.COMPACT_SEPARATORS])
|
|
|
-
|
|
|
option_compression = EnumProperty(
|
|
|
name="",
|
|
|
description="Compression options",
|
|
@@ -953,9 +943,6 @@ class ExportThree(bpy.types.Operator, ExportHelper):
|
|
|
|
|
|
row = layout.row()
|
|
|
row.prop(self.properties, 'option_indent')
|
|
|
-
|
|
|
- row = layout.row()
|
|
|
- row.prop(self.properties, 'option_compact_separators')
|
|
|
## }
|
|
|
|
|
|
## Operators {
|