D.Giunchi
D.Giunchi

Reputation: 1960

blender import/export script

I should create a python script for Blender that imports obj and exports obj removing all texture sections. I never used blender, is there a good tutorial for scratch the surface and achieve this simple task?

thank you

Upvotes: 4

Views: 13493

Answers (1)

sambler
sambler

Reputation: 7079

The blender python api website includes several tutorials to learn using python in blender. You can find details of the obj importer and exporter options. The obj import/export is handled by a python addon that is included with blender.

You could start with something as simple as -

import bpy,os
for f in os.listdir('/path/to/use'):
    bpy.ops.import_scene.obj(filepath=f)
    bpy.ops.export_scene.obj(filepath=f,use_materials=False)

If you need more help, blender has it's own SE site that is better for blender specific scripting.

Upvotes: 5

Related Questions