Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_armature.c
| Context not available. | |||||
| RNA_def_property_update(prop, 0, "rna_Armature_redraw_data"); | RNA_def_property_update(prop, 0, "rna_Armature_redraw_data"); | ||||
| 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); | |||||
| RNA_def_property_boolean_sdna(prop, NULL, "flag", ARM_MIRROR_RELATIVE); | |||||
| RNA_def_property_ui_text( | |||||
| prop, "Relative Mirror", "Apply relative transformations in X-mirror mode"); | |||||
| RNA_def_property_update(prop, 0, "rna_Armature_redraw_data"); | |||||
| RNA_def_property_flag(prop, PROP_LIB_EXCEPTION); | |||||
| prop = RNA_def_property(srna, "use_auto_ik", PROP_BOOLEAN, PROP_NONE); | |||||
| RNA_def_property_boolean_sdna(prop, NULL, "flag", ARM_AUTO_IK); | |||||
| RNA_def_property_ui_text( | |||||
| prop, "Auto IK", "Add temporary IK constraints while grabbing bones in Pose Mode"); | |||||
| RNA_def_property_update(prop, 0, "rna_Armature_redraw_data"); | |||||
| RNA_def_property_flag(prop, PROP_LIB_EXCEPTION); | |||||
| prop = RNA_def_property(srna, "show_bone_custom_shapes", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "show_bone_custom_shapes", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", ARM_NO_CUSTOM); | RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", ARM_NO_CUSTOM); | ||||
| RNA_def_property_ui_text( | RNA_def_property_ui_text( | ||||
| Context not available. | |||||