From f5c8ba586f14d21f06bd7978c2df7edbf9fd1d35 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 4 Mar 2010 11:17:13 +0000 Subject: effector shape names: old/new --> point/plane --- source/blender/makesrna/intern/rna_object_force.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'source/blender/makesrna/intern/rna_object_force.c') 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} }; -- cgit v1.2.3