Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/space_view3d/view3d_fly.c
| Show First 20 Lines • Show All 140 Lines • ▼ Show 20 Lines | |||||
| typedef struct FlyInfo { | typedef struct FlyInfo { | ||||
| /* context stuff */ | /* context stuff */ | ||||
| RegionView3D *rv3d; | RegionView3D *rv3d; | ||||
| View3D *v3d; | View3D *v3d; | ||||
| ARegion *ar; | ARegion *ar; | ||||
| struct Depsgraph *depsgraph; | struct Depsgraph *depsgraph; | ||||
| Scene *scene; | Scene *scene; | ||||
| /** Needed for for updating that isn't triggered by input. */ | /** Needed for updating that isn't triggered by input. */ | ||||
| wmTimer *timer; | wmTimer *timer; | ||||
| short state; | short state; | ||||
| bool redraw; | bool redraw; | ||||
| bool use_precision; | bool use_precision; | ||||
| /** If the user presses shift they can look about without moving the direction there looking. */ | /** If the user presses shift they can look about without moving the direction there looking. */ | ||||
| bool use_freelook; | bool use_freelook; | ||||
| ▲ Show 20 Lines • Show All 972 Lines • Show Last 20 Lines | |||||