Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/ED_anim_api.h
| Show First 20 Lines • Show All 79 Lines • ▼ Show 20 Lines | typedef struct bAnimContext { | ||||
| /** editor data */ | /** editor data */ | ||||
| struct SpaceLink *sl; | struct SpaceLink *sl; | ||||
| /** region within editor */ | /** region within editor */ | ||||
| struct ARegion *ar; | struct ARegion *ar; | ||||
| /** dopesheet data for editor (or which is being used) */ | /** dopesheet data for editor (or which is being used) */ | ||||
| struct bDopeSheet *ads; | struct bDopeSheet *ads; | ||||
| /** active dependency graph */ | |||||
| struct Depsgraph *depsgraph; | |||||
| /** Current Main */ | /** Current Main */ | ||||
| struct Main *bmain; | struct Main *bmain; | ||||
| /** active scene */ | /** active scene */ | ||||
| struct Scene *scene; | struct Scene *scene; | ||||
| /** active scene layer */ | /** active scene layer */ | ||||
| struct ViewLayer *view_layer; | struct ViewLayer *view_layer; | ||||
| /** active object */ | /** active object */ | ||||
| struct Object *obact; | struct Object *obact; | ||||
| ▲ Show 20 Lines • Show All 751 Lines • Show Last 20 Lines | |||||