Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_scene.c
- This file is larger than 256 KB, so syntax highlighting is disabled by default.
| Show First 20 Lines • Show All 111 Lines • ▼ Show 20 Lines | const EnumPropertyItem rna_enum_uv_sculpt_tool_items[] = { | ||||
| {UV_SCULPT_TOOL_PINCH, "PINCH", 0, "Pinch", "Pinch UVs"}, | {UV_SCULPT_TOOL_PINCH, "PINCH", 0, "Pinch", "Pinch UVs"}, | ||||
| {UV_SCULPT_TOOL_RELAX, "RELAX", 0, "Relax", "Relax UVs"}, | {UV_SCULPT_TOOL_RELAX, "RELAX", 0, "Relax", "Relax UVs"}, | ||||
| {UV_SCULPT_TOOL_GRAB, "GRAB", 0, "Grab", "Grab UVs"}, | {UV_SCULPT_TOOL_GRAB, "GRAB", 0, "Grab", "Grab UVs"}, | ||||
| {0, NULL, 0, NULL, NULL} | {0, NULL, 0, NULL, NULL} | ||||
| }; | }; | ||||
| const EnumPropertyItem rna_enum_snap_target_items[] = { | const EnumPropertyItem rna_enum_snap_target_items[] = { | ||||
| {SCE_SNAP_TARGET_CLOSEST, "CLOSEST", 0, "Closest", "Snap closest point onto target"}, | {SCE_SNAP_TARGET_CLOSEST, "CLOSEST", ICON_CLOSEST_POINT, "Closest", "Snap closest point onto target"}, | ||||
| {SCE_SNAP_TARGET_CENTER, "CENTER", 0, "Center", "Snap transormation center onto target"}, | {SCE_SNAP_TARGET_CENTER, "CENTER", ICON_OBJECT_ORIGIN, "Center", "Snap transormation center onto target"}, | ||||
| {SCE_SNAP_TARGET_MEDIAN, "MEDIAN", 0, "Median", "Snap median onto target"}, | {SCE_SNAP_TARGET_BBOXCENTER, "BBOXCENTER", ICON_PIVOT_BOUNDBOX, "Bounding Box Center", | ||||
| {SCE_SNAP_TARGET_ACTIVE, "ACTIVE", 0, "Active", "Snap active onto target"}, | "Snap bound box center onto target"}, | ||||
| {SCE_SNAP_TARGET_CURSOR, "CURSOR", ICON_PIVOT_CURSOR, "Cursor", "Snap cursor onto target"}, | |||||
| {SCE_SNAP_TARGET_MEDIAN, "MEDIAN", ICON_PIVOT_MEDIAN, "Median Point", "Snap median onto target"}, | |||||
| {SCE_SNAP_TARGET_ACTIVE, "ACTIVE", ICON_PIVOT_ACTIVE, "Active Element", "Snap active onto target"}, | |||||
| {0, NULL, 0, NULL, NULL} | {0, NULL, 0, NULL, NULL} | ||||
| }; | }; | ||||
| const EnumPropertyItem rna_enum_proportional_falloff_items[] = { | const EnumPropertyItem rna_enum_proportional_falloff_items[] = { | ||||
| {PROP_SMOOTH, "SMOOTH", ICON_SMOOTHCURVE, "Smooth", "Smooth falloff"}, | {PROP_SMOOTH, "SMOOTH", ICON_SMOOTHCURVE, "Smooth", "Smooth falloff"}, | ||||
| {PROP_SPHERE, "SPHERE", ICON_SPHERECURVE, "Sphere", "Spherical falloff"}, | {PROP_SPHERE, "SPHERE", ICON_SPHERECURVE, "Sphere", "Spherical falloff"}, | ||||
| {PROP_ROOT, "ROOT", ICON_ROOTCURVE, "Root", "Root falloff"}, | {PROP_ROOT, "ROOT", ICON_ROOTCURVE, "Root", "Root falloff"}, | ||||
| {PROP_INVSQUARE, "INVERSE_SQUARE", ICON_ROOTCURVE, "Inverse Square", "Inverse Square falloff"}, | {PROP_INVSQUARE, "INVERSE_SQUARE", ICON_ROOTCURVE, "Inverse Square", "Inverse Square falloff"}, | ||||
| ▲ Show 20 Lines • Show All 6,452 Lines • Show Last 20 Lines | |||||