Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/object.cc
| Show First 20 Lines • Show All 577 Lines • ▼ Show 20 Lines | if (ob->rigidbody_constraint) { | ||||
| BLO_write_struct(writer, RigidBodyCon, ob->rigidbody_constraint); | BLO_write_struct(writer, RigidBodyCon, ob->rigidbody_constraint); | ||||
| } | } | ||||
| if (ob->type == OB_EMPTY && ob->empty_drawtype == OB_EMPTY_IMAGE) { | if (ob->type == OB_EMPTY && ob->empty_drawtype == OB_EMPTY_IMAGE) { | ||||
| BLO_write_struct(writer, ImageUser, ob->iuser); | BLO_write_struct(writer, ImageUser, ob->iuser); | ||||
| } | } | ||||
| BKE_particle_system_blend_write(writer, &ob->particlesystem); | BKE_particle_system_blend_write(writer, &ob->particlesystem); | ||||
| BKE_modifier_blend_write(writer, &ob->modifiers); | BKE_modifier_blend_write(writer, &ob->id, &ob->modifiers); | ||||
| BKE_gpencil_modifier_blend_write(writer, &ob->greasepencil_modifiers); | BKE_gpencil_modifier_blend_write(writer, &ob->greasepencil_modifiers); | ||||
| BKE_shaderfx_blend_write(writer, &ob->shader_fx); | BKE_shaderfx_blend_write(writer, &ob->shader_fx); | ||||
| BLO_write_struct_list(writer, LinkData, &ob->pc_ids); | BLO_write_struct_list(writer, LinkData, &ob->pc_ids); | ||||
| BKE_previewimg_blend_write(writer, ob->preview); | BKE_previewimg_blend_write(writer, ob->preview); | ||||
| if (ob->lightgroup) { | if (ob->lightgroup) { | ||||
| ▲ Show 20 Lines • Show All 5,046 Lines • Show Last 20 Lines | |||||