Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/ED_object.h
| Show First 20 Lines • Show All 239 Lines • ▼ Show 20 Lines | bool ED_object_modifier_remove(struct ReportList *reports, struct Main *bmain, | ||||
| struct Object *ob, struct ModifierData *md); | struct Object *ob, struct ModifierData *md); | ||||
| void ED_object_modifier_clear(struct Main *bmain, struct Object *ob); | void ED_object_modifier_clear(struct Main *bmain, struct Object *ob); | ||||
| int ED_object_modifier_move_down(struct ReportList *reports, struct Object *ob, struct ModifierData *md); | int ED_object_modifier_move_down(struct ReportList *reports, struct Object *ob, struct ModifierData *md); | ||||
| int ED_object_modifier_move_up(struct ReportList *reports, struct Object *ob, struct ModifierData *md); | int ED_object_modifier_move_up(struct ReportList *reports, struct Object *ob, struct ModifierData *md); | ||||
| int ED_object_modifier_convert( | int ED_object_modifier_convert( | ||||
| struct ReportList *reports, struct Main *bmain, struct Scene *scene, | struct ReportList *reports, struct Main *bmain, struct Scene *scene, | ||||
| struct ViewLayer *view_layer, struct Object *ob, struct ModifierData *md); | struct ViewLayer *view_layer, struct Object *ob, struct ModifierData *md); | ||||
| int ED_object_modifier_apply( | int ED_object_modifier_apply( | ||||
| struct ReportList *reports, struct Depsgraph *depsgraph, struct Scene *scene, | struct ReportList *reports, struct Main *bmain, struct Depsgraph *depsgraph, struct Scene *scene, | ||||
| struct Object *ob, struct ModifierData *md, int mode); | struct Object *ob, struct ModifierData *md, int mode); | ||||
| int ED_object_modifier_copy(struct ReportList *reports, struct Object *ob, struct ModifierData *md); | int ED_object_modifier_copy(struct ReportList *reports, struct Object *ob, struct ModifierData *md); | ||||
| bool ED_object_iter_other( | bool ED_object_iter_other( | ||||
| struct Main *bmain, struct Object *orig_ob, const bool include_orig, | struct Main *bmain, struct Object *orig_ob, const bool include_orig, | ||||
| bool (*callback)(struct Object *ob, void *callback_data), | bool (*callback)(struct Object *ob, void *callback_data), | ||||
| void *callback_data); | void *callback_data); | ||||
| Show All 27 Lines | |||||