- added MeshFace.normal property

- continuing OBJ exporter conversion
This commit is contained in:
2009-06-25 18:04:32 +00:00
parent e2e139c0ba
commit 18e7ec8463
3 changed files with 140 additions and 54 deletions

View File

@@ -198,7 +198,7 @@ void RNA_api_object(StructRNA *srna)
func= RNA_def_function(srna, "convert_to_triface", "rna_Object_convert_to_triface");
RNA_def_function_ui_description(func, "Convert all mesh faces to triangles.");
RNA_def_function_flag(func, FUNC_USE_CONTEXT|FUNC_USE_REPORTS);
parm= RNA_def_pointer(func, "scene", "Scene", "", "Scene where the object is.");
parm= RNA_def_pointer(func, "scene", "Scene", "", "Scene where the object belongs.");
RNA_def_property_flag(parm, PROP_REQUIRED);
}