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:
authorNathan Letwory <nathan@letworyinteractive.com>2010-10-05 10:10:17 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2010-10-05 10:10:17 +0400
commit4eae531f31382a8632428131a654191eb3947205 (patch)
treefaa73b9a8248d5c62fd5c081ae2078a9f546b49e /source/blender/collada/MeshImporter.cpp
parent3cf2d2fd4ec7bfafc86fe2a288e4143544e6b781 (diff)
TextureCoordinateBinding.getName() -> TextureCoordinateBinding.getSemantic(); as per my own patch on OpenCOLLADA issue tracker.
Diffstat (limited to 'source/blender/collada/MeshImporter.cpp')
-rw-r--r--source/blender/collada/MeshImporter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/collada/MeshImporter.cpp b/source/blender/collada/MeshImporter.cpp
index da8ae70fdb3..34da6c9e897 100644
--- a/source/blender/collada/MeshImporter.cpp
+++ b/source/blender/collada/MeshImporter.cpp
@@ -700,7 +700,7 @@ MTex *MeshImporter::assign_textures_to_uvlayer(COLLADAFW::TextureCoordinateBindi
{
const COLLADAFW::TextureMapId texture_index = ctexture.getTextureMapId();
const size_t setindex = ctexture.getSetIndex();
- std::string uvname = ctexture.getName();
+ std::string uvname = ctexture.getSemantic();
const CustomData *data = &me->fdata;
int layer_index = CustomData_get_layer_index(data, CD_MTFACE);
@@ -904,4 +904,4 @@ bool MeshImporter::write_geometry(const COLLADAFW::Geometry* geom)
mesh_calc_normals(me->mvert, me->totvert, me->mface, me->totface, NULL);
return true;
-}
+} \ No newline at end of file