Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/object.c
| Context not available. | |||||
| ScrewModifierData *smd = (ScrewModifierData *)md; | ScrewModifierData *smd = (ScrewModifierData *)md; | ||||
| return smd->ob_axis != NULL && object_moves_in_time(smd->ob_axis); | return smd->ob_axis != NULL && object_moves_in_time(smd->ob_axis); | ||||
| } | } | ||||
| else if (md->type == eModifierType_MeshSequenceCache) { | |||||
| /* NOTE: Not ideal because it's unknown whether topology changes or not. | |||||
| * This will be detected later, so by assuming it's only deformation | |||||
| * going on here we allow to bake deform-only mesh to Alembic and have | |||||
| * proper motion blur after that. | |||||
| */ | |||||
| return true; | |||||
| } | |||||
| return false; | return false; | ||||
| } | } | ||||
| Context not available. | |||||