Blender
Make the add-on to be registered in last anywhere
In some cases when Blender starts it is necessary to make the add-on to be registered in last, after all other add-ons have been registered. This may be needed if the add-on conflicts with other add-ons or uses functionality from other add-ons, which should be available already during its registration.
Make the add-on to be registered in last anywhereRead More »
Add-ons loading order
When Blender starts, all active add-ons are loaded sequentially, one after the other. Which add-on will be loaded first is determined by its order in the “bpy.context.preferences.addons” list.
Getting Lattice points coordinates
The Lattice modifier is used to simplify the process of deforming high-poly meshes using simple wireframe objects with a few points – lattice. The lattice is superimposed on the mesh and associated with it, after which, by manipulating its point, we can deform the mesh itself. We can access the coordinates of the lattice points with the Blender Python API through its “points” property.
Blender add-on “Image Comparison Slider” v. 1.2.0.
Blender add-on “Image Comparison Slider” updated to v. 1.2.0.
- Added Image Comparison Slider to the 3D Viewport area
Blender add-on “Image Comparison Slider” v. 1.2.0.Read More »
Scaling object with saving the size of instances distributed over it with Blender Geometry Nodes
The distribution of object instances over the mesh surface in Blender is easily implemented with Geometry Nodes. In the simplest setup of such a node tree, when the scale of the base object changes, the dimension of the instances distributed on its surface also changes proportionally. However, it is possible to set a node tree in such a way that when the size of the base mesh changes, the size of the instances on it will remain unchanged, but their number will change.
Creating procedural material of Solar Panels
Creating procedural Solar Panels material by Ryan King Art.
Blender add-on: Area Switcher v. 1.3.0
Blender add-on “Area Switcher” updated to v. 1.3.0.
- Added the “LuxCore” add-on area types
- Modified to register last (after all other add-ons) to prevent issues with external add-ons (like LuxCore)