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
2022-10-20BVH Import: fix scene FPS adjustmentSybren A. Stüvel
The `scene.render.fps` setting must be an integer nowadays. Instead of storing a `float` there, the rounded FPS is stored as integer, and the `fps_base` property is used to scale this to the desired frame rate.
2022-10-14Cleanup: fix typosBrecht Van Lommel
Contributed by luzpaz. Differential Revision: https://developer.blender.org/D16234
2022-06-03Cleanup: remove <pep8 compliant> commentCampbell Barton
This is no longer necessary, see: T98554.
2022-03-08Group FCurves by bone name when importing from FBX or BVHNils Hasler
When importing an animation from FBX or BVH the fcurves are currently shown as a very long list in the dope sheet. When you manually create a keyframe they are grouped by bone name, which is much more user friendly. This patch groups imported animations by bone name too. The changes are trivial: * In the FBX case it was falsely using the object name to group all curves rather than the bone name. * The BVH importer simply wasn't using the grouping feature at all. Reviewed By: mont29 Maniphest Tasks: T82472 Differential Revision: https://developer.blender.org/D11269
2022-02-11File headers: use SPDX license identifiersCampbell Barton
See T95597
2021-12-01Cleanup: trailing space & tabs to spacesCampbell Barton
2020-03-06Addons: Use Manual URL prefixAaron Carlisle
2020-03-05Fix IO Addond Manual LinksAaron Carlisle
2020-03-05Update 'bl_info' use 'doc_url' instead of 'wiki_url'Campbell Barton
2019-12-12i/o, part manual linksmeta-androcto
2019-09-03UI: New options layout for IO Add-onsJulian Eisel
Updates importers/exporters for the new file-browser design. They are now reorganized into sub-panels. Updated the Blender version requirement (won't be compatible with older Blender versions). Left the Add-on versions untouched, will leave that up to Authors to change.
2019-07-31Spelling fixes in comments and descriptions, patch by luzpazBrecht Van Lommel
Differential Revision: https://developer.blender.org/D5240
2019-07-15Update wiki_url to new manual pagesAaron Carlisle
2019-05-17Update for Depsgraph API changesPhilipp Oeser
Reviewers: sergey Differential Revision: https://developer.blender.org/D4883
2019-01-21Fix calls to object.transform_ apply due to API changesJacques Lucke
The parameter defaults were changed in rB0c829e8240eebd7ce4ed9d61f8682c0d6bf534f4
2018-11-08Update for changes in Blender's APICampbell Barton
2018-10-19Merge branch 'master' into blender2.8Brecht Van Lommel
2018-10-19Spelling fixes in comments and descriptions, patch by luzpaz.Brecht Van Lommel
Differential Revision: https://developer.blender.org/D3746
2018-10-07Merge branch 'master' into blender2.8Campbell Barton
2018-10-07Cleanup: minor BVH style editsCampbell Barton
2018-10-07Merge branch 'master' into blender2.8Campbell Barton
2018-10-06Cleanup: BVH import/exportCampbell Barton
- Use tuple unpacking. - Remove unused operator argument.
2018-10-03Cleanup: pep8Campbell Barton
2018-10-03Cleanup: use tuples for storing classesCampbell Barton
2018-10-03BVH: count no longer needs to be a keyword argCampbell Barton
2018-10-02port BVH format addon to Blender 2.8Jacques Lucke
Reviewers: brecht Differential Revision: https://developer.blender.org/D3757
2018-09-28Use orientation_helper decoratorDalai Felinto
The warnings in the console are getting on the way. May as well update the addons even if they are still mostly not ported to 2.8. We can probably ditch orientation_helper_factory altogether.
2018-09-062.8: update for x_ray and draw/display renaming.Brecht Van Lommel
2018-08-29Python / Cleanup: rename INFO_MT to TOPBAR_MT to reflect actual location.Brecht Van Lommel
2018-06-29Add missing add-on version metadataAaron Carlisle
Only default enabled addons Give each the version: 1.0.0
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