Blender Git Commit Log

All Blender Git commits.

Page: 367 / 8462

August 5, 2021, 08:21 (GMT)
Fix T90256: faces are flat shaded in edit mode with auto smooth

Regression in 39b2a7bb7e815e051348bf5c5ec777d091324164.
August 5, 2021, 08:06 (GMT)
Fix compiler warnings: unused variables
August 5, 2021, 06:54 (GMT)
Cleanup: remove redundant parenthesis
August 5, 2021, 06:44 (GMT)
Fix slicing with negative indices

Negative indices that remained negative after adding the sequence length
caused incorrect slicing.

With the default scene for example:

bpy.context.scene.objects[-4:2]

Gave a different result to:

tuple(bpy.context.scene.objects)[-4:2]

Clamp indices above zero so loops that step forward works as intended.
August 5, 2021, 06:44 (GMT)
Fix T89450: Crash slicing BMEditSelSeq

Slicing with indices greater than the length of the sequence would crash.
August 5, 2021, 05:44 (GMT)
adaptive_cloth: fix: mesh: flip edge: edge might already exist

It is possible that there might already be an edge between ov1 and ov2
so it is best to not create a new edge between those because edges
between verts should always be unique for all the algorithms to work
correctly.

It is a case that shouldn't show up too often but when it does, it
will be interesting to see what happens in the static remeshing
part. The number of faces remains the same but number of edges can
change (reduce only).
Revision 450593d by Ankit Meel (master)
August 5, 2021, 05:30 (GMT)
Cleanup: Fix Clang braced-scalar-init warning
Revision d3d4be1 by Peter Kim (master)
August 5, 2021, 04:14 (GMT)
XR: Action Binding Improvements

Provides several important improvements to the runtime action
bindings operation and internal API.

Moves input-specific action data (input thresholds, input regions,
pose offsets/spaces) from actions to more granular action bindings.
This allows a single action to be mapped to a variety of inputs,
without having to share a single input threshold, region, or space.

Also removes the need for action space creation API, as spaces for
pose actions will be automatically created with the bindings.

The correct action data for the current inputs is set by calling
xrGetCurrentInteractionProfile() to get the current profile and then
retrieving the corresponding mapped data.

Does not bring about any changes for users since only internal
runtime functionality is currently affected.

Reviewed By: Julian Eisel

Differential Revision: https://developer.blender.org/D12077
August 5, 2021, 03:40 (GMT)
Fixed error in python UI code, and error in caching acceleration.
August 5, 2021, 02:40 (GMT)
Merge branch 'master' into soc-2021-curves
August 5, 2021, 02:37 (GMT)
Select adjacent vertices when moving a segment
August 5, 2021, 02:03 (GMT)
Cleanup: tab indentation for CMake / GNUmakefile
August 5, 2021, 02:03 (GMT)
Cleanup: license headers

These were removed globally in 65ec7ec524e667ec95ce947a95f6273088dffee6.

Some files re-introduced these conventions since.
August 5, 2021, 01:46 (GMT)
Enable OmniPanel addon on startup

Added C calls to enable the OmniPanel addon
on startup.
August 5, 2021, 01:32 (GMT)
Windows: Add icons and icons_geom to make.bat

This adds support for building the icons from make.bat
unlike bash there is no passing environment variables
on the command line.

The scripts go out of their way to locate both blender
and inkscape however if they are not found, the user is
given a helpful error message telling them how to set
the variables.

Although some extra help can be given there, if your
normal build is a 2019 full build running

`make 2019 full icons`

will help it find the blender executable as well.

finally if you know the name of your build folder
running

`make builddir build_windows_Lite_x64_vc16_Release icons`

will also work, if all fails you can point directly to
the blender executable by running

`set BLENDER_BIN=c:whereblenderlivesblender.exe`

before running `make icons` or `make icons_geom`

The python scripts needed some small modifications since
without the PATHEXT, SystemRoot and SystemDrive
environment variables python will not initialize properly
on windows. (Not blender related, even mainline python
won't start without those)
August 5, 2021, 01:31 (GMT)
Pull latest addons_contrib umm_add_on branch

This update includes the OmniPanel addon.
August 5, 2021, 00:25 (GMT)
PyDoc: Update GPU Example of `draw_view3d`

This function was changed in rBc8004ab4078c98c54a70113c12bbb186403e90cf but didnt update the example.

Part of T84227
August 4, 2021, 23:26 (GMT)
PyDoc: Improve description of texture.evaluate

Inspired by the old 2.49 docs: https://docs.blender.org/api/249PythonDoc/Texture.Texture-class.html#evaluate
August 4, 2021, 23:24 (GMT)
Cleanup: make format
August 4, 2021, 23:13 (GMT)
Merge branch 'master' into temp-geometry-nodes-fields-prototype
By: Miika HämäläinenLast update: Nov-07-2014 14:18MiikaHweb | 2003-2021