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-01-03Fix/Update 'import images as planes'.Bastien Montagne
* Fix setting frame_duration of image users (using op here is overkill, too). * Cycles is now perfectly able to use videos as textures! * Fix Cycles texures/images not getting fully set from op parameters.
2015-01-02Fix T43095: FBX import: refactor mesh 'layers' handling.Bastien Montagne
As usual with FBX, 'official' doc of SDK says one thing, actual FBX files produced by 'official' apps say something else. This time, it’s about mapping types - looks like it is actually 'valid' to have layer arrays shorter than actual number of relevant geometry elements (verts, edges, etc.). Don't know how the SDK handles those case, for now we simply stop filling blen's data layers once we have reached the end of fbx data layer's array. Since I was messing with this code, I also refactored it a bit to make it more generic. Also removed some optimization (like when stride is 1), we loose a few percents of speed, but nothing critical, and code is much cleaner and generic now. Only had to keep one exception - seems common to have Poly data with 'IndexToDirect' mapping without any mapping data - ***sigh***!!!
2014-12-29FBX export: Update to use correctly new Object.matrix_localBastien Montagne
This matrix is finally really local to the parent, no more only to the parent object. Only working with master rBfb7ff31315a1 and later. Also, fixed some missing matrix copying...
2014-12-25Fix typo in the previous commitSergey Sharybin
Please test patches before committing.
2014-12-25fix for 2.73 lookup tableBrendon Murphy
2014-12-24urgent fixes for 2.73 release, T42853, by kopias & meta-androctoBrendon Murphy
2014-12-21Fix T42975: FBX export: Do not export empty groups.v2.73-rc1Bastien Montagne
Thanks to Squashwell (Harrison Nordby) for org report and patch.
2014-12-20Fix T42912: FBX export: Parenting to bones was broken.Bastien Montagne
2014-12-19Fix importer adding needless empty to armatures.Bastien Montagne
2014-12-19FBX export: Fix stupid own error regarding matrix_parent_inverse...Bastien Montagne
2014-12-19FBX fix: only considered an object as deformed by an armature if parent type ↵Bastien Montagne
is 'ARMATURE'!
2014-12-12Fix T42683: do not crash on importing trashy FBX files.Bastien Montagne
Looks like FBX allows corruption in its 'database', like UIDs only existing in Connection table, and just ignores it. When in Rome...
2014-12-09Fix T42847: SVG importer: incorrectly imports valid SVG filesSergey Sharybin
Filled paths implies having final 'z' command to close the path.
2014-12-08mod add-on to be ready for "BMVert/Edge/FaceSeq.ensure_lookup_table now ↵beta-tester
needs to be called before int subscription" https://developer.blender.org/rB785b90d7efd048a3c6d586db3760ef31fb41b1ca
2014-12-08update rna -> manual map (for new manual)Campbell Barton
2014-12-08Fix for SVG groups not shown as layers in Inkscape. Also changed the add-onTamito Kajiyama
name (the old one was more like a description rather than a name).
2014-12-08D785: Freestyle integrated SVG export.Tamito Kajiyama
This patch implements SVG exporting to Freestyle. This feature is implemented as an add-on, and can be enabled in the user preferences (render section). Current features of the exporter include: * a user interface. * integration with the parameter editor and some of its settings, in particular: color, transparency, thickness, visibility, stroke caps, and dashes. * support for animation. * some extra attributes that make manipulation of the exporter's result in Inkscape easier. * the ability to export fills (a closed external contour with the underlying material's color). Differential revision: https://developer.blender.org/D785 Author: flokkievids (Folkert de Vries) Reviewed by: campbellbarton (Campbell Barton), sergey (Sergey Sharybin), dna (Dan Eicher), kjym3 (Tamito Kajiyama) Contributor: hva (francesco fantoni)
2014-12-05netrender: resolve issue with PROTOCOL_SSLv3Campbell Barton
This is no longer available for Debian, use SSLv23 as suggested.
2014-12-02Adding a couple of missing undo calls to the paint palette addon. Should ave ↵Daniel Salazar
done this a long time ago.
2014-11-27Fix T42730: FBX Binary Export - last frame of animations was not exported.Bastien Montagne
2014-11-25pie menu: add toggle quadview to 'more' menuCampbell Barton
also minor cleanup
2014-11-20FBX Import: Long time request/todo: assign first read action to object ↵Bastien Montagne
automatically. This does by no mean handle complex setups, but most common basic situations should be read correctly, and it's much more user-friendly!
2014-11-20FBX: Consistency with previous commit/fix, export armature objects as 'Root' ↵Bastien Montagne
FBX nodes.
2014-11-20Fix T42482: FBX import issue when scale is not 1.0.Bastien Montagne
Looks like FBX's 'Root' bone is same as our armature object?
2014-11-19Fix in Show Hotkey ListBartek Skorupa
Last change in keycap item broke ability to show hotkey list in Add On preferences. Now it's fixed.
2014-11-17Node Wrangler: Add Viewer Focus (from Sebastian Koenig)Greg Zaal
In the compositor, double click on the backdrop image to set the tile center of Viewer nodes to that point.
2014-11-16Fix EDL not loading video with audioCampbell Barton
thanks to Tintwotin
2014-11-16Cleanup: pep8/unused varsCampbell Barton
2014-11-13Fix T42586: Error when attempting to export FBX (non-invertible matrix).Bastien Montagne
Just use 'new' inverted_safe() everywhere we are not 100% sure the matrix is invertible...
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-11-10Final fix for 'division by zero' issues in sapling addon.Nikolaus Leopold
Review and minor cleanup by Bastien Montagne (mont29). Note: this addon would need a full complete style cleanup. :/ Differential Revision: D874
2014-11-09Copy Attributes addon: Make copy bone shape also copy the wireframe display ↵Daniel Salazar
option
2014-11-08Cleanup: redundant float conversionsCampbell Barton
2014-11-07Correction to own rBA63aba82339 - do not loop on objects in poll func!Bastien Montagne
Thanks to Campbell for the headup.
2014-11-07Fix T42375: Hallo Objet fracture tool error.Bastien Montagne
Add poll funcs to prevent using fracture op with non-mesh objects.
2014-11-06use identity compare for None/True/FalseCampbell Barton
2014-11-01Fix T42410: FBX Import: in **some** cases, se have to ignore pre/post ↵Bastien Montagne
rotation to get valid result. Yet another big breakthrough in FBX fantastic transformation handling! And yet another hacking parameter to get things imported better. Anyway, many thanks to artgolf1000 (Mingfen Wang) for finding that hack!
2014-10-30* Measure Panel - Version 0.9.1Martin Buerbaum
* Fixed value update in sidebar when drawing of lines was disabled. * Fixed display of wrong edge lengh in edit mode (context.active_object was wrong) * Added callback removal thanks to Daniel Ashby (hopefully this finally works :-D) https://gitorious.org/blender-scripts/blender-measure-panel-script/commit/5a265e7ceb87b01ab98256c4109a9777730242c8 * PEP8 fixes
2014-10-30align columns (for multi-drag)Campbell Barton
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-10-29Fix T42138: division by zero in sapling addonBastien Montagne
Note sapling code probably has other places where that kind of issues may happen, would need a full recheck, but that's outside of scope of basic bugfix. Patch by mangostaniko (Nikolaus Leopold) with minor changes, thanks! Revision: D844
2014-10-21Node Wrangler back in blender render and texturesBartek Skorupa
Node Wrangler now works in all node tree types. Previously it was disabled for texture nodes and for blender render material nodes because in those node types it was giving more errors than advantages. Now it works everywhere.
2014-10-21FIX T42252: Arcs are scaled correctly now. The scale factor now also accepts ↵Lukas Treyer
comas, not only points (comas are being replaced by points internally).
2014-10-21Proper error message for DXF versions below AC1009. Users get notified that ↵Lukas Treyer
DXF files with version below AC1009 (DXF12) are not supported. This is because there is not enough documentation available for those versions. Users with files that old are kindly requested to export their projects to newer versions. In some cases it might also work to just replace AC1006 (or anything below AC1009) with AC1009 directly in the DXF.
2014-10-21More fixes.Bastien Montagne
2014-10-21Fix T42328: Layer manager error when locking layer objects.Bastien Montagne
Own mistake in refactor prior to commit to 'main' addon repo... Also, some general cleanup (getting rid of stupid literal use of '20' as layer num everywhere!) and fix for 'separator' in layers UI.
2014-10-17Fix T42272: UI Layers Managment: UI enhancement.Bastien Montagne
Based on a patch by aditiapratama (Aditia A. Pratama).
2014-10-16Improved links creation in "Merge Nodes"Bartek Skorupa
Added special case when two nodes are selected and first selected has no output links and second does. Then relink the new node's output to preserve the chain.
2014-10-15Fix T42238: Some addons were trying to define shortcuts in background mode.Bastien Montagne