Commit aff4ef06 authored by hybrid's avatar hybrid

Unify texture transformation for tex coord system with mesh loader.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@4549 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 20b802e8
...@@ -224,7 +224,7 @@ void COBJMeshWriter::getVectorAsStringLine(const core::vector2df& v, core::strin ...@@ -224,7 +224,7 @@ void COBJMeshWriter::getVectorAsStringLine(const core::vector2df& v, core::strin
{ {
s = core::stringc(v.X); s = core::stringc(v.X);
s += " "; s += " ";
s += core::stringc(-v.Y); s += core::stringc(1-v.Y);
s += "\n"; s += "\n";
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment