Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/sculpt_paint/sculpt_filter_mesh.c
| Context not available. | |||||
| "type", | "type", | ||||
| prop_mesh_filter_types, | prop_mesh_filter_types, | ||||
| MESH_FILTER_INFLATE, | MESH_FILTER_INFLATE, | ||||
| "Filter type", | "Filter Type", | ||||
| "Operation that is going to be applied to the mesh"); | "Operation that is going to be applied to the mesh"); | ||||
| RNA_def_float( | RNA_def_float( | ||||
| ot->srna, "strength", 1.0f, -10.0f, 10.0f, "Strength", "Filter Strength", -10.0f, 10.0f); | ot->srna, "strength", 1.0f, -10.0f, 10.0f, "Strength", "Filter strength", -10.0f, 10.0f); | ||||
| RNA_def_enum_flag(ot->srna, | RNA_def_enum_flag(ot->srna, | ||||
| "deform_axis", | "deform_axis", | ||||
| prop_mesh_filter_deform_axis_items, | prop_mesh_filter_deform_axis_items, | ||||
| MESH_FILTER_DEFORM_X | MESH_FILTER_DEFORM_Y | MESH_FILTER_DEFORM_Z, | MESH_FILTER_DEFORM_X | MESH_FILTER_DEFORM_Y | MESH_FILTER_DEFORM_Z, | ||||
| "Deform axis", | "Deform Axis", | ||||
| "Apply the deformation in the selected axis"); | "Apply the deformation in the selected axis"); | ||||
| RNA_def_enum(ot->srna, | RNA_def_enum(ot->srna, | ||||
| "orientation", | "orientation", | ||||
| Context not available. | |||||