Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Leung <aligorith@gmail.com>2010-02-10 12:18:49 +0300
committerJoshua Leung <aligorith@gmail.com>2010-02-10 12:18:49 +0300
commitaeda6078c4b108bfc36215d461485ee9f4d54225 (patch)
tree3ef50a82b5578f7c7a34790643500b56f06fa4f7 /release
parenteabb8e2942750dc0563b36a3dbe878eb784a879c (diff)
3ds importer - fixed some warnings about various properties required for the fileselect operator stuff not being present
Diffstat (limited to 'release')
-rw-r--r--release/scripts/io/import_scene_3ds.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/release/scripts/io/import_scene_3ds.py b/release/scripts/io/import_scene_3ds.py
index 7ba5010e1c8..ac18485cd01 100644
--- a/release/scripts/io/import_scene_3ds.py
+++ b/release/scripts/io/import_scene_3ds.py
@@ -1015,7 +1015,9 @@ class IMPORT_OT_autodesk_3ds(bpy.types.Operator):
# to the class instance from the operator settings before calling.
path = StringProperty(name="File Path", description="File path used for importing the 3DS file", maxlen= 1024, default= "")
-
+ filename = StringProperty(name="File Name", description="Name of the file.")
+ directory = StringProperty(name="Directory", description="Directory of the file.")
+
# size_constraint = FloatProperty(name="Size Constraint", description="Scale the model by 10 until it reacehs the size constraint. Zero Disables.", min=0.0, max=1000.0, soft_min=0.0, soft_max=1000.0, default=10.0),
# search_images = BoolProperty(name="Image Search", description="Search subdirectories for any assosiated images (Warning, may be slow)", default=True),
# apply_matrix = BoolProperty(name="Transform Fix", description="Workaround for object transformations importing incorrectly", default=False),