Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_pose.c
| Show First 20 Lines • Show All 1,657 Lines • ▼ Show 20 Lines | RNA_def_property_ui_text( | ||||
| prop, "X-Axis Mirror", "Apply changes to matching bone on opposite side of X-Axis"); | prop, "X-Axis Mirror", "Apply changes to matching bone on opposite side of X-Axis"); | ||||
| RNA_def_struct_path_func(srna, "rna_Pose_path"); | RNA_def_struct_path_func(srna, "rna_Pose_path"); | ||||
| RNA_def_property_update(prop, 0, "rna_Pose_update"); | RNA_def_property_update(prop, 0, "rna_Pose_update"); | ||||
| RNA_def_property_flag(prop, PROP_LIB_EXCEPTION); | RNA_def_property_flag(prop, PROP_LIB_EXCEPTION); | ||||
| prop = RNA_def_property(srna, "use_mirror_relative", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "use_mirror_relative", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "flag", POSE_MIRROR_RELATIVE); | RNA_def_property_boolean_sdna(prop, NULL, "flag", POSE_MIRROR_RELATIVE); | ||||
| RNA_def_property_ui_text( | RNA_def_property_ui_text( | ||||
| prop, "Relative Mirror", "Apply relative transformations in X-mirror mode"); | prop, | ||||
| "Relative Mirror", | |||||
| "Apply relative transformations in X-mirror mode (not supported with Auto IK)"); | |||||
| RNA_def_struct_path_func(srna, "rna_Pose_path"); | RNA_def_struct_path_func(srna, "rna_Pose_path"); | ||||
| RNA_def_property_update(prop, 0, "rna_Pose_update"); | RNA_def_property_update(prop, 0, "rna_Pose_update"); | ||||
| RNA_def_property_flag(prop, PROP_LIB_EXCEPTION); | RNA_def_property_flag(prop, PROP_LIB_EXCEPTION); | ||||
| prop = RNA_def_property(srna, "use_auto_ik", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "use_auto_ik", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "flag", POSE_AUTO_IK); | RNA_def_property_boolean_sdna(prop, NULL, "flag", POSE_AUTO_IK); | ||||
| RNA_def_property_ui_text( | RNA_def_property_ui_text( | ||||
| prop, "Auto IK", "Add temporary IK constraints while grabbing bones in Pose Mode"); | prop, "Auto IK", "Add temporary IK constraints while grabbing bones in Pose Mode"); | ||||
| Show All 20 Lines | |||||