Skip to content

Commit

Permalink
Fix typo in <visual_scene>
Browse files Browse the repository at this point in the history
Swapped Id and Name
  • Loading branch information
RichardTea committed May 5, 2020
1 parent fa1d2f0 commit d1ae6ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/AssetLib/Collada/ColladaExporter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1226,8 +1226,8 @@ void ColladaExporter::WriteFloatArray(const std::string &pIdString, FloatDataTyp
// ------------------------------------------------------------------------------------------------
// Writes the scene library
void ColladaExporter::WriteSceneLibrary() {
const std::string sceneName = GetNodeUniqueId(mScene->mRootNode);
const std::string sceneId = GetNodeName(mScene->mRootNode);
const std::string sceneId = GetNodeUniqueId(mScene->mRootNode);
const std::string sceneName = GetNodeName(mScene->mRootNode);

mOutput << startstr << "<library_visual_scenes>" << endstr;
PushTag();
Expand Down

0 comments on commit d1ae6ac

Please sign in to comment.