Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_scene_types.h
| Show First 20 Lines • Show All 1,887 Lines • ▼ Show 20 Lines | |||||
| #define SCE_SNAP (1 << 0) | #define SCE_SNAP (1 << 0) | ||||
| #define SCE_SNAP_ROTATE (1 << 1) | #define SCE_SNAP_ROTATE (1 << 1) | ||||
| #define SCE_SNAP_PEEL_OBJECT (1 << 2) | #define SCE_SNAP_PEEL_OBJECT (1 << 2) | ||||
| #define SCE_SNAP_PROJECT (1 << 3) | #define SCE_SNAP_PROJECT (1 << 3) | ||||
| #define SCE_SNAP_NO_SELF (1 << 4) | #define SCE_SNAP_NO_SELF (1 << 4) | ||||
| #define SCE_SNAP_ABS_GRID (1 << 5) | #define SCE_SNAP_ABS_GRID (1 << 5) | ||||
| /* ToolSettings.snap_target */ | /* ToolSettings.snap_target */ | ||||
| #define SCE_SNAP_TARGET_CLOSEST 0 | #define SCE_SNAP_TARGET_CLOSEST 0 | ||||
| #define SCE_SNAP_TARGET_CENTER 1 | #define SCE_SNAP_TARGET_CENTER 1 | ||||
| #define SCE_SNAP_TARGET_MEDIAN 2 | #define SCE_SNAP_TARGET_BBOXCENTER 2 | ||||
| #define SCE_SNAP_TARGET_ACTIVE 3 | #define SCE_SNAP_TARGET_CURSOR 3 | ||||
| #define SCE_SNAP_TARGET_MEDIAN 4 | |||||
| #define SCE_SNAP_TARGET_ACTIVE 5 | |||||
| /* ToolSettings.snap_mode */ | /* ToolSettings.snap_mode */ | ||||
| #define SCE_SNAP_MODE_VERTEX (1 << 0) | #define SCE_SNAP_MODE_VERTEX (1 << 0) | ||||
| #define SCE_SNAP_MODE_EDGE (1 << 1) | #define SCE_SNAP_MODE_EDGE (1 << 1) | ||||
| #define SCE_SNAP_MODE_FACE (1 << 2) | #define SCE_SNAP_MODE_FACE (1 << 2) | ||||
| #define SCE_SNAP_MODE_VOLUME (1 << 3) | #define SCE_SNAP_MODE_VOLUME (1 << 3) | ||||
| #define SCE_SNAP_MODE_INCREMENT (1 << 4) | #define SCE_SNAP_MODE_INCREMENT (1 << 4) | ||||
| ▲ Show 20 Lines • Show All 356 Lines • Show Last 20 Lines | |||||