Changeset View
Changeset View
Standalone View
Standalone View
doc/blender_file_format/BlendFileDnaExporter_25.py
| Show First 20 Lines • Show All 377 Lines • ▼ Show 20 Lines | def WriteToCSS(self, handle): | ||||
| handle.write(css) | handle.write(css) | ||||
| def usage(): | def usage(): | ||||
| print("\nUsage: \n\tblender2.5 --background -noaudio --python BlendFileDnaExporter_25.py [-- [options]]") | print("\nUsage: \n\tblender2.5 --background -noaudio --python BlendFileDnaExporter_25.py [-- [options]]") | ||||
| print("Options:") | print("Options:") | ||||
| print("\t--dna-keep-blend: doesn't delete the produced blend file DNA export to html") | print("\t--dna-keep-blend: doesn't delete the produced blend file DNA export to html") | ||||
| print("\t--dna-debug: sets the logging level to DEBUG (lots of additional info)") | print("\t--dna-debug: sets the logging level to DEBUG (lots of additional info)") | ||||
| print("\t--dna-versioned saves version informations in the html and blend filenames") | print("\t--dna-versioned saves version information in the html and blend filenames") | ||||
| print("\t--dna-overwrite-css overwrite dna.css, useful when modifying css in the script") | print("\t--dna-overwrite-css overwrite dna.css, useful when modifying css in the script") | ||||
| print("Examples:") | print("Examples:") | ||||
| print("\tdefault: % blender2.5 --background -noaudio --python BlendFileDnaExporter_25.py") | print("\tdefault: % blender2.5 --background -noaudio --python BlendFileDnaExporter_25.py") | ||||
| print("\twith options: % blender2.5 --background -noaudio --python BlendFileDnaExporter_25.py -- --dna-keep-blend --dna-debug\n") | print("\twith options: % blender2.5 --background -noaudio --python BlendFileDnaExporter_25.py -- --dna-keep-blend --dna-debug\n") | ||||
| ###################################################### | ###################################################### | ||||
| # Main | # Main | ||||
| ▲ Show 20 Lines • Show All 83 Lines • Show Last 20 Lines | |||||