Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_action_types.h
| Show First 20 Lines • Show All 673 Lines • ▼ Show 20 Lines | |||||
| /* Action Editor Space. This is defined here instead of in DNA_space_types.h */ | /* Action Editor Space. This is defined here instead of in DNA_space_types.h */ | ||||
| typedef struct SpaceAction { | typedef struct SpaceAction { | ||||
| struct SpaceLink *next, *prev; | struct SpaceLink *next, *prev; | ||||
| ListBase regionbase; /* storage of regions for inactive spaces */ | ListBase regionbase; /* storage of regions for inactive spaces */ | ||||
| char spacetype; | char spacetype; | ||||
| char link_flag; | char link_flag; | ||||
| char _pad0[6]; | short space_subtype; | ||||
| char _pad0[4]; | |||||
| /* End 'SpaceLink' header. */ | /* End 'SpaceLink' header. */ | ||||
| View2D v2d DNA_DEPRECATED; /* copied to region */ | View2D v2d DNA_DEPRECATED; /* copied to region */ | ||||
| bAction *action; /* the currently active action */ | bAction *action; /* the currently active action */ | ||||
| bDopeSheet ads; /* the currently active context (when not showing action) */ | bDopeSheet ads; /* the currently active context (when not showing action) */ | ||||
| char mode, autosnap; /* mode: editing context; autosnap: automatic keyframe snapping mode */ | char mode, autosnap; /* mode: editing context; autosnap: automatic keyframe snapping mode */ | ||||
| ▲ Show 20 Lines • Show All 120 Lines • Show Last 20 Lines | |||||