Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_sequence_types.h
| Show First 20 Lines • Show All 178 Lines • ▼ Show 20 Lines | typedef struct Sequence { | ||||
| /** MOVIECLIP render flags. */ | /** MOVIECLIP render flags. */ | ||||
| int clip_flag; | int clip_flag; | ||||
| Strip *strip; | Strip *strip; | ||||
| /** Old animation system, deprecated for 2.5. */ | /** Old animation system, deprecated for 2.5. */ | ||||
| struct Ipo *ipo DNA_DEPRECATED; | struct Ipo *ipo DNA_DEPRECATED; | ||||
| /** these ID vars should never be NULL but can be when linked libs fail to load, | /** these ID vars should never be NULL but can be when linked libraries fail to load, | ||||
| * so check on access */ | * so check on access */ | ||||
| struct Scene *scene; | struct Scene *scene; | ||||
| /** Override scene camera. */ | /** Override scene camera. */ | ||||
| struct Object *scene_camera; | struct Object *scene_camera; | ||||
| /** For MOVIECLIP strips. */ | /** For MOVIECLIP strips. */ | ||||
| struct MovieClip *clip; | struct MovieClip *clip; | ||||
| /** For MASK strips. */ | /** For MASK strips. */ | ||||
| struct Mask *mask; | struct Mask *mask; | ||||
| ▲ Show 20 Lines • Show All 614 Lines • Show Last 20 Lines | |||||