[Bf-blender-cvs] [3ff1ef1] alembic_basic_io: Fix compile error (from change in master).

Kévin Dietrich noreply at git.blender.org
Thu Jun 23 21:18:30 CEST 2016


Commit: 3ff1ef140620276a862a3817c312a7f7c96607a0
Author: Kévin Dietrich
Date:   Thu Jun 23 21:16:17 2016 +0200
Branches: alembic_basic_io
https://developer.blender.org/rB3ff1ef140620276a862a3817c312a7f7c96607a0

Fix compile error (from change in master).

===================================================================

M	source/blender/alembic/intern/abc_exporter.cc

===================================================================

diff --git a/source/blender/alembic/intern/abc_exporter.cc b/source/blender/alembic/intern/abc_exporter.cc
index 253e752..71331e6 100644
--- a/source/blender/alembic/intern/abc_exporter.cc
+++ b/source/blender/alembic/intern/abc_exporter.cc
@@ -464,7 +464,7 @@ void AbcExporter::createShapeWriter(Object *ob, Object *dupliObParent)
 	ParticleSystem *psys = static_cast<ParticleSystem *>(ob->particlesystem.first);
 
 	for (; psys; psys = psys->next) {
-		if (!psys_check_enabled(ob, psys) || !psys->part) {
+		if (!psys_check_enabled(ob, psys, G.is_rendering) || !psys->part) {
 			continue;
 		}




More information about the Bf-blender-cvs mailing list