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
a5453436
Commit
a5453436
authored
13 years ago
by
Campbell Barton
Browse files
Options
Downloads
Patches
Plain Diff
fix for error with file reported over IRC, some files dont define material names referenced.
parent
8ff6c903
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
io_scene_3ds/import_3ds.py
+15
-7
15 additions, 7 deletions
io_scene_3ds/import_3ds.py
with
15 additions
and
7 deletions
io_scene_3ds/import_3ds.py
+
15
−
7
View file @
a5453436
...
...
@@ -248,7 +248,7 @@ def process_next_chunk(file, previous_chunk, importedObjects, IMAGE_SEARCH):
#contextMatrix_tx = None # Blender.mathutils.Matrix(); contextMatrix.identity()
contextMesh_vertls
=
None
# flat array: (verts * 3)
contextMesh_facels
=
None
contextMeshMaterials
=
{}
# matname
:
[face_idxs]
contextMeshMaterials
=
[]
#
(
matname
,
[face_idxs]
)
contextMeshUV
=
None
# flat array (verts * 2)
TEXTURE_DICT
=
{}
...
...
@@ -294,12 +294,18 @@ def process_next_chunk(file, previous_chunk, importedObjects, IMAGE_SEARCH):
else
:
uv_faces
=
None
for
mat_idx
,
(
matName
,
faces
)
in
enumerate
(
myContextMeshMaterials
.
items
()
):
for
mat_idx
,
(
matName
,
faces
)
in
enumerate
(
myContextMeshMaterials
):
if
matName
is
None
:
bmat
=
None
else
:
bmat
=
MATDICT
[
matName
][
1
]
img
=
TEXTURE_DICT
.
get
(
bmat
.
name
)
bmat
=
MATDICT
.
get
(
matName
)
# in rare cases no materials defined.
if
bmat
:
img
=
TEXTURE_DICT
.
get
(
bmat
.
name
)
else
:
print
(
"
warning: material %r not defined!
"
%
matName
)
bmat
=
MATDICT
[
matName
]
=
bpy
.
data
.
materials
.
new
(
matName
)
img
=
None
bmesh
.
materials
.
append
(
bmat
)
# can be None
...
...
@@ -423,7 +429,7 @@ def process_next_chunk(file, previous_chunk, importedObjects, IMAGE_SEARCH):
contextMesh_facels
=
[]
## preparando para receber o proximo objeto
contextMeshMaterials
=
{}
# matname:[face_idxs]
contextMeshMaterials
=
[]
# matname:[face_idxs]
contextMeshUV
=
None
#contextMesh.vertexUV = 1 # Make sticky coords.
# Reset matrix
...
...
@@ -452,7 +458,7 @@ def process_next_chunk(file, previous_chunk, importedObjects, IMAGE_SEARCH):
new_chunk
.
bytes_read
+=
read_str_len
contextMaterial
.
name
=
material_name
.
rstrip
()
# remove trailing whitespace
MATDICT
[
material_name
]
=
(
contextMaterial
.
name
,
contextMaterial
)
MATDICT
[
material_name
]
=
contextMaterial
elif
(
new_chunk
.
ID
==
MAT_AMBIENT
):
#print 'elif (new_chunk.ID == MAT_AMBIENT):'
...
...
@@ -597,7 +603,9 @@ def process_next_chunk(file, previous_chunk, importedObjects, IMAGE_SEARCH):
temp_data
=
file
.
read
(
STRUCT_SIZE_UNSIGNED_SHORT
*
num_faces_using_mat
)
new_chunk
.
bytes_read
+=
STRUCT_SIZE_UNSIGNED_SHORT
*
num_faces_using_mat
contextMeshMaterials
[
material_name
]
=
struct
.
unpack
(
"
<%dH
"
%
(
num_faces_using_mat
),
temp_data
)
temp_data
=
struct
.
unpack
(
"
<%dH
"
%
(
num_faces_using_mat
),
temp_data
)
contextMeshMaterials
.
append
((
material_name
,
temp_data
))
#look up the material in all the materials
...
...
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