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-12-28Fix [#33424] Inadequate bake action.Bastien Montagne
bake_action tries to make kind of a 'visual keying'... On one side, this is rather stupid when you keep constraints (in this case, keying actual loc/rot/scale transforms, i.e. matrix_basis, is enough, doing more would lead to unexpected behavior with some constraints). On the other one, making a good visual keying of bones is *really* tricky, so now using the new object's convert_space() func to compute that (when the user chooses to remove the constraints). Incidentally, this greatly simplifies the code of bake_action!
2012-10-08style cleanup: pep8Campbell Barton
2012-10-02correct spelling error in operator propertyCampbell Barton
2012-06-20style cleanupCampbell Barton
2012-05-26initialize bake action vars from contextCampbell Barton
2012-03-08Fixing several issues with keyingsets:Bastien Montagne
*Add a new idname to keyingsets, keeping name as label-only (using same string for both made lookup fail when using i18n other than english, as it tried to compare an untranslated static string id against a translated RNA name). Also adding a description string (can be helpful with custom keyingsets, imho). *Fixed a few other bugs related to that area (namely, you can’t deselect current keyingset from the shift-ctrl-alt-I popup menu, and insert/delete key ops were using a rather strange way to get chosen custom keyingset…). *Fixed UI code so that it always uses (RNA) enum, and simplified menu-creation code.
2012-02-08add bake action into animation menu - this nifty operator wasn't available ↵Campbell Barton
anywhere in the UI.
2012-02-08Correct mathutils documentation, also correct some python spelling errors ↵Campbell Barton
and add makefile target `check_spelling`
2012-01-02py scripts - replace bad uses of len(),Campbell Barton
checking if the collection is True is faster since it only checks if it has at least one item, rather then going over all items.
2011-12-12not all filepaths had the FILE_PATH subtype, this means using non utf8 paths ↵Campbell Barton
would give errors.
2011-10-20A big set of UI messages fixes and tweaks! No functional changes.Bastien Montagne
2011-10-17correct spelling errors in commentsCampbell Barton
2011-09-23- move animsys update operator into the anim.pyCampbell Barton
- move the data into animsys_refactor.py module so its not loaded on blender start.
2011-09-23remove bl_operators/nla.py, move bake_action function into ↵Campbell Barton
bpy_extras.anim_utils and bake operator into bl_operators/anim.py
2011-09-23SVN maintenance.Guillermo S. Romero
2011-09-222.6 Python UI files:Thomas Dinges
* Moved Operators from bl_ui into bl_operators. * Renamed HELP_OT_operator_cheat_sheet to WM_OT_operator_cheat_sheet.