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
2011-10-23minor formatting edits (80 char width)Campbell Barton
2011-10-17correct spelling errors in commentsCampbell Barton
2011-10-11py api: bpy_extras.io_utils.path_reference() - added library argument so ↵Campbell Barton
exporters get the paths of linked images right.
2011-10-11- bpy.path.abspath(), added optional library argument since any paths from ↵Campbell Barton
linked datablocks are relative to this, not the blend files path, this saves kludgy path code wherever libraries may be used. - Image "Edit Externally" operator can now edit relative library images. also minor edits to navmesh.
2011-10-05filter RNA classes for translation (removes over 1300 lines from messages.txt)Campbell Barton
- omit operators tagged as INTERNAL - omit classes for internal use: Event, Context, Property, Function, Window.
2011-10-02- fix for keymap test operatorCampbell Barton
- cleanup pep8 warnings and unused py imports py pep8 cleanup
2011-09-26pep8 cleanup and fix for keymap test operator from my own recent fix.Campbell Barton
2011-09-26fix for keymap export, move functions common for the UI and operators into ↵Campbell Barton
bpy_extras.keymap_utils
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-23minor edits to recent fix for addonsCampbell Barton
2011-09-23* Some more fixes for recent move operator commit. Thomas Dinges
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-19/release/scripts: Removed final points in UI strings and messages.Bastien Montagne
2011-09-15- include enum names and descriptions in sphinx generated documentationCampbell Barton
- add descriptions for operator bl_options
2011-09-08correct fix for #28558Campbell Barton
2011-09-08fix [#28558] more edge_keys than edgesCampbell Barton
2011-08-30minor edits, pep8 - also correct float -> double promotion for blf.Campbell Barton
2011-08-30* Merge trunk up to r39790.soc-2011-pepperJoerg Mueller
* Subversion bump (also for init_userdef_do_versions). * Minor fix for compilation without ffmpeg.
2011-08-28* Removing mocap GSoC (is an addon already).Joerg Mueller
* Fixing ffmpeg-0.8 errors. * Fixing Ketsji paths. * Removing DoSound from BGE. * Fixing audio scene update to use only current scene objects.
2011-08-26correct missing bpy doc references.Campbell Barton
2011-08-25executing operators that changed the context from the console wasnt ↵Campbell Barton
returning an operator set/flag.
2011-08-23Merging trunk up to r39637.Joerg Mueller
2011-08-22pep8 edits and change '!= None' to 'is not None'Campbell Barton
2011-08-17Commenting and pep8 complianceBenjy Cook
2011-08-16Small change that improves usability to advanced retargetingBenjy Cook
2011-08-16Merging trunk up to r39447.Joerg Mueller
2011-08-15Added option to each retargeted bone to fix twist issues caused by variable ↵Benjy Cook
bone rolls and unknown axis differences. Also made retarget operator a single undo
2011-08-15Small fix to autoloop due to changes in utility function by animation stitchingBenjy Cook
2011-08-15py api - optional sep argument for bpy_extra.io_utils.unique_name() since ↵Campbell Barton
for some formats '.' is an invalid char.
2011-08-13Added argument to retargeting - step size. Allows retargeting every other ↵Benjy Cook
'step' frame, useful for previewing or faster retargeting.
2011-08-12More work on Advanced Retargeting and some stride bone bugsBenjy Cook
2011-08-12add bpy.types as a module for convenient imports, eg:Campbell Barton
from bpy.types import Menu
2011-08-11Additional work on animation stitching, now with auto-guess capability. Only ↵Benjy Cook
a few bugs left, regarding animations translation
2011-08-11Optimizations following intensive profiling of retarget and other lengthy ↵Benjy Cook
functions. Retargeting now takes ~30% less time
2011-08-11Advanced Retargeting option: If the end user armature is complex, on the ↵Benjy Cook
level of Sintel/Mancandy rigs, the user is requested to mark Advanced Retargeting, and constraints will be semi automatically configured to retarget the animation and then Retargeting will bake and remove these constraints
2011-08-11svn merge -r39145:39286 https://svn.blender.org/svnroot/bf-blender/trunk/blenderCampbell Barton
2011-08-11Mostly finished implementation of animation stitching, with lock bone ↵Benjy Cook
functionality, allowing the user to choose a bone that maintains its position during the blend
2011-08-11Fix for previous commit, now a fake user flag is added when switching ↵Benjy Cook
between retargeted animations, so they don't get lost on save
2011-08-10Initial programming of stitch animation operator. WIPBenjy Cook
2011-08-10Continued changes to storing of retargeted animation data, making it ↵Benjy Cook
possible to easily switch between all retargeted clips, and stitch them with the future operator
2011-08-08Created property systems for multiple retargets on a single armature, for ↵Benjy Cook
this type of use and animation stitching. Also contains some placeholder UI and code for animation stitching.
2011-08-08use static sets rather then tuples, python optimizes this case.Campbell Barton
minor change to lightmap unpack collecting unique meshes.
2011-08-07Merging trunk up to r39145.Joerg Mueller
2011-08-07fix [#28172] Cannot restore Add-ons tab in user preferences after a failed ↵Campbell Barton
attempt to install an add-on. non utf8 addons would make the addon UI vanish, now give a message in the console and UI.
2011-08-05Post Retarget fixes - added an Update Constraints button, that recalculates ↵Benjy Cook
all fixes. Useful for when the user makes some external change to the animation
2011-08-05Updated Vector/Matrix multiplication to new order as required by mathutilsBenjy Cook
2011-08-05Small fix to Path Editing - now mute's original forward motion curveBenjy Cook
2011-08-04Initial coding of path editing operator. Still needs some work, but all the ↵Benjy Cook
basic functionality is there. Select a path and the stride bone (as active) and it will reparameterize the path to propel the armature forward in the same magnitude of the original
2011-08-03Added functions for toggling DOF Constraints on user rig based on range of ↵Benjy Cook
motion in motion capture clip. Limit Rotation constraints are added based on the min and max of each DOF of each bone in its local space
2011-08-03Fixed coding style to conform to pep8Benjy Cook