Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_object.h
| Show First 20 Lines • Show All 368 Lines • ▼ Show 20 Lines | struct MovieClip *BKE_object_movieclip_get(struct Scene *scene, | ||||
| bool use_default); | bool use_default); | ||||
| void BKE_object_runtime_reset(struct Object *object); | void BKE_object_runtime_reset(struct Object *object); | ||||
| void BKE_object_runtime_reset_on_copy(struct Object *object, const int flag); | void BKE_object_runtime_reset_on_copy(struct Object *object, const int flag); | ||||
| void BKE_object_runtime_free_data(struct Object *object); | void BKE_object_runtime_free_data(struct Object *object); | ||||
| void BKE_object_batch_cache_dirty_tag(struct Object *ob); | void BKE_object_batch_cache_dirty_tag(struct Object *ob); | ||||
| void BKE_object_data_batch_cache_dirty_tag(struct ID *object_data); | void BKE_object_data_batch_cache_dirty_tag(struct ID *object_data); | ||||
| void BKE_object_data_eval_batch_cache_dirty_tag(struct Depsgraph *depsgraph, | |||||
| struct ID *object_data); | |||||
| void BKE_object_data_eval_batch_cache_deform_tag(struct Depsgraph *depsgraph, | |||||
| struct ID *object_data); | |||||
| /* this function returns a superset of the scenes selection based on relationships */ | /* this function returns a superset of the scenes selection based on relationships */ | ||||
| typedef enum eObRelationTypes { | typedef enum eObRelationTypes { | ||||
| OB_REL_NONE = 0, /* Just the selection as is. */ | OB_REL_NONE = 0, /* Just the selection as is. */ | ||||
| OB_REL_PARENT = (1 << 0), /* Immediate parent. */ | OB_REL_PARENT = (1 << 0), /* Immediate parent. */ | ||||
| OB_REL_PARENT_RECURSIVE = (1 << 1), /* Parents up to root of selection tree. */ | OB_REL_PARENT_RECURSIVE = (1 << 1), /* Parents up to root of selection tree. */ | ||||
| OB_REL_CHILDREN = (1 << 2), /* Immediate children. */ | OB_REL_CHILDREN = (1 << 2), /* Immediate children. */ | ||||
| ▲ Show 20 Lines • Show All 79 Lines • Show Last 20 Lines | |||||