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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-11-10Moar style & UI messages cleanup...Bastien Montagne
2015-11-09UI message fixes (no end point) and style cleanup ('' for data [like enums ↵Bastien Montagne
etc.], "" for text, in our py style).
2015-11-07BVH addon: updated wiki linkSybren A. Stüvel
The wiki page for the addon didn't exist. I wrote it and linked to it.
2015-11-07BVH import: better error handling & reportingSybren A. Stüvel
Errors are now reported to the user via Operator.report(), instead of either being printed to the terminal or raised as an exception. Updating the scene is now performed in separate functions, to make it easier to control execution flow in the case of broken BVH files. The 'filepath' argument to the import_bvh.load() function is no longer optional, and all following arguments are now keyword-only. Reviewers: campbellbarton Reviewed By: campbellbarton Differential Revision: https://developer.blender.org/D1609
2015-11-07BVH import: added option to update scene from the BVH.Sybren A. Stüvel
This commit adds two options to the BVH importer to adjust the scene's frame rate and duration to that of the BVH file. Since different BVHs have different frame rates, this makes it possible to import BVH files for inspection in Blender without having to manually open the BVH file to find its frame rate and duration. The scene is only extended to fit the BVH file, and never shortened. There already exists an option for the opposite, to scale the BVH animation data to the scene's frame rate. This did not take into account the scene.render.fps_base property, which is also fixed by this commit. This closes task T34919. Reviewers: campbellbarton Reviewed By: campbellbarton Maniphest Tasks: T34919 Differential Revision: https://developer.blender.org/D1608
2015-08-05Remove redundant subclassing of 'object'Campbell Barton
2015-04-10Cleanup: imports (formatting)Campbell Barton
2015-03-24Fix T44089: restore default orientation axes of each addons to stae before ↵Bastien Montagne
rBAbfbabc0592b8. Now using a class factory to allow customization of those defaults axes, still way less verbose than previous code!
2015-01-22Fix: replaced Python module "imp" with "implib"Sybren A. Stvel
Python 3.4.0 deprecated the "imp" module, and replaced it with "importlib". This changes imp.reload() into implib.reload(). Reviewers: campbellbarton Differential Revision: https://developer.blender.org/D1016
2015-01-14rename IOHelperOrientation -> OrientationHelperCampbell Barton
2015-01-14Use new IOHelperOrientation class to handle forward/up axes.Bastien Montagne
Helps ensuring common behavior, and saves quite a few lines of code, too...
2014-05-23Improve name for BVH settingCampbell Barton
2014-05-21Maintenance to bl_info, remove redundant tracker URL'sCampbell Barton
2013-11-19T35358: Fix for addons using raise without Exception object. TODO: Find ↵CoDEmanX
better way to terminate addons and inform user. More py 2.x leftovers in startup/bl_operators/uvcalc_*!
2013-03-22Minor UI message fix.Bastien Montagne
2013-03-19pep8 cleanupCampbell Barton
2013-03-19patch [#34683] BVH Importer, Faster import and option to use BVH animation ↵Campbell Barton
timing from Luke Tokheim (luketokheim)
2012-12-19fix [#33615] bl_info (2,6,5,0) vs. (2,65,0) ?Campbell Barton
make addons blender versions consistent
2012-10-06Fix for [#32792] BVH exporter crashes on rigs with multiple roots.Bastien Montagne
In this situation, the script creates a dummy root bone... But code was buggy (and import of non-rotating bones was too).
2012-07-03Style edit (mostly), use """ for docstrings (not ''').Bastien Montagne
2012-06-23update wiki version ro 2.6Brendon Murphy
finished
2012-04-03style cleanup: pep8Campbell Barton
2012-03-16Pedantic comment correctionSebastian Nell
2012-03-12maintain order from import to export (secondlife expects bone order to be ↵Campbell Barton
maintained). also use less confusing bone rotation matrix -> euler conversion on export.
2012-02-08code cleanup: style and typo - some edits to bypass the comments spell checker.Campbell Barton
2012-01-14remove api field, was never used.Campbell Barton
2011-12-31remove unneeded check for parentCampbell Barton
2011-10-04fix for various errors in scriptsCampbell Barton
2011-09-19/trunk: Removed final points in UI strings and messages.Bastien Montagne
Plus a few styling enhancements. [[Split portion of a mixed commit.]]
2011-08-26added X rotate 90d on import by default, still need to to the reverse on export.Campbell Barton
2011-08-24minor syntax change to addon headersCampbell Barton
2011-08-15bvh exportCampbell Barton
- add option to export root transform only (may help with secondlife compatibility) - operators are now pep8 compliant. - frame is set back to the original when export is done.
2011-07-18fix for invalid axis being allowed on import/exportCampbell Barton
2011-07-11py3.3 compat, __class__ is no longer in default namespaceCampbell Barton
2011-07-11cleanupCampbell Barton
- remove/comment unused variables - remove unused imports - fixed some bugs using incorrect variables
2011-05-28update for changes in blenders apiCampbell Barton
2011-05-16update for changes in blender module layout, also add global axis conversion ↵Campbell Barton
to FBX.
2011-05-14fix for importing euler rotations.Campbell Barton
2011-05-14support to export different rotation orders as well as pose bone native order.Campbell Barton
2011-03-19Updated Blender Version to 2.57 and api versionJonathan Smith
2011-03-10fix [#26423] Import a BVH, rotate it, imported frames are deletedCampbell Barton
was missing undo push as Joshua pointed out.
2011-02-27replace imports from *, considered bad practice by python devs.Campbell Barton
2011-02-21fix for [#26148] Anomaly in bvh importCampbell Barton
zero length bones had their tail offset in the wrong direction.
2011-02-11add in module register calls (first pass, batch replace, will test each ↵Campbell Barton
addon next).
2011-02-05update for changes in mathutuils.Campbell Barton
2011-01-22write \n even on windows so files can be compared between windows and linux ↵Campbell Barton
(for testing). most editors (besides notepad) will open these files without trouble.
2011-01-18correct bad spelling; 'indicies' --> 'indices'Campbell Barton
2011-01-14scripts from bf-blender which are now maintained in bf-extensions.Campbell Barton