This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # simple script to batch convert collada to obj. | |
| # run as: | |
| # blender --background --python dae2obj.py -- input_dir output_dir | |
| import os | |
| import sys | |
| import glob | |
| import bpy | |
| if len(sys.argv) != 7: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| application: "true" | |
| version: 1 | |
| runtime: python27 | |
| api_version: 1 | |
| threadsafe: true | |
| handlers: | |
| - url: /.* | |
| script: true.app |
NewerOlder