Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_brush.c
| Show First 20 Lines • Show All 71 Lines • ▼ Show 20 Lines | |||||
| static const EnumPropertyItem rna_enum_brush_texture_slot_map_all_mode_items[] = { | static const EnumPropertyItem rna_enum_brush_texture_slot_map_all_mode_items[] = { | ||||
| {MTEX_MAP_MODE_VIEW, "VIEW_PLANE", 0, "View Plane", ""}, | {MTEX_MAP_MODE_VIEW, "VIEW_PLANE", 0, "View Plane", ""}, | ||||
| {MTEX_MAP_MODE_AREA, "AREA_PLANE", 0, "Area Plane", ""}, | {MTEX_MAP_MODE_AREA, "AREA_PLANE", 0, "Area Plane", ""}, | ||||
| {MTEX_MAP_MODE_TILED, "TILED", 0, "Tiled", ""}, | {MTEX_MAP_MODE_TILED, "TILED", 0, "Tiled", ""}, | ||||
| {MTEX_MAP_MODE_3D, "3D", 0, "3D", ""}, | {MTEX_MAP_MODE_3D, "3D", 0, "3D", ""}, | ||||
| {MTEX_MAP_MODE_RANDOM, "RANDOM", 0, "Random", ""}, | {MTEX_MAP_MODE_RANDOM, "RANDOM", 0, "Random", ""}, | ||||
| {MTEX_MAP_MODE_STENCIL, "STENCIL", 0, "Stencil", ""}, | {MTEX_MAP_MODE_STENCIL, "STENCIL", 0, "Stencil", ""}, | ||||
| {MTEX_MAP_MODE_ROLL, "ROLL", 0, "Roll", ""}, | |||||
| {0, NULL, 0, NULL, NULL}, | {0, NULL, 0, NULL, NULL}, | ||||
| }; | }; | ||||
| #ifdef RNA_RUNTIME | #ifdef RNA_RUNTIME | ||||
| static const EnumPropertyItem rna_enum_brush_texture_slot_map_texture_mode_items[] = { | static const EnumPropertyItem rna_enum_brush_texture_slot_map_texture_mode_items[] = { | ||||
| {MTEX_MAP_MODE_VIEW, "VIEW_PLANE", 0, "View Plane", ""}, | {MTEX_MAP_MODE_VIEW, "VIEW_PLANE", 0, "View Plane", ""}, | ||||
| {MTEX_MAP_MODE_TILED, "TILED", 0, "Tiled", ""}, | {MTEX_MAP_MODE_TILED, "TILED", 0, "Tiled", ""}, | ||||
| {MTEX_MAP_MODE_3D, "3D", 0, "3D", ""}, | {MTEX_MAP_MODE_3D, "3D", 0, "3D", ""}, | ||||
| ▲ Show 20 Lines • Show All 3,733 Lines • Show Last 20 Lines | |||||