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-08-13Added a small operator to ease mapping. When used, the hierarchy mapping ↵Benjy Cook
field is filled with the currently selected (pose) bone.
2011-08-13BGE Animations: Adding an option to let users choose whether or not to lock ↵Mitchell Stokes
animation updates to the framerate. If this option is enabled, animations are only updated at the same speed as the animation framerate. This can give a significant speed up in performance, but at the cost of smoothness in animations. I'm defaulting this behavior to off for now, which is the behavior seen in trunk.
2011-08-12More work on Advanced Retargeting and some stride bone bugsBenjy Cook
2011-08-12import common classes from bpy.types, saves ~1000 python getattrs on startup.Campbell Barton
2011-08-12add bpy.types as a module for convenient imports, eg:Campbell Barton
from bpy.types import Menu
2011-08-12sequencer todo: change sequence added back (C key)Campbell Barton
split up into operators - change effect input - change effect type - change file data Change plugin is not ported back yet.
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-113D Audio GSoC:Joerg Mueller
Adding a mono flag to mixdown non-mono sounds for 3D audio. * Added mono sound loading. * Bugfix: AUD_COMPARE_SPECS usage was wrong. * Bugfix: JOS resampler = instead of ==. * Bugfix: Change of a sound should apply settings in AUD_SequencerHandle. * Bugfix: Memory leak when canceling open sound operator.
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-10Fix for incorrect parameter amount.Nathan Letwory
2011-08-10fix for error in templateCampbell Barton
2011-08-09style change, harmless changes while looking into bug [#28196]Campbell Barton
2011-08-09fix [#28186] textboxes properties not animatableCampbell Barton
2011-08-09fix [#28191] Exception when enabling a script for a newer Blender buildCampbell Barton
2011-08-093D Audio GSoC:Joerg Mueller
Improved waveform drawing in the sequencer. * Drawing the waveform of a sequencer strip is now independent from whether the sound is cached or not. * Improved drawing of the waveform in the sequencer (especially speed!). * Making it possible to vertically zoom more in the sequencer to better see the waveform for lipsync. * Fixed a bug which crashed blender on loading a sound file via ffmpeg.
2011-08-09Blender 2.59:Thomas Dinges
* Update the readme file * Update link to release logs, they point to http://www.blender.org/development/release-logs/blender-259/ now
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-08report error on installign keymaps rather then raising an exception.Campbell Barton
2011-08-08quiet harmless py resource warning - file opened but not closed.Campbell Barton
2011-08-08use static sets rather then tuples, python optimizes this case.Campbell Barton
minor change to lightmap unpack collecting unique meshes.
2011-08-08- update X3D and FBX testing checksumsCampbell Barton
- building with GHOST/SDL now adds the PREFIX - image.external_edit operator errors out if the filepath isnt set (was annoying and loaded gimp while running tests)
2011-08-07Merging trunk up to r39145.Joerg Mueller
2011-08-07Sound clip NLA Strips for NexyonJoshua Leung
These are basically just for specifying when a speaker should fire off it's soundclip, and as such, many NLA operations are irrelevant for it. They can only be specified on object-level for speaker objects. I've still got some UI tweaks I'll need to work on in order for these to be able to be added even when the speaker doesn't have any NLA tracks yet. (EDIT: while typing this, I had an idea for how to do this, but that'll be for next commit). In the mean time, you'll need to add a single keyframe for the object, snowflake that action and delete the NLA strip before you can start editing.
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-063D Audio GSoC:Joerg Mueller
Mixdown functionality. * Mixdown possible via libsndfile and ffmpeg! * Fixed some ffmpeg deprecation warnings * Mixdown UI only shows working Container, Codec and Format combinations! * Minor bugs and warnings fixed
2011-08-06KEYMAP REFACTORINGBrecht Van Lommel
Diff Keymaps User edited keymaps now no longer override the builtin keymaps entirely, but rather save only the difference and reapply those changes. This means they can stay better in sync when the builtin keymaps change. The diff/patch algorithm is not perfect, but better for the common case where only a few items are changed rather than entire keymaps The main weakness is that if a builtin keymap item changes, user modification of that item may need to be redone in some cases. Keymap Editor The most noticeable change here is that there is no longer an "Edit" button for keymaps, all are editable immediately, but a "Restore" buttons shows for keymaps and items that have been edited. Shortcuts for addons can also be edited in the keymap editor. Addons Addons now should only modify the new addon keyconfiguration, the keymap items there will be added to the builtin ones for handling events, and not get lost when starting new files. Example code of register/unregister: km = wm.keyconfigs.addon.keymaps.new("3D View", space_type="VIEW_3D") km.keymap_items.new('my.operator', 'ESC', 'PRESS') km = wm.keyconfigs.addon.keymaps["3D View"] km.keymap_items.remove(km.keymap_items["my.operator"]) Compatibility The changes made are not forward compatible, i.e. if you save user preferences with newer versions, older versions will not have key configuration changes that were made.
2011-08-05move the ndof menu into the userpref's since it adjusts preferences, also ↵Campbell Barton
renamed VIEW3D_MT_ndof_settings -> USERPREF_MT_ndof_settings since it has no view3d specific settings.
2011-08-05Merge with trunk r39062Miika Hamalainen
2011-08-05Dynamic Paint:Miika Hamalainen
* Added a new "color spread" slider for "spread" effect to adjust how much colors get mixed. * Improved smudge behavior on "wet" paint. * Displace can now be set "incremental". This way it's added on top of previous displace. * Added "displace clamp" setting. You can use it to limit maximum amount of displace. * Fix: velocity data wasn't always initialized, this could lead to no effect at all or crash. * Fix: Vertex color rendering near zero alpha values was still incorrect.
2011-08-05get a tad more vertical space in the toolbar.Campbell Barton
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-04Dynamic Paint:Miika Hamalainen
* Smudge now works properly with substeps. * Velocity brush speed clamping now works for all brush types. * Small tweaking on velocity brush ui.
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-03Merge with trunk r39000Miika Hamalainen
2011-08-03Dynamic Paint:Miika Hamalainen
* Object velocity can now be used to determine brush influence and color. * Brushes can now be set to "smudge" existing paint. * Added new operators to easily add and remove surface output mesh data layers from Dynamic Paint ui. * Fixed drip effect algorithm to work properly on forces pointing towards surface. * Adjusted drip effect speed. * Drip effect can now use canvas velocity and acceleration to influence drip direction. * Fixed texture mapping for material enabled brushes. * "Object Center" type brushes can now use "material color" as well. * Improved surface partitioning grid generation algorithm. * Fixed possible invalid brush collision detection when OpenMP enabled. * Fixed incorrect random sized particle displace/wave influence. * Fixed "Object Center" brush color ramp falloff. * Fixed invalid zero alpha sampling when rendering vertex colors. * Lots of smaller tweaking.
2011-08-03Fixed issue with IK toggle buttons and added operators for the new limit ↵Benjy Cook
rotation functions
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
2011-08-03Add .py extension if it is missing from keymap file.Kent Mein
This is for bug #28141 While not really a bug, it makes it a lot easyer to use if it has the exension. (Isn't hidden from the user when they try to load it...) Kent
2011-08-03Speaker Object icons, thanks Phil Gosch.Joerg Mueller
2011-08-03* Merging trunk up to r38981.Joerg Mueller
* Fixing a minor issue in a previous commit.
2011-08-033D Audio GSoC:Joerg Mueller
* Minor audaspace library improvements. * Considering location, velocity and orientation in AUD_SequencerReader and AUD_SequencerHandle. * Bugfix: Maximum and Minimum volume weren't used before in the software device. * Bugfix: Adding speaker objects via info space crashed. * Listener settings now get updated in the audio system.