Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_constraint.c
| Show First 20 Lines • Show All 2,963 Lines • ▼ Show 20 Lines | |||||
| } | } | ||||
| static void rna_def_constraint_spline_ik(BlenderRNA *brna) | static void rna_def_constraint_spline_ik(BlenderRNA *brna) | ||||
| { | { | ||||
| StructRNA *srna; | StructRNA *srna; | ||||
| PropertyRNA *prop; | PropertyRNA *prop; | ||||
| static const EnumPropertyItem splineik_xz_scale_mode[] = { | static const EnumPropertyItem splineik_xz_scale_mode[] = { | ||||
| {CONSTRAINT_SPLINEIK_XZS_NONE, "NONE", 0, "None", "Don't scale the X and Z axes (Default)"}, | {CONSTRAINT_SPLINEIK_XZS_NONE, "NONE", 0, "None", "Don't scale the X and Z axes"}, | ||||
| {CONSTRAINT_SPLINEIK_XZS_ORIGINAL, | {CONSTRAINT_SPLINEIK_XZS_ORIGINAL, | ||||
| "BONE_ORIGINAL", | "BONE_ORIGINAL", | ||||
| 0, | 0, | ||||
| "Bone Original", | "Bone Original", | ||||
| "Use the original scaling of the bones"}, | "Use the original scaling of the bones"}, | ||||
| {CONSTRAINT_SPLINEIK_XZS_INVERSE, | {CONSTRAINT_SPLINEIK_XZS_INVERSE, | ||||
| "INVERSE_PRESERVE", | "INVERSE_PRESERVE", | ||||
| 0, | 0, | ||||
| ▲ Show 20 Lines • Show All 614 Lines • Show Last 20 Lines | |||||