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 2,951 Lines • ▼ Show 20 Lines | static void rna_def_tool_settings(BlenderRNA *brna) | ||||
| prop = RNA_def_property(srna, "gpencil_weight_paint", PROP_POINTER, PROP_NONE); | prop = RNA_def_property(srna, "gpencil_weight_paint", PROP_POINTER, PROP_NONE); | ||||
| RNA_def_property_pointer_sdna(prop, NULL, "gp_weightpaint"); | RNA_def_property_pointer_sdna(prop, NULL, "gp_weightpaint"); | ||||
| RNA_def_property_ui_text(prop, "Grease Pencil Weight Paint", ""); | RNA_def_property_ui_text(prop, "Grease Pencil Weight Paint", ""); | ||||
| prop = RNA_def_property(srna, "particle_edit", PROP_POINTER, PROP_NONE); | prop = RNA_def_property(srna, "particle_edit", PROP_POINTER, PROP_NONE); | ||||
| RNA_def_property_pointer_sdna(prop, NULL, "particle"); | RNA_def_property_pointer_sdna(prop, NULL, "particle"); | ||||
| RNA_def_property_ui_text(prop, "Particle Edit", ""); | RNA_def_property_ui_text(prop, "Particle Edit", ""); | ||||
| prop = RNA_def_property(srna, "heightmap_sculpt_paint", PROP_POINTER, PROP_NONE); | |||||
| RNA_def_property_pointer_sdna(prop, NULL, "hm_sculpt"); | |||||
| RNA_def_property_ui_text(prop, "Grease Pencil Sculpt Paint", ""); | |||||
| prop = RNA_def_property(srna, "uv_sculpt_lock_borders", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "uv_sculpt_lock_borders", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "uv_sculpt_settings", UV_SCULPT_LOCK_BORDERS); | RNA_def_property_boolean_sdna(prop, NULL, "uv_sculpt_settings", UV_SCULPT_LOCK_BORDERS); | ||||
| RNA_def_property_ui_text(prop, "Lock Borders", "Disable editing of boundary edges"); | RNA_def_property_ui_text(prop, "Lock Borders", "Disable editing of boundary edges"); | ||||
| prop = RNA_def_property(srna, "uv_sculpt_all_islands", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "uv_sculpt_all_islands", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "uv_sculpt_settings", UV_SCULPT_ALL_ISLANDS); | RNA_def_property_boolean_sdna(prop, NULL, "uv_sculpt_settings", UV_SCULPT_ALL_ISLANDS); | ||||
| RNA_def_property_ui_text(prop, "Sculpt All Islands", "Brush operates on all islands"); | RNA_def_property_ui_text(prop, "Sculpt All Islands", "Brush operates on all islands"); | ||||
| ▲ Show 20 Lines • Show All 5,003 Lines • Show Last 20 Lines | |||||