Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_userdef.c
| Show All 22 Lines | |||||
| 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, "node_backdrop", PROP_FLOAT, PROP_COLOR_GAMMA); | prop = RNA_def_property(srna, "node_backdrop", PROP_FLOAT, PROP_COLOR_GAMMA); | ||||
| RNA_def_property_float_sdna(prop, NULL, "syntaxl"); | RNA_def_property_float_sdna(prop, NULL, "syntaxl"); | ||||
| RNA_def_property_array(prop, 4); | RNA_def_property_array(prop, 4); | ||||
| RNA_def_property_ui_text(prop, "Node Backdrop", ""); | RNA_def_property_ui_text(prop, "Node Backdrop", ""); | ||||
| 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, "node_shadow_fac", PROP_FLOAT, PROP_FACTOR); | |||||
| RNA_def_property_ui_text(prop, "Node Shadow Strength", "Blending factor for node shadows"); | |||||
| RNA_def_property_range(prop, 0.0f, 1.0f); | |||||
| RNA_def_property_update(prop, 0, "rna_userdef_theme_update"); | |||||
| prop = RNA_def_property(srna, "converter_node", PROP_FLOAT, PROP_COLOR_GAMMA); | prop = RNA_def_property(srna, "converter_node", PROP_FLOAT, PROP_COLOR_GAMMA); | ||||
| RNA_def_property_float_sdna(prop, NULL, "syntaxv"); | RNA_def_property_float_sdna(prop, NULL, "syntaxv"); | ||||
| RNA_def_property_array(prop, 3); | RNA_def_property_array(prop, 3); | ||||
| RNA_def_property_ui_text(prop, "Converter Node", ""); | RNA_def_property_ui_text(prop, "Converter Node", ""); | ||||
| 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, "color_node", PROP_FLOAT, PROP_COLOR_GAMMA); | prop = RNA_def_property(srna, "color_node", PROP_FLOAT, PROP_COLOR_GAMMA); | ||||
| RNA_def_property_float_sdna(prop, NULL, "syntaxb"); | RNA_def_property_float_sdna(prop, NULL, "syntaxb"); | ||||
| Show All 22 Lines | |||||