5.0

Blender add-on development – manifest file

Starting with Blender 4.5, the developers fundamentally changed the approach to developing Blender add-ons. Now – Extensions, rather than Add-ons. The old add-on format still works correctly, and if you don’t intend to publish your add-ons in the official Blender Extensions library, you don’t need to change anything. However, if you want your add-ons to be supported by Blender in the future, it’s a good idea to make some changes now. One such improvement is the creation of a manifest file.

Changes in node tree creation for compositor in Blender 5.0

In Blender 4.5 and earlier, the compositor only supported one node tree per scene. To initialize it in the compositor, we had to on the “Use Nodes” checkbox in the area header. The node tree was created automatically and immediately connected to the scene. Starting with Blender 5.0, the developers introduced the ability to create multiple node tree variants for the compositor. The method for creating node trees in the compositor has also changed.

Getting an on-screen bounding box for an object in Blender

For calculating simplified interactions between objects, bounding boxes are typically used—parallelepipeds whose volume completely encloses the entire mesh geometry. Because such a box has and uses only six points for calculations, unlike the mesh itself, which can have millions of points, all calculations are very fast. Every object has a built-in bounding box, and its display can be enabled in the mesh’s parameters. This bounding box operates in 3D scene space, but there could be some cases when we need to control object interactions in 2D screen space. There are no pre-calculated bounding boxes for the viewport, but we can get one ourselves using the Blender Python API.

Disconnecting strips in Blender VSE

Starting with version 4.5, when adding new strips to the Blender video screen editor (VSE), the strip is added immediately connected to an audio track. This can be more convenient for working with the strip, as the audio track automatically follows the video when we move and drag it. However, if we need to trim or move the audio to another section of the video, we must first disconnect the video and audio tracks.

Creating a tesseract in Blender using Geometry Nodes

A tesseract, let’s forget about the Marvel universe for a moment, is a very real geometric figure – a four-dimensional hypercube, one of the six regular polycubes in four-dimensional space. In our familiar three-dimensional space, a tesseract looks like the common “cube within a cube.” And such a figure can be easily created using Geometry Nodes in Blender.