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>2010-03-04 14:17:13 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-03-04 14:17:13 +0300
commitf5c8ba586f14d21f06bd7978c2df7edbf9fd1d35 (patch)
tree21423e8caea5e46b70b11e48a8fe8a6fc6fa6c0f /source/blender/makesrna/intern/rna_object_force.c
parent790d6ca256e6b572826b2bf214c6fd6c8a623969 (diff)
effector shape names: old/new --> point/plane
Diffstat (limited to 'source/blender/makesrna/intern/rna_object_force.c')
-rw-r--r--source/blender/makesrna/intern/rna_object_force.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/makesrna/intern/rna_object_force.c b/source/blender/makesrna/intern/rna_object_force.c
index 259f634c59d..aa41878a0c5 100644
--- a/source/blender/makesrna/intern/rna_object_force.c
+++ b/source/blender/makesrna/intern/rna_object_force.c
@@ -61,23 +61,23 @@ EnumPropertyItem empty_shape_items[] = {
};
EnumPropertyItem vortex_shape_items[] = {
- {PFIELD_SHAPE_POINT, "POINT", 0, "Old", ""},
- {PFIELD_SHAPE_PLANE, "PLANE", 0, "New", ""},
+ {PFIELD_SHAPE_POINT, "POINT", 0, "Point", ""},
+ {PFIELD_SHAPE_PLANE, "PLANE", 0, "Plane", ""},
{PFIELD_SHAPE_SURFACE, "SURFACE", 0, "Surface falloff (New)", ""},
{PFIELD_SHAPE_POINTS, "POINTS", 0, "Every Point (New)", ""},
{0, NULL, 0, NULL, NULL}
};
EnumPropertyItem curve_vortex_shape_items[] = {
- {PFIELD_SHAPE_POINT, "POINT", 0, "Old", ""},
- {PFIELD_SHAPE_PLANE, "PLANE", 0, "New", ""},
+ {PFIELD_SHAPE_POINT, "POINT", 0, "Point", ""},
+ {PFIELD_SHAPE_PLANE, "PLANE", 0, "Plane", ""},
{PFIELD_SHAPE_SURFACE, "SURFACE", 0, "Curve (New)", ""},
{0, NULL, 0, NULL, NULL}
};
EnumPropertyItem empty_vortex_shape_items[] = {
- {PFIELD_SHAPE_POINT, "POINT", 0, "Old", ""},
- {PFIELD_SHAPE_PLANE, "PLANE", 0, "New", ""},
+ {PFIELD_SHAPE_POINT, "POINT", 0, "Point", ""},
+ {PFIELD_SHAPE_PLANE, "PLANE", 0, "Plane", ""},
{0, NULL, 0, NULL, NULL}
};