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
2018-07-15Merge branch 'master' into blender2.8Brecht Van Lommel
2018-07-15Cycles: add voronoi features and distance settings from Blender.charlie
Features to get the 2nd, 3rd, 4th closest point instead of the closest, and various distance metrics. No viewport/Eevee support yet. Patch by Michel Anders, Charlie Jolly and Brecht Van Lommel. Differential Revision: https://developer.blender.org/D3503
2018-07-15WM: rename manipulator to gizmo internallyCampbell Barton
2018-07-15WM: rename files, manipulator -> gizmoCampbell Barton
Edit doxy files and header guards only.
2018-07-14UI: rename manipulator to gizmoCampbell Barton
This is a common, short, distinctive term often used for this purpose. Changes to internal API's still needed.
2018-07-14UI: Capital letters for propertyPablo Vazquez
2018-07-13UI: remove space/region from popover argsCampbell Barton
Instead use global panel-type list.
2018-07-13WM: register global list of panel typesCampbell Barton
Allows simple lookups for popovers.
2018-07-13Merge branch 'master' into blender2.8Campbell Barton
2018-07-13Nodes: add sqrt, ceil, floor and fract to math nodes.Charlie Jolly
This works for Cycles, Eevee, texture nodes and compositing. It helps to reduce the number of math nodes required in various node setups. Differential Revision: https://developer.blender.org/D3537
2018-07-12Merge branch 'master' into blender2.8Campbell Barton
2018-07-12Fix T55949: increase color management exposure hard range.Brecht Van Lommel
2018-07-12UI: 4-state icon for view visibility popoverCampbell Barton
This is a quick way to see if some of the object types in the scene are hidden or unselected. Icon design may change.
2018-07-11Manipulator: expose use_select_background via RNACampbell Barton
2018-07-113D View: option not to draw center dotsCampbell Barton
While this is a fairly obscure option, it means it's possible to disable all overlays except for any overlays the users wants to see.
2018-07-11Fix T55915 DOF Number of blades wrong logicClément Foucault
Thanks @kostex for the fix.
2018-07-11Numeric Input: preference to default to advancedCampbell Barton
2018-07-11Merge branch 'master' into blender2.8Bastien Montagne
2018-07-11Fix T55912: saving Viewer Node image error.Bastien Montagne
Images from viewer node needs the lock parameter...
2018-07-11Cleanup: simplify RNA namesCampbell Barton
2018-07-11Manipulator: changes for overlay optionsCampbell Barton
There are now 3 categories in the overlay popover: - Navigation - Active (camera, lamp... etc) - Tool (manipulator) The user preference for mini axis now controls if the mini axis displays minimal or a full-interactive widget. Part of design: T55863
2018-07-103D View: option to hide object overlaysCampbell Barton
This hides extra wires and details you may want to disable, name may be changed.
2018-07-10Image: remove fields option for image sequencesCampbell Barton
Remove support for loading interlaced image sequences because its less common now to record interlaced video, the option to de-interlace video on load remains.
2018-07-10Eevee: LightCache: Initial ImplementationClément Foucault
This separate probe rendering from viewport rendering, making possible to run the baking in another thread (non blocking and faster). The baked lighting is saved in the blend file. Nothing needs to be recomputed on load. There is a few missing bits / bugs: - Cache cannot be saved to disk as a separate file, it is saved in the DNA for now making file larger and memory usage higher. - Auto update only cubemaps does update the grids (bug). - Probes cannot be updated individually (considered as dynamic). - Light Cache cannot be (re)generated during render.
2018-07-103D View: overlay option to show bonesCampbell Barton
Allows drawing motion paths without the bones.
2018-07-10Ocean Modifier: refactored the delayed-refresh approachSybren A. Stüvel
The approach of setting 'refresh' flags on the modifier, and performing the associated actions when the modifier is being evaluated, is a bad one. Instead, we use the separation of the original and the evaluated copy to 'refresh' certain things (because they simply aren't set at all on the original). Other actions are now done directly with BKE_ocean_xxx functions on the original data, intead of during evaluation.
2018-07-10Fix 3D cursor updateCampbell Barton
Changing the values for the 3D cursor wasn't updating.
2018-07-10Cleanup: styleCampbell Barton
2018-07-10Fix T55879: Crash setting render presetsCampbell Barton
Any RNA using 'rna_SceneCamera_update' crashed when set from Python.
2018-07-10UI: Cleanup - Remove Show Panel Header and BackgroundPablo Vazquez
A toggle for this is no longer required now that both header and background colors are RGBA (disabling Show Header is the same setting the alpha to 0). Thanks Brecht for reviewing!
2018-07-10Fix T55776: crash with multiple windows and reload new.Brecht Van Lommel
There were a number of cases where immActivate() and immDeactivate() could get out of sync, causing crashes due to using a freed mutex lock. Refactor the code now to hopefully avoid this always.
2018-07-06Viewport: in Lookdev shading, disable scene lights and world by default.Brecht Van Lommel
Now we light with just a user defined HDRI by default, which is useful for material setup and texture painting and lighting without having to set up any scene lights. Previously it would use the scene world without lights by default, which in some files is just black.
2018-07-06Cleanup: remove unused shader node compatibility flag.Brecht Van Lommel
No longer needed after Blender Internal removal and Eevee replacing the Cycles GLSL shading nodes.
2018-07-06UI/Python: rename Lamps to Lights, to follow more standard terminology.Brecht Van Lommel
Internally it's still mostly named lamps, though some modules like Cycles were already calling them lights.
2018-07-063D View: support object type visibility/selectionCampbell Barton
Trying to have a single option for this is too likely to be insufficient in some cases. Instead, support object type visibility & selectability per view-port.
2018-07-06UI: disable broken horizontal properties editor alignment.Brecht Van Lommel
2018-07-06Merge remote-tracking branch 'origin/master' into blender2.8Sybren A. Stüvel
2018-07-06Ocean Modifier: removed unused refresh flagsSybren A. Stüvel
The flags were set and cleared correctly, but nothing was actually reading them.
2018-07-05Cleanup: flag checksCampbell Barton
2018-07-05Merge branch 'master' into blender2.8Campbell Barton
2018-07-05RNA: correct callback typeCampbell Barton
Missed when changing callbacks from int to bool type.
2018-07-05RNA: use is_dirty prefix for checking updatesCampbell Barton
Common convention for read-only update checks
2018-07-05Draw Manager: simplify object mask usageCampbell Barton
Remove flag defines, use object types directly.
2018-07-05UI: add separators in properties editor header tabs.Brecht Van Lommel
2018-07-05Shaders: add target setting to material output node.Brecht Van Lommel
This makes it possible to have a single shading nodetree that contains separate Cycles and Eevee shaders. By default the target is set to All so shaders are shared.
2018-07-05Refactored into a single optionJeroen Bakker
Technical all options are still there for finetuning.
2018-07-05Refactor: SHOW->HIDEJeroen Bakker
HIDE needs less code also in the future, RNA still uses SHOW.
2018-07-05Overlay: enable/disable drawing of specific object types.Jeroen Bakker
This patch will allow users to customize what object types will be drawn by the object mode overlay. It supports: Empties, Lamps, Cameras, Speakers, Armatures and Lightprobes. It currently does not support Physics objects due to the overlap it has with other objects types. Also be aware that in pose mode the armature is drawn, but not by the object mode overlay Reviewers: campbellbarton Tags: #bf_blender_2.8 Differential Revision: https://developer.blender.org/D3524
2018-07-05Revert "Overlay: enable/disable drawing of specific object types."Jeroen Bakker
This reverts commit f7ec70895c78900db8e7db88d3713ebb9aa62730.
2018-07-05Overlay: enable/disable drawing of specific object types.Jeroen Bakker
Added a option to the overlay popover that controls the visibility of non-renderable objects like lamps, cameras, speakers, armatures, curves empties and force fields. After discussion we went for a single option with more detailed check in the object_mode draw engine. Differential Revision: https://developer.blender.org/D3524