Inverting 1 to 0 and back with nodes
In order to make an inversion of the boolean value: invert 1 to 0 and 0 back to 1, we only need to use two Math nodes in the Blender node editor.
In order to make an inversion of the boolean value: invert 1 to 0 and 0 back to 1, we only need to use two Math nodes in the Blender node editor.
We can quickly transfer the local coordinate system from one object to another by joining and next separating them, or by performing the “Align to Transform Orientation” operation with the “Affect only Origins” option turned on.
Transferring the local coordinate system from one object to anotherRead More »
To select all objects in a collection with the Blender Python API, we need to walk through the list of these objects and call the “select_set” method for each of them, specifying the “True” value in the parameter.
Blender is developing intensively and new versions of the program are released quite quickly. In this case, compatibility often suffers – when we open a project created in earlier versions of Blender, it can be opened not correctly. Sometimes this happens because Blender stores all user interface (UI) settings and options in every .blend file. Opening a project with the Load UI option unchecked can help.
In this case, Blender only loads the project itself, without any UI settings that may have changed in the current version.
It is impossible to track the switching between object and edit mode by the user with common handlers in Blender, there are no handlers for such event type in the bpy.app.handlers. However, this can be tracked through the Message Bus.
Tracking when the user switching between object and edit modeRead More »
foreach_set is a convenient wrapper in the Blender Python API for quickly setting the desired value for each element of the bpy_prop_collection type. However, when using this function, script developers sometimes run into an error.
To make a spring with Geometry Nodes in Blender, all we need to do is use some vector math. Taking a straight line as a basis, we can move its points in accordance with the circle equation so that in the end they form a spring.
Blender add-on “Image Comparison Slider” updated to v. 1.1.0.
MatCap is a way to simulate material and ambient lighting settings in a scene with only one single image. Most often, matcaps are used to control an object shape when sculpting, but they are good for working with shapes in any kind of modeling.