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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-01-19 01:27:28 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-01-19 01:27:28 +0400
commit37db39243afb60a4e997475c9ea479e3d48d536f (patch)
treea4d105ef96cee7d087ab8ae5e99aae4144ba99ed /io_scene_x3d/export_x3d.py
parentc5ed8141d012a6329c6bd1dce60dd25bf27a0d5e (diff)
revert some changes from r2917.
- remove additional axis args. - use of _TRANSFORM was incorrect.
Diffstat (limited to 'io_scene_x3d/export_x3d.py')
-rw-r--r--io_scene_x3d/export_x3d.py18
1 files changed, 10 insertions, 8 deletions
diff --git a/io_scene_x3d/export_x3d.py b/io_scene_x3d/export_x3d.py
index 55b7a52d..aafe300b 100644
--- a/io_scene_x3d/export_x3d.py
+++ b/io_scene_x3d/export_x3d.py
@@ -187,7 +187,7 @@ def h3d_shader_glsl_frag_patch(filepath, scene, global_vars, frag_uniform_var_ma
lines.append("\n")
elif l.lstrip().startswith("lamp_visibility_other("):
w = l.split(', ')
- last_transform = w[1] + _TRANSFORM # XXX - HACK!!!
+ last_transform = w[1] + "_transform" # XXX - HACK!!!
w[1] = '(view_matrix * %s_transform * vec4(%s.x, %s.y, %s.z, 1.0)).xyz' % (w[1], w[1], w[1], w[1])
l = ", ".join(w)
elif l.lstrip().startswith("lamp_visibility_sun_hemi("):
@@ -282,13 +282,15 @@ def export(file,
# If names are not decorated, it may be possible for two objects to
# have the same name, so there has to be a unified dictionary to
# prevent uuid collisions.
- uuid_cache_object = {} # object
- uuid_cache_lamp = uuid_cache_object # 'LA_' + object.name
- uuid_cache_view = uuid_cache_object # object, different namespace
- uuid_cache_mesh = uuid_cache_object # mesh
- uuid_cache_material = uuid_cache_object # material
- uuid_cache_image = uuid_cache_object # image
- uuid_cache_world = uuid_cache_object # world
+ uuid_cache = {}
+ uuid_cache_object = uuid_cache # object
+ uuid_cache_lamp = uuid_cache # 'LA_' + object.name
+ uuid_cache_view = uuid_cache # object, different namespace
+ uuid_cache_mesh = uuid_cache # mesh
+ uuid_cache_material = uuid_cache # material
+ uuid_cache_image = uuid_cache # image
+ uuid_cache_world = uuid_cache # world
+ del uuid_cache
CA_ = ''
OB_ = ''
ME_ = ''