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-07-05style cleanupCampbell Barton
2012-07-04fix error in node template and quiet warning.Campbell Barton
2012-07-01another fix for error in the view raycast templateCampbell Barton
2012-07-01fix for 2 errors in the templateCampbell Barton
2012-07-01python template for doing mouse ray casts to pick objects in the 3d viewport.Campbell Barton
2012-07-01style cleanup: remove '.' from docstring endings and use quotes for ↵Campbell Barton
descriptions.
2012-06-11minor fixesCampbell Barton
- new compositor could use uninitialized var - profile conversion could use uninitialized var - set better warnings for clang+cmake. - remove picky warnings from sphinx doc gen shell script.
2012-06-11template for python node operatorsCampbell Barton
2012-04-27fix for modal timer template, wasnt updated for changes to themes.Campbell Barton
2012-04-17move rip out into its own fileCampbell Barton
2012-04-17remove the poll function from import/export templatesCampbell Barton
2012-04-17add import operator python template.Campbell Barton
2012-04-11update for changes in the py apiCampbell Barton
2012-03-30updated add mesh template for bmesh. thanks to PKHG for initial conversion.Campbell Barton
2012-03-23patch [#30620] Wiki Quick Hack: Make Tooltip Text Colour ThemeableCampbell Barton
from luke frisken (lfrisken), with some edits. some tooltip colors weren't visible with different backgrounds, now the base tooltip color is used and tinted for python/alert/shortcuts etc. the tint colors are still hard coded.
2012-03-11bmesh py api: change .from_mesh() / .to_mesh() to be class methods of BMesh ↵Campbell Barton
rather than functions in the module. added example script which converts a mesh to a bmesh, edits and converts back again.
2012-02-08Correct mathutils documentation, also correct some python spelling errors ↵Campbell Barton
and add makefile target `check_spelling`
2012-01-14remove api from addon bl_info, was never used.Campbell Barton
2011-10-23rename user interface operator properties from 'op' to 'props'Campbell Barton
2011-10-17correct spelling errors in commentsCampbell Barton
2011-10-15- add template for defining custom driver functions.Campbell Barton
- comment unused assignments.
2011-09-19/release/scripts: Removed final points in UI strings and messages.Bastien Montagne
2011-08-22pep8 edits and change '!= None' to 'is not None'Campbell Barton
2011-08-19py style change only - make property definitions consistentCampbell Barton
2011-08-10Fix for incorrect parameter amount.Nathan Letwory
2011-08-10fix for error in templateCampbell Barton
2011-08-08use static sets rather then tuples, python optimizes this case.Campbell Barton
minor change to lightmap unpack collecting unique meshes.
2011-08-01fix for templateCampbell Barton
2011-07-29pep8 cleanup, also print message when attempting to run in animation player ↵Campbell Barton
mode.
2011-07-26set the development cycle to 'beta'.Campbell Barton
2011-07-26py api:Campbell Barton
- added menu templates - move template menu into the header of the text editor (so users will find more easily) - updated mathutils examples, switching the order of multiplication.
2011-07-17template for patch exporting objects in a scene.Campbell Barton
2011-05-16move generic bpy helper modules into bpy_extras.Campbell Barton
2011-04-29spelling corrections.Campbell Barton
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-04-01pep8 checker, mostly pedantic style changes but also found an error in ↵Campbell Barton
mesh_utils.mesh_linked_faces()
2011-03-28example operator that uses a timer.Campbell Barton
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-03-22py/api registration:Campbell Barton
move calls to the classes register/unregister function into register_class() / unregister_class() and add docs. also other minor changes: - remove face sorting keybinding, was Ctrl+Alt+F, this is quite and obscure feature and face order normally doesn't matter, so access from Face menu is enough. - add commented out call to mesh.validate() in addon template since its useful to correct incomplete meshes during development.
2011-02-27replace import *'s with named imports (using * is convenient for some ↵Campbell Barton
scripts but considered bad practice by python devs)
2011-02-16bugfix [#26094] Going to Bone Roll menu brings up python errorCampbell Barton
also correct for pep8 warnings.
2011-02-12update templates for registration changesCampbell Barton
2011-02-11minor python register changes.Campbell Barton
- KeyingSetInfo classes are now collected like Panels, Operators etc so bpy.utils.register_module() can be used. - move bpy.types.register() to bpy.utils.register_class
2011-02-09use update() rather then update_tag(), needed for making edge data.Campbell Barton
2011-02-07rename ID.update() --> update_tag() since this function only tags for ↵Campbell Barton
updating and scene.update() executes the update.
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-24fix [#25757] Torus script uses radians for rotation in panelCampbell Barton
2011-01-14add icons to show community vs official scripts as well as buttons to filter ↵Campbell Barton
by support level (currently all scripts default to community) note: we need better icons for this. also formatting edit for ply import.