return 0;
}
-int collada_export(Scene *sce,
+int collada_export(bContext *C,
const char *filepath,
int apply_modifiers,
if (export_settings.include_children) includeFilter |= OB_REL_CHILDREN_RECURSIVE;
eObjectSet objectSet = (export_settings.selected) ? OB_SET_SELECTED : OB_SET_ALL;
+ Scene *sce = CTX_data_scene(C);
export_settings.export_set = BKE_object_relational_superset(sce, objectSet, (eObRelationTypes)includeFilter);
int export_count = BLI_linklist_count(export_settings.export_set);
int keep_bind_info);
-int collada_export(struct Scene *sce,
+int collada_export(struct bContext *C,
const char *filepath,
int apply_modifiers,
BC_export_mesh_type export_mesh_type,
ED_object_editmode_load(CTX_data_edit_object(C));
- export_count = collada_export(CTX_data_scene(C),
+ export_count = collada_export(C,
filepath,
apply_modifiers,
export_mesh_type,
/* Note: This definition must match to the generated function call */
static void rna_Scene_collada_export(
- Scene *scene,
+ bContext *C,
const char *filepath,
int apply_modifiers,
int limit_precision,
int keep_bind_info)
{
- collada_export(scene,
+ collada_export(C,
filepath,
apply_modifiers,
#ifdef WITH_COLLADA
/* don't remove this, as COLLADA exporting cannot be done through operators in render() callback. */
func = RNA_def_function(srna, "collada_export", "rna_Scene_collada_export");
+ RNA_def_function_flag(func, FUNC_NO_SELF | FUNC_USE_CONTEXT);
parm = RNA_def_string(func, "filepath", NULL, FILE_MAX, "File Path", "File path to write Collada file");
RNA_def_parameter_flags(parm, 0, PARM_REQUIRED);
RNA_def_property_subtype(parm, PROP_FILEPATH); /* allow non utf8 */