Browse Source

- fbx: bugfix node chain generation, was omitting some nodes.

Alexander Gessler 13 years ago
parent
commit
4aac334358
1 changed files with 1 additions and 1 deletions
  1. 1 1
      code/FBXConverter.cpp

+ 1 - 1
code/FBXConverter.cpp

@@ -174,7 +174,7 @@ private:
 					// attach sub-nodes
 					ConvertNodes(model->ID(), *last_parent);
 
-					nodes.push_back(nodes_chain.back());					
+					nodes.push_back(nodes_chain.front());					
 				}
 			}