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
path: root/mocap
AgeCommit message (Collapse)Author
2017-09-10Update for changes in BlenderCampbell Barton
2017-01-16Mocap Tools: context sensitive panels (armature selected) T50357meta-androcto
2015-12-02Update for changes to ray_castCampbell Barton
2015-04-10Cleanup: imports (formatting)Campbell Barton
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-16Fix T43259: Mocap Tools - Index out of range in "Samples to Beziers"Bastien Montagne
Main issue was that the addon did not handled 'sampled_points' at all. Now it converts such curves back to keyframes ones first. This might not be optimal, but avoids having too different read logic, and we cannot do anything to sampled fcurves from python anyway... Also did some other fixes/enhancements: * Fixed behavior with groups of fcurves when they did not have same keyframes (was giving full crappy results with odd offsets). * In `fitCubic()`, do not call `maxErrorAmount()` twice unless it's really needed. * Use 'fast' remove/insert of keyframes! * Use comprehensions to generate the init points data, saves some code lines and is usually quicker. Note performance gains (though mesurable) are not so fancy, we could probably optimize much more by avoiding to use that custom nD vector class and all (and probably even much much more by using numpy), most of the time being spent inside complex math helpers, but for now it should work as expected at least.
2014-11-10Fix T42476: Mocap addon: "Clean noise" didn't work properly.Bastien Montagne
Patch by sybrenstuvel (Sybren Stüvel), with own tweaking (main issue was, fcurve needs to be updated when you have changed their keyframes), thanks!
2014-10-29Fix a minor UI issue when object has animdata but no action, raise Blender ↵Bastien Montagne
version, add addon version.
2014-10-29Fix T42416: Mocap addon: auto-scale doesn't work.Sybren Stüvel
Also simplified the code. There were a few things that were explicitly coded while there are Python builtins that perform the same operation (and do it faster). Reviewed by mont29 (Bastien Montagne).
2014-05-21Maintenance to bl_info, remove redundant tracker URL'sCampbell Barton
2014-02-04Clean-up: Updated bl_info['tracker_url'] to developer.blender.org, some ↵CoDEmanX
minor other edits
2013-07-02Fix #35953: motion capture addon twist fix button not displayed correctly.Brecht Van Lommel
2012-12-19fix [#33615] bl_info (2,6,5,0) vs. (2,65,0) ?Campbell Barton
make addons blender versions consistent
2012-10-26Shorten those stupid names, these are labels, not tooltips!Bastien Montagne
2012-07-29style cleanupCampbell Barton
2012-07-03Spell and typo fixes.Bastien Montagne
2012-07-03Style edit (mostly), use """ for docstrings (not ''').Bastien Montagne
2012-06-30update for changes in the bmesh api Campbell Barton
2012-05-26patch [#31578] Standard-conformal sets for .report() and operator return valuesCampbell Barton
from Sebastian Nell (codemanx)
2012-04-14Fixed some UI message typos (spotted by Leon Cheung, thx).Bastien Montagne
2012-03-10Bugfixes after running regression tests (due to api changes)Benjy Cook
2012-03-03Bugfix to mocap addon following python api changeBenjy Cook
2012-02-27Various fixes to UI messages (among other things, all messages needed it ↵Bastien Montagne
should now be capitalized).
2012-01-14remove api field, was never used.Campbell Barton
2011-11-22More UI messages fixes and tweaks (found while translating in french).Bastien Montagne
2011-11-19indentation edits and copy pyrimid from contrib (where I had made some ↵Campbell Barton
edits), removed so this wont happen again.
2011-11-11minor formatting editsCampbell Barton
2011-10-28Minor UI fixes and tweaks.Bastien Montagne
Beware: in mocap/__init__.py there was a very long bl_label (> 100 chars), which was troncated in UI (at least, _update_msg.py produced a troncated msgid for it). That should be avoided, imho!
2011-10-17Bugfix for location retargeting and fixed some IK errorsBenjy Cook
2011-10-16fix error enabling mocap tools [#28933]Campbell Barton
2011-10-14Fixed call to bake_action (step->frame_step) after change in that functions ↵Benjy Cook
argument name
2011-09-26fix for x3d export and some minor pep8 editsCampbell Barton
2011-09-24Updated Mocap addon with fixes for latest api changes and some reported bugsBenjy Cook
2011-09-23update mocap utils for changes in blenders modulesCampbell Barton
2011-09-11pep8 edits & import cleanupCampbell Barton
2011-09-10cleanup unused varsCampbell Barton
2011-09-08pedantic pep8 editsCampbell Barton
2011-09-05replace tricky unicode chars for basic ascii.Campbell Barton
2011-08-30fix for error in the UI panelsCampbell Barton
2011-08-27Addon UI Cleanup, Part 2Thomas Dinges
* You only have to do layout.prop if you want 1 property, no need for row then! * Use col, row, sub as variable names, not colsub, rowsub, row2 etc please. * Povray Addon: Still used a lot of splits, you need no split when you only have 1 column!
2011-08-27Updated Wiki Link in Motion Capture Tools addonBenjy Cook
2011-08-26adding tracker urlBrendon Murphy
2011-08-26use slightly improved py syntaxCampbell Barton
2011-08-26explicit property imports, no functional changesCampbell Barton
2011-08-26Superficial pep8 editsCampbell Barton
2011-08-24committing Motion Capture Add-on - Final deliverable for GSoC project 2011Brendon Murphy
thanks to Benjy Cook well done!