Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/ED_anim_api.h
| Show First 20 Lines • Show All 76 Lines • ▼ Show 20 Lines | typedef struct bAnimContext { | ||||
| struct ScrArea *sa; /* editor host */ | struct ScrArea *sa; /* editor host */ | ||||
| struct SpaceLink *sl; /* editor data */ | struct SpaceLink *sl; /* editor data */ | ||||
| struct ARegion *ar; /* region within editor */ | struct ARegion *ar; /* region within editor */ | ||||
| struct bDopeSheet *ads; /* dopesheet data for editor (or which is being used) */ | struct bDopeSheet *ads; /* dopesheet data for editor (or which is being used) */ | ||||
| struct Scene *scene; /* active scene */ | struct Scene *scene; /* active scene */ | ||||
| struct SceneLayer *scene_layer; /* active scene layer */ | struct ViewLayer *view_layer; /* active scene layer */ | ||||
| struct Object *obact; /* active object */ | struct Object *obact; /* active object */ | ||||
| ListBase *markers; /* active set of markers */ | ListBase *markers; /* active set of markers */ | ||||
| struct ReportList *reports; /* pointer to current reports list */ | struct ReportList *reports; /* pointer to current reports list */ | ||||
| float yscale_fac; /* scale factor for height of channels (i.e. based on the size of keyframes) */ | float yscale_fac; /* scale factor for height of channels (i.e. based on the size of keyframes) */ | ||||
| } bAnimContext; | } bAnimContext; | ||||
| ▲ Show 20 Lines • Show All 618 Lines • Show Last 20 Lines | |||||