Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-04-10- background job style cleanup.Campbell Barton
- assert if material assignment is called with lib. (so the callers can be corrected). - correct example docs
2011-03-26print guarded-alloc memory leaks on blenderplayer exit.Campbell Barton
2011-03-26optparse module is deprecated, use new argparse module in background job ↵Campbell Barton
template. correction to example in doc too.
2011-02-01Script to test import operators, so a single command can execute an operator ↵Campbell Barton
on all files in a directory and optionally save out blend files for inspection. This comes in handy for testing importers against 100's of files, quickly showing breakages and easier to setup then unit tests. Example usage: blender.bin --background --python source/tests/batch_import.py -- \ --operator="bpy.ops.import_scene.obj" \ --path="/data/testfiles/obj" \ --match="*.obj" \ --start=0 --end=50 \ --save_path="/tmp/test" Also found my name was spelt wrong in some places :)
2011-01-26update to background_job template to use --factory-startup option.Campbell Barton
make all templates pep8 compliant.
2011-01-11- bpy.data.lamps.new() now takes a type argument since lamp type also sets ↵Campbell Barton
class type this avoids needing to use ugly lamp.type_recast() after changing type. - default vertex color layer name was UTTex when added from python.
2010-12-16- fix [#25246] export default scene to X3D crashes exporter, own fault but ↵Campbell Barton
also made sure all colors are now clamped and noticed 3D text was not being exported. - de-duplicated 'object_type_items' enum, text was known as TEXT in one, FONT in another.
2010-12-11ported back background_job template from 2.4x, useful for automating blender ↵Campbell Barton
to generate scenes in background mode.