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
2012-09-05change templates to call modal_handler_add() is called last since any errors ↵Campbell Barton
between calling this function and returning will crash blender. see [#30687]
2012-07-01style cleanup: remove '.' from docstring endings and use quotes for ↵Campbell Barton
descriptions.
2011-08-19py style change only - make property definitions consistentCampbell Barton
2011-08-08use static sets rather then tuples, python optimizes this case.Campbell Barton
minor change to lightmap unpack collecting unique meshes.
2011-02-12update templates for registration changesCampbell Barton
2011-01-26update to background_job template to use --factory-startup option.Campbell Barton
make all templates pep8 compliant.
2010-12-08pedantic word ordering change.Campbell Barton
- wm.add_modal_handler -> modal_handler_add - wm.add_fileselect -> fileselect_add - ob.add_shape_key -> shape_key_add - VIEW3D_OT_add_background_image -> VIEW3D_OT_background_image_add (same for remove) Also made 2 internal cmake vars hidden.
2010-10-03py/rna access to setting the header text - can be used in modal operators.Campbell Barton
eg: context.area.header_text_set("Some Text") included example in the view3d modal operator template.
2010-09-09replace self.properties.foo --> self.fooCampbell Barton
2010-09-02rna context renameCampbell Barton
* context.main & bpy.types.Main --> context.blend_data & bpy.types.BlendData * context.manager --> context.window_manager
2010-08-02remove register/unregister from templatesCampbell Barton
2010-07-08added imports to templatesCampbell Barton
2010-05-23replace context.areas.spaces[0] with context.space_dataCampbell Barton
2010-05-20view3d modal operator templateCampbell Barton