Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_scene.c
- This file is larger than 256 KB, so syntax highlighting is disabled by default.
| Show First 20 Lines • Show All 5,815 Lines • ▼ Show 20 Lines | #endif | ||||
| RNA_def_property_ui_text(prop, "Simplify Subdivision", "Global maximum subdivision level"); | RNA_def_property_ui_text(prop, "Simplify Subdivision", "Global maximum subdivision level"); | ||||
| RNA_def_property_update(prop, 0, "rna_Scene_simplify_update"); | RNA_def_property_update(prop, 0, "rna_Scene_simplify_update"); | ||||
| prop = RNA_def_property(srna, "simplify_child_particles", PROP_FLOAT, PROP_FACTOR); | prop = RNA_def_property(srna, "simplify_child_particles", PROP_FLOAT, PROP_FACTOR); | ||||
| RNA_def_property_float_sdna(prop, NULL, "simplify_particles"); | RNA_def_property_float_sdna(prop, NULL, "simplify_particles"); | ||||
| RNA_def_property_ui_text(prop, "Simplify Child Particles", "Global child particles percentage"); | RNA_def_property_ui_text(prop, "Simplify Child Particles", "Global child particles percentage"); | ||||
| RNA_def_property_update(prop, 0, "rna_Scene_simplify_update"); | RNA_def_property_update(prop, 0, "rna_Scene_simplify_update"); | ||||
| prop = RNA_def_property(srna, "simplify_subdivision_render", PROP_INT, PROP_UNSIGNED); | |||||
| RNA_def_property_int_sdna(prop, NULL, "simplify_subsurf_render"); | |||||
| RNA_def_property_ui_range(prop, 0, 6, 1, -1); | |||||
| RNA_def_property_ui_text(prop, "Simplify Subdivision", "Global maximum subdivision level during rendering"); | |||||
| RNA_def_property_update(prop, 0, "rna_Scene_simplify_update"); | |||||
| prop = RNA_def_property(srna, "simplify_child_particles_render", PROP_FLOAT, PROP_FACTOR); | |||||
| RNA_def_property_float_sdna(prop, NULL, "simplify_particles_render"); | |||||
| RNA_def_property_ui_text(prop, "Simplify Child Particles", "Global child particles percentage during rendering"); | |||||
| RNA_def_property_update(prop, 0, "rna_Scene_simplify_update"); | |||||
| prop = RNA_def_property(srna, "simplify_shadow_samples", PROP_INT, PROP_UNSIGNED); | prop = RNA_def_property(srna, "simplify_shadow_samples", PROP_INT, PROP_UNSIGNED); | ||||
| RNA_def_property_int_sdna(prop, NULL, "simplify_shadowsamples"); | RNA_def_property_int_sdna(prop, NULL, "simplify_shadowsamples"); | ||||
| RNA_def_property_ui_range(prop, 1, 16, 1, -1); | RNA_def_property_ui_range(prop, 1, 16, 1, -1); | ||||
| RNA_def_property_ui_text(prop, "Simplify Shadow Samples", "Global maximum shadow samples"); | RNA_def_property_ui_text(prop, "Simplify Shadow Samples", "Global maximum shadow samples"); | ||||
| RNA_def_property_update(prop, 0, "rna_Scene_simplify_update"); | RNA_def_property_update(prop, 0, "rna_Scene_simplify_update"); | ||||
| prop = RNA_def_property(srna, "simplify_ao_sss", PROP_FLOAT, PROP_FACTOR); | prop = RNA_def_property(srna, "simplify_ao_sss", PROP_FLOAT, PROP_FACTOR); | ||||
| RNA_def_property_float_sdna(prop, NULL, "simplify_aosss"); | RNA_def_property_float_sdna(prop, NULL, "simplify_aosss"); | ||||
| ▲ Show 20 Lines • Show All 709 Lines • Show Last 20 Lines | |||||