Skip to content

Commit

Permalink
Fix Merge
Browse files Browse the repository at this point in the history
  • Loading branch information
Ohayon Franck committed Apr 26, 2016
1 parent d2e0586 commit 2d63f7d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions COLLADAMaya/src/COLLADAMayaDocumentExporter.cpp
Expand Up @@ -220,9 +220,6 @@ namespace COLLADAMaya
{
// Start by caching the expressions that will be sampled
mSceneGraph->sampleAnimationExpressions();

// Export the LOD
mLODExporter->exportLODs();

if (!ExportOptions::exportAnimations() || ExportOptions::exportPolygonMeshes())
{
Expand Down Expand Up @@ -264,6 +261,9 @@ namespace COLLADAMaya
// Export the geometries
mGeometryExporter->exportGeometries();

// Export the LOD
mLODExporter->exportLODs(mVisualSceneExporter);

bool physicsSceneExported = false;
if (ExportOptions::exportPhysics()) {
// Export PhysX
Expand Down
3 changes: 2 additions & 1 deletion COLLADAMaya/src/COLLADAMayaExportOptions.cpp
Expand Up @@ -85,7 +85,8 @@ namespace COLLADAMaya
mExportCameras = true;
mExportMaterialsOnly = false;
mExportReferencedMaterials = true;
mExportJointsAndSkin = true;
mExportJoints = true;
mExportSkin = true;
mExportAnimations = true;
mExportOptimizedBezierAnimations = false;
mExportInvisibleNodes = false;
Expand Down

0 comments on commit 2d63f7d

Please sign in to comment.