Hi,
I’m doing a Java tool that document blend files and generates documentation with all textures, linked files, missing files, zip projects, etc. This tool is very usefull for big projects with a lot of linked files.
My idea is to give this tool for free with source code.
I have used Java to get a full GUI, instead of a command line.
I haven’t problems to call blender from Java and get the information, but now I want to open a blend file, run a phyton and save the chages. My idea is something like this:
- Call blender with: blender.exe -b myblendfile.blend -P myphyton.py
- the phyton makes some changes in myblendfile.blend
- How can I save the changes in the blend file?
Any idea?
Antonio