Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
blender-addons
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
blender
blender-addons
Commits
79c899da
Commit
79c899da
authored
14 years ago
by
Campbell Barton
Browse files
Options
Downloads
Patches
Plain Diff
add 3ds export option, use_selection, also fix for exporting curves with no geometry data.
parent
b99cd4de
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
io_scene_3ds/__init__.py
+2
-0
2 additions, 0 deletions
io_scene_3ds/__init__.py
io_scene_3ds/export_3ds.py
+19
-8
19 additions, 8 deletions
io_scene_3ds/export_3ds.py
with
21 additions
and
8 deletions
io_scene_3ds/__init__.py
+
2
−
0
View file @
79c899da
...
...
@@ -69,6 +69,8 @@ class Export3DS(bpy.types.Operator, ExportHelper):
filename_ext
=
"
.3ds
"
filter_glob
=
StringProperty
(
default
=
"
*.3ds
"
,
options
=
{
'
HIDDEN
'
})
use_selection
=
BoolProperty
(
name
=
"
Selection Only
"
,
description
=
"
Export selected objects only
"
,
default
=
False
)
def
execute
(
self
,
context
):
from
.
import
export_3ds
return
export_3ds
.
save
(
self
,
context
,
**
self
.
as_keywords
(
ignore
=
(
"
check_existing
"
,
"
filter_glob
"
)))
...
...
This diff is collapsed.
Click to expand it.
io_scene_3ds/export_3ds.py
+
19
−
8
View file @
79c899da
...
...
@@ -859,13 +859,16 @@ def make_kf_obj_node(obj, name_to_id):
"""
def
save
(
operator
,
context
,
filepath
=
""
):
def
save
(
operator
,
context
,
filepath
=
""
,
use_selection
=
True
,
):
import
bpy
import
time
from
io_utils
import
create_derived_objects
,
free_derived_objects
'''
Save the Blender scene to a 3ds file.
'''
# Time the export
time1
=
time
.
clock
()
# Blender.Window.WaitCursor(1)
...
...
@@ -900,9 +903,14 @@ def save(operator, context, filepath=""):
materialDict
=
{}
mesh_objects
=
[]
scene
=
context
.
scene
for
ob
in
[
ob
for
ob
in
scene
.
objects
if
ob
.
is_visible
(
scene
)]:
# for ob in sce.objects.context:
if
use_selection
:
objects
=
(
ob
for
ob
in
scene
.
objects
if
ob
.
is_visible
(
scene
)
and
ob
.
select
)
else
:
objects
=
(
ob
for
ob
in
scene
.
objects
if
ob
.
is_visible
(
scene
))
for
ob
in
objects
:
# get derived objects
free
,
derived
=
create_derived_objects
(
scene
,
ob
)
...
...
@@ -915,8 +923,11 @@ def save(operator, context, filepath=""):
if
ob
.
type
not
in
(
'
MESH
'
,
'
CURVE
'
,
'
SURFACE
'
,
'
FONT
'
,
'
META
'
):
continue
data
=
ob_derived
.
create_mesh
(
scene
,
True
,
'
PREVIEW
'
)
# data = getMeshFromObject(ob_derived, None, True, False, sce)
try
:
data
=
ob_derived
.
create_mesh
(
scene
,
True
,
'
PREVIEW
'
)
except
:
data
=
None
if
data
:
data
.
transform
(
mat
)
# data.transform(mat, recalc_normals=False)
...
...
@@ -1040,5 +1051,5 @@ def save(operator, context, filepath=""):
# Debugging only: dump the chunk hierarchy:
#primary.dump()
return
{
'
FINISHED
'
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment