فهرست منبع

Merge pull request #301 from eyethereal/obj-exporter-no-name-no-group

OBJ Exporter: No "g" lines with empty names
Kim Kulling 11 سال پیش
والد
کامیت
9fbc9c4fb7
1فایلهای تغییر یافته به همراه3 افزوده شده و 1 حذف شده
  1. 3 1
      code/ObjExporter.cpp

+ 3 - 1
code/ObjExporter.cpp

@@ -228,7 +228,9 @@ void ObjExporter :: WriteGeometryFile()
 	// now write all mesh instances
 	BOOST_FOREACH(const MeshInstance& m, meshes) {
 		mOutput << "# Mesh \'" << m.name << "\' with " << m.faces.size() << " faces" << endl;
-		mOutput << "g " << m.name << endl;
+		if (!m.name.empty()) {
+			mOutput << "g " << m.name << endl;
+		}
 		mOutput << "usemtl " << m.matname << endl;
 
 		BOOST_FOREACH(const Face& f, m.faces) {