Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_mesh.c
| Show First 20 Lines • Show All 992 Lines • ▼ Show 20 Lines | |||||
| RNA_def_property_boolean_sdna(prop, NULL, "active_clone", 0); | RNA_def_property_boolean_sdna(prop, NULL, "active_clone", 0); | ||||
| RNA_def_property_boolean_funcs( | RNA_def_property_boolean_funcs( | ||||
| prop, "rna_MeshUVLoopLayer_clone_get", "rna_MeshUVLoopLayer_clone_set"); | prop, "rna_MeshUVLoopLayer_clone_get", "rna_MeshUVLoopLayer_clone_set"); | ||||
| RNA_def_property_ui_text(prop, "Active Clone", "Set the map as active for cloning"); | RNA_def_property_ui_text(prop, "Active Clone", "Set the map as active for cloning"); | ||||
| RNA_def_property_update(prop, 0, "rna_Mesh_update_data_legacy_deg_tag_all"); | RNA_def_property_update(prop, 0, "rna_Mesh_update_data_legacy_deg_tag_all"); | ||||
| srna = RNA_def_struct(brna, "MeshUVLoop", NULL); | srna = RNA_def_struct(brna, "MeshUVLoop", NULL); | ||||
| RNA_def_struct_sdna(srna, "MLoopUV"); | RNA_def_struct_sdna(srna, "MLoopUV"); | ||||
| RNA_def_struct_ui_text(srna, "Mesh UV Layer", "Layer of UV coordinates in a Mesh data-block"); | |||||
mont29: Mesh UV Layer | |||||
Not Done Inline ActionsLayer of UV coordinates in a Mesh data-block mont29: Layer of UV coordinates in a Mesh data-block | |||||
| RNA_def_struct_path_func(srna, "rna_MeshUVLoop_path"); | RNA_def_struct_path_func(srna, "rna_MeshUVLoop_path"); | ||||
| prop = RNA_def_property(srna, "uv", PROP_FLOAT, PROP_XYZ); | prop = RNA_def_property(srna, "uv", PROP_FLOAT, PROP_XYZ); | ||||
| RNA_def_property_update(prop, 0, "rna_Mesh_update_data_legacy_deg_tag_all"); | RNA_def_property_update(prop, 0, "rna_Mesh_update_data_legacy_deg_tag_all"); | ||||
| prop = RNA_def_property(srna, "pin_uv", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "pin_uv", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "flag", MLOOPUV_PINNED); | RNA_def_property_boolean_sdna(prop, NULL, "flag", MLOOPUV_PINNED); | ||||
| RNA_def_property_ui_text(prop, "UV Pinned", ""); | RNA_def_property_ui_text(prop, "UV Pinned", ""); | ||||
| ▲ Show 20 Lines • Show All 992 Lines • Show Last 20 Lines | |||||
Mesh UV Layer