Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_object.h
| Show First 20 Lines • Show All 302 Lines • ▼ Show 20 Lines | |||||
| void BKE_object_relink(struct Object *ob); | void BKE_object_relink(struct Object *ob); | ||||
| void BKE_object_data_relink(struct Object *ob); | void BKE_object_data_relink(struct Object *ob); | ||||
| struct MovieClip *BKE_object_movieclip_get(struct Scene *scene, struct Object *ob, bool use_default); | struct MovieClip *BKE_object_movieclip_get(struct Scene *scene, struct Object *ob, bool use_default); | ||||
| void BKE_object_runtime_reset(struct Object *object); | void BKE_object_runtime_reset(struct Object *object); | ||||
| void BKE_object_batch_cache_dirty(struct Object *ob); | |||||
| /* 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 */ | ||||
| OB_REL_CHILDREN_RECURSIVE = (1 << 3), /* All children */ | OB_REL_CHILDREN_RECURSIVE = (1 << 3), /* All children */ | ||||
| Show All 28 Lines | |||||