Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_action_types.h
| Show First 20 Lines • Show All 854 Lines • ▼ Show 20 Lines | typedef enum eSAction_Flag { | ||||
| /* don't perform realtime updates */ | /* don't perform realtime updates */ | ||||
| SACTION_NOREALTIMEUPDATES = (1 << 10), | SACTION_NOREALTIMEUPDATES = (1 << 10), | ||||
| /* move markers as well as keyframes */ | /* move markers as well as keyframes */ | ||||
| SACTION_MARKERS_MOVE = (1 << 11), | SACTION_MARKERS_MOVE = (1 << 11), | ||||
| /* show interpolation type */ | /* show interpolation type */ | ||||
| SACTION_SHOW_INTERPOLATION = (1 << 12), | SACTION_SHOW_INTERPOLATION = (1 << 12), | ||||
| /* show extremes */ | /* show extremes */ | ||||
| SACTION_SHOW_EXTREMES = (1 << 13), | SACTION_SHOW_EXTREMES = (1 << 13), | ||||
| /* show vertical line markers */ | /* show markers region */ | ||||
| SACTION_SHOW_MARKER_LINES = (1 << 14), | SACTION_SHOW_MARKERS = (1 << 14), | ||||
| } eSAction_Flag; | } eSAction_Flag; | ||||
| /* SpaceAction_Runtime.flag */ | /* SpaceAction_Runtime.flag */ | ||||
| typedef enum eSAction_Runtime_Flag { | typedef enum eSAction_Runtime_Flag { | ||||
| /** Temporary flag to force channel selections to be synced with main */ | /** Temporary flag to force channel selections to be synced with main */ | ||||
| SACTION_RUNTIME_FLAG_NEED_CHAN_SYNC = (1 << 0), | SACTION_RUNTIME_FLAG_NEED_CHAN_SYNC = (1 << 0), | ||||
| } eSAction_Runtime_Flag; | } eSAction_Runtime_Flag; | ||||
| ▲ Show 20 Lines • Show All 94 Lines • Show Last 20 Lines | |||||