Skip to content

Commit

Permalink
Fixup ASE syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
codereader committed Jan 23, 2017
1 parent 7479111 commit b4fa4ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/model/AseExporter.cpp
Expand Up @@ -50,7 +50,7 @@ void AseExporter::exportToStream(std::ostream& stream)
// Header / scene block
stream << "*3DSMAX_ASCIIEXPORT 200" << std::endl;
stream << "*COMMENT \"DarkRadiant ASCII Scene Export(*.ase)\"" << std::endl;
stream << "*SCENE{" << std::endl;
stream << "*SCENE {" << std::endl;
stream << "\t*SCENE_FILENAME \"" << GlobalMapModule().getMapName() << "\"" << std::endl;
stream << "\t*SCENE_FIRSTFRAME 0" << std::endl;
stream << "\t*SCENE_LASTFRAME 100" << std::endl;
Expand Down Expand Up @@ -84,7 +84,7 @@ void AseExporter::exportToStream(std::ostream& stream)
stream << "\t\t*MATERIAL_SELFILLUM 0.0000" << std::endl;
stream << "\t\t*MATERIAL_FALLOFF In" << std::endl;
stream << "\t\t*MATERIAL_XP_TYPE Filter" << std::endl;
stream << "\t\t*MAP_DIFFUSE{" << std::endl;
stream << "\t\t*MAP_DIFFUSE {" << std::endl;
stream << "\t\t\t*MAP_NAME \"" << _surfaces[m].materialName << "\"" << std::endl;
stream << "\t\t\t*MAP_CLASS \"Bitmap\"" << std::endl;
stream << "\t\t\t*MAP_SUBNO 1" << std::endl;
Expand Down

0 comments on commit b4fa4ee

Please sign in to comment.