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
2017-02-22Use new api doc linksAaron Carlisle
Differential Revision: https://developer.blender.org/D2522
2017-01-31Freestyle: Use of the Fill Range by Selection operator in the mesh edit mode.Tamito Kajiyama
This revision extends the functionality of the "Fill Range by Selection" button in the "Distance from Camera/Object" modifiers so that only selected mesh vertices in the edit mode are taken into account (instead of considering all vertices when in the object mode) to compute the min & max distances from the reference. This will give users much finer control on the range values.
2017-01-30Freestyle: Fix (unreported) wrong distance calculation in the Fill Range by ↵Tamito Kajiyama
Selection operator. Distance calculation performed by the "Fill Range by Selection" button of the "Distance from Camera" color, alpha and thickness modifiers was incorrect, limiting the usefulness of the functionality. The problem was that the distance between the camera and individual vertex locations was calculated in the world space, which was inconsistent with the distance calculation done by the modifiers in the camera space.
2017-01-04Fix T50350: Quick Explode time frame problemDalai Felinto
The settings.frame_start rna was clamping frame start to frame end when frame start was bigger than frame end. The fix is simply to set frame end first
2016-12-28Tweak error message when external image editor launching fails.Bastien Montagne
Include idea that Blender may fail to launch it even if path is correct, in some cases (dear Windows...). Based on idea from @lijenstina and @blendify (D2349), thanks.
2016-12-13Small cleanup: Remove unused codeAaron Carlisle
This code has not been used for a long time if not ever. Most of the code was removed in rB1d3609262704f88c9e30b2cebdb236110b25cdc9 however, this was forgoten.
2016-12-06UI: add a message to indicate when using a modifier that wasn'tKévin Dietrich
compiled. This adds a short message to the smoke, remesh and boolean modifiers' UI when trying to use them when their compilation was turned off. This was already implemented for the fluid and ocean simulation modifiers. This also makes the 'quick fluid' and 'quick smoke' operator abort and report when trying to use them when unavailable.
2016-11-25Fix Torus default UV's offset outside 0-1 boundsCampbell Barton
When major/minor segments didn't fit evenly into 4, the UV's would move outside the UV bounds.
2016-11-25Remove eekadoodle workaround for add torusCampbell Barton
This is no longer needed since moving to MPoly/MLoop data structure. Also use 3x3 matrix for transforming instead of quaternion (slightly better performance).
2016-11-18Add Torus: avoid excessive attr accessCampbell Barton
2016-11-16Fix custom props not being handled correctly by manual/pyref UI menu entries.Bastien Montagne
2016-11-07Cycles: Refactor Device selection to allow individual GPU compute device ↵Lukas Stockner
selection Previously, it was only possible to choose a single GPU or all of that type (CUDA or OpenCL). Now, a toggle button is displayed for every device. These settings are tied to the PCI Bus ID of the devices, so they're consistent across hardware addition and removal (but not when swapping/moving cards). From the code perspective, the more important change is that now, the compute device properties are stored in the Addon preferences of the Cycles addon, instead of directly in the User Preferences. This allows for a cleaner implementation, removing the Cycles C API functions that were called by the RNA code to specify the enum items. Note that this change is neither backwards- nor forwards-compatible, but since it's only a User Preference no existing files are broken. Reviewers: #cycles, brecht Reviewed By: #cycles, brecht Subscribers: brecht, juicyfruit, mib2berlin, Blendify Differential Revision: https://developer.blender.org/D2338
2016-11-03Add 'Set From Faces' tool to custom split normals.Bastien Montagne
Feature request during bconf, makes sense to have it even as an hack for now, since this is probably one of the most common use cases. This should be redone in bmesh once we have proper custom noramls handling in edit mode...
2016-10-04Cleanup: Update links to online py API doc, and remove old commented stuff.Bastien Montagne
2016-10-01Add default UV coordinates for torus primitive.Sebastian Witt
Fixes T47489. Reviewed By: brecht
2016-09-16Fix T49349: Baking action doesnt bake multiple objects.Bastien Montagne
Tooltip was wrong here, it can only bake a single (active) object, 'only selected' option is for pose bones only...
2016-08-17Fix/add some tooltips to 'Object Align' operator options.Aaron Carlisle
2016-07-18Fix T48877: Lightmap Pack fails w/ 1-3 facesCampbell Barton
Unnecessary limit was applied.
2016-07-09Fix: Apply Scale to Delta Scale was doubling the effectJoshua Leung
2016-07-07Cleanup: use static sets, remove redundant copyCampbell Barton
2016-07-07Transforms to Delta TransformsJoshua Leung
* Added new operators to take the current transform value (loc/rot/scale or all 3) and convert/apply that transform to a corresponding delta transform value. By default, the transform value will be zeroed out again afterwards, so you don't end up with a double transform. * These operators can be found in the "Apply" menu (Ctrl-A) * The "Animated Transforms to Deltas" (which does a similar job, except it adjusts all existing animation data instead of the current transform) has also been moved to the Apply menu (it was in the Transform menu instead)
2016-06-22Remove module reloading for preview operatorsCampbell Barton
This can be kept on file level but best keep out of operator functions.
2016-06-06Fix T48579: RNA shadows new custom propertiesCampbell Barton
2016-04-20Fix T48086: Smart UV Project fails w/ small facesCampbell Barton
Epsilon for small faces was too large. Also suppress exception when all faces area are below the epsilon.
2016-04-12Correct UI messages: hyphenate 'add-ons'Campbell Barton
2016-03-29Fix T47967: Select next active fails in some casesCampbell Barton
For cases when there are multiple matches, find the closest match (with increasingly fuzzy tests) instead of failing.
2016-03-24UI: Presets for scene unitsCampbell Barton
This adds simple preset menu for unit scale scene property. D1799 by @alm
2016-03-22Cleanup: style (80-width)Campbell Barton
2016-03-03Docs: add comment on reloading modulesCampbell Barton
2016-03-02Cleanup: replace dict /w list for module reloadCampbell Barton
Never used keys and better reload in same order loaded.
2016-03-01Batch-previews generation: add option to control whether we save backup ↵Bastien Montagne
.blend1 file or not. Requested by Aaron Carlisle (@blendify) over IRC.
2016-02-26Fix for object align not using local view cursorCampbell Barton
2016-02-23UI: expose soft limits to custom-property editorCampbell Barton
Internally custom-id-properties used soft-limits, but there was no way to edit these.
2016-02-20Fix T44453: Exporting Keying Sets referencing node tree properties generates ↵Joshua Leung
invalid Python code/paths The problem is that node trees (such as the Material, Lamp, and Compositor node trees) are stored as "nested node trees" on the affected datablocks. They are particularly troublesome to deal with, as the are not easily identified, and also cannot be easily mapped back to the ID's which actually own them. As a result, the usual automated methods do not work when dealing with these!
2016-01-12BMesh: select next can now step over existing selectionCampbell Barton
2016-01-11Update add-on descriptionsCampbell Barton
Also replace addon -> add-on
2016-01-08BMesh: Select Previous, set active face now worksCampbell Barton
2016-01-07Correct check when no path can be foundCampbell Barton
2016-01-07BMesh: add select next/prev operatorCampbell Barton
This uses selection history to select the next vert/edge/face based on surrounding topology. Select previous just removes the last selected element. Uses key-bindings: Ctrl-Shift +/-
2016-01-07addon_utils: improve docstringsCampbell Barton
Also make error handler take the exception as its argument.
2016-01-06Save sys-info to file instead of a text blockCampbell Barton
The main reason for this change is this file is typically used when making bug reports, its best if users attach this file to reports directly.
2016-01-03Improve system info tipCampbell Barton
2015-12-18Add wrap argument to cycle wm utility funcsCampbell Barton
Now zooming text in the console and text editor isn't wrapping from large/small font size (annoying).
2015-12-11Use Python3.5's unpacking generalizationsCampbell Barton
2015-12-03Error in own recent commit, (left in debug test)Campbell Barton
2015-12-01Report error when removing presets failsCampbell Barton
2015-11-23UV Smart Project: restore 'Stretch to UV Bounds'Campbell Barton
This option wasn't exposed since 2.4x. D1622 by @candreacchio
2015-11-05Fix T46699: copy_prev_settings() gives misleading error message when ↵Bastien Montagne
previous version's config dir doesn't exist.
2015-09-10Fix T46048: Custom properties UI redraw issueCampbell Barton
Adding/removing custom properties didn't refresh elsewhere in the UI.
2015-09-01Cleanup: pep8Campbell Barton