Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_userdef.c
| Show First 20 Lines • Show All 2,227 Lines • ▼ Show 20 Lines | static void rna_def_userdef_theme_space_view3d(BlenderRNA *brna) | ||||
| RNA_def_property_ui_text(prop, "Bone Pose Active", ""); | RNA_def_property_ui_text(prop, "Bone Pose Active", ""); | ||||
| RNA_def_property_update(prop, 0, "rna_userdef_theme_update"); | RNA_def_property_update(prop, 0, "rna_userdef_theme_update"); | ||||
| prop = RNA_def_property(srna, "bone_solid", PROP_FLOAT, PROP_COLOR_GAMMA); | prop = RNA_def_property(srna, "bone_solid", PROP_FLOAT, PROP_COLOR_GAMMA); | ||||
| RNA_def_property_array(prop, 3); | RNA_def_property_array(prop, 3); | ||||
| RNA_def_property_ui_text(prop, "Bone Solid", ""); | RNA_def_property_ui_text(prop, "Bone Solid", ""); | ||||
| RNA_def_property_update(prop, 0, "rna_userdef_theme_update"); | RNA_def_property_update(prop, 0, "rna_userdef_theme_update"); | ||||
| prop = RNA_def_property(srna, "bone_locked_weight", PROP_FLOAT, PROP_COLOR_GAMMA); | |||||
| RNA_def_property_array(prop, 4); | |||||
| RNA_def_property_ui_text( | |||||
| prop, "Bone Locked Weight", "Bone corresponds to a locked weight group during painting"); | |||||
| RNA_def_property_update(prop, 0, "rna_userdef_theme_update"); | |||||
| /* misc */ | /* misc */ | ||||
| prop = RNA_def_property(srna, "bundle_solid", PROP_FLOAT, PROP_COLOR_GAMMA); | prop = RNA_def_property(srna, "bundle_solid", PROP_FLOAT, PROP_COLOR_GAMMA); | ||||
| RNA_def_property_float_sdna(prop, NULL, "bundle_solid"); | RNA_def_property_float_sdna(prop, NULL, "bundle_solid"); | ||||
| RNA_def_property_array(prop, 3); | RNA_def_property_array(prop, 3); | ||||
| RNA_def_property_ui_text(prop, "Bundle Solid", ""); | RNA_def_property_ui_text(prop, "Bundle Solid", ""); | ||||
| RNA_def_property_update(prop, 0, "rna_userdef_theme_update"); | RNA_def_property_update(prop, 0, "rna_userdef_theme_update"); | ||||
| ▲ Show 20 Lines • Show All 3,831 Lines • Show Last 20 Lines | |||||