Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2006-06-19 20:00:48 +0400
committerCampbell Barton <ideasman42@gmail.com>2006-06-19 20:00:48 +0400
commit56435b5833ece83b74fe442628b48be2266a33f1 (patch)
tree676730972de3553839ca08b9ab7e4f18fff1627c /source/blender/src/editface.c
parent521fa9c955eb82c5f095e644da47975839fcf709 (diff)
renamed uv mapping menu items to make more sense.
=== UKEY UV MAPPING MENU=== Cube -> Cube Projection Cylinder -> Cylinder from View Sphere -> Sphere from View Bounds to */* -> Project from View */* Standard */* -> Reset */* From Window -> Project from View
Diffstat (limited to 'source/blender/src/editface.c')
-rw-r--r--source/blender/src/editface.c27
1 files changed, 14 insertions, 13 deletions
diff --git a/source/blender/src/editface.c b/source/blender/src/editface.c
index ee8f16016b9..cd16e4cb5c7 100644
--- a/source/blender/src/editface.c
+++ b/source/blender/src/editface.c
@@ -1347,7 +1347,7 @@ void face_borderselect()
#define UV_CYL_MAPPING 3
#define UV_SPHERE_MAPPING 4
#define UV_BOUNDS8_MAPPING 68
-#define UV_BOUNDS4_MAPPING 65
+#define UV_BOUNDS4_MAPPING` 65
#define UV_BOUNDS2_MAPPING 66
#define UV_BOUNDS1_MAPPING 67
#define UV_STD8_MAPPING 131
@@ -1372,19 +1372,20 @@ void uv_autocalc_tface()
{
short mode;
mode= pupmenu(MENUTITLE("UV Calculation")
- MENUSTRING("Cube", UV_CUBE_MAPPING) "|"
- MENUSTRING("Cylinder", UV_CYL_MAPPING) "|"
- MENUSTRING("Sphere", UV_SPHERE_MAPPING) "|"
+ MENUSTRING("Cube Projection", UV_CUBE_MAPPING) "|"
+ MENUSTRING("Cylinder from View", UV_CYL_MAPPING) "|"
+ MENUSTRING("Sphere from View", UV_SPHERE_MAPPING) "|"
MENUSTRING("Unwrap", UV_UNWRAP_MAPPING) "|"
- MENUSTRING("Bounds to 1/8", UV_BOUNDS8_MAPPING) "|"
- MENUSTRING("Bounds to 1/4", UV_BOUNDS4_MAPPING) "|"
- MENUSTRING("Bounds to 1/2", UV_BOUNDS2_MAPPING) "|"
- MENUSTRING("Bounds to 1/1", UV_BOUNDS1_MAPPING) "|"
- MENUSTRING("Standard 1/8", UV_STD8_MAPPING) "|"
- MENUSTRING("Standard 1/4", UV_STD4_MAPPING) "|"
- MENUSTRING("Standard 1/2", UV_STD2_MAPPING) "|"
- MENUSTRING("Standard 1/1", UV_STD1_MAPPING) "|"
- MENUSTRING("From Window", UV_WINDOW_MAPPING) );
+ MENUSTRING("Project From View", UV_WINDOW_MAPPING) "|"
+ MENUSTRING("Project from View 1/1", UV_BOUNDS1_MAPPING) "|"
+ MENUSTRING("Project from View 1/2", UV_BOUNDS2_MAPPING) "|"
+ MENUSTRING("Project from View 1/4", UV_BOUNDS4_MAPPING) "|"
+ MENUSTRING("Project from View 1/8", UV_BOUNDS8_MAPPING) "|"
+ MENUSTRING("Reset 1/1", UV_STD1_MAPPING) "|"
+ MENUSTRING("Reset 1/2", UV_STD2_MAPPING) "|"
+ MENUSTRING("Reset 1/4", UV_STD4_MAPPING) "|"
+ MENUSTRING("Reset 1/8", UV_STD8_MAPPING) );
+
switch(mode) {