[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [29081] branches/soc-2009-chingachgook/ source/blender/collada/DocumentExporter.cpp: COLLADA branch: change texture coordinate parameter names from X and Y to spec-compliant S and T .

Arystanbek Dyussenov arystan.d at gmail.com
Sun May 30 17:43:12 CEST 2010


Revision: 29081
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=29081
Author:   kazanbas
Date:     2010-05-30 17:43:12 +0200 (Sun, 30 May 2010)

Log Message:
-----------
COLLADA branch: change texture coordinate parameter names from X and Y to spec-compliant S and T.

Modified Paths:
--------------
    branches/soc-2009-chingachgook/source/blender/collada/DocumentExporter.cpp

Modified: branches/soc-2009-chingachgook/source/blender/collada/DocumentExporter.cpp
===================================================================
--- branches/soc-2009-chingachgook/source/blender/collada/DocumentExporter.cpp	2010-05-30 15:17:33 UTC (rev 29080)
+++ branches/soc-2009-chingachgook/source/blender/collada/DocumentExporter.cpp	2010-05-30 15:43:12 UTC (rev 29081)
@@ -661,8 +661,8 @@
 			source.setAccessorCount(totuv);
 			source.setAccessorStride(2);
 			COLLADASW::SourceBase::ParameterNameList &param = source.getParameterNameList();
-			param.push_back("X");
-			param.push_back("Y");
+			param.push_back("S");
+			param.push_back("T");
 			
 			source.prepareToAppendValues();
 			





More information about the Bf-blender-cvs mailing list