Browse Source

Fix age name stomping via the zip export dialog.

pull/162/head
Adam Johnson 5 years ago
parent
commit
31bb69f045
Signed by: Hoikas
GPG Key ID: 0B6515D6FF6F271E
  1. 5
      korman/exporter/convert.py

5
korman/exporter/convert.py

@ -376,7 +376,10 @@ class Exporter:
@property
def age_name(self):
return Path(self._op.filepath).stem
if self._op.dat_only:
return Path(self._op.filepath).stem
else:
return bpy.context.scene.world.plasma_age.age_name
@property
def dat_only(self):

Loading…
Cancel
Save