Blender
Blender add-on: Bookmarks
With the Blender Bookmarks add-on, you can bookmark the current viewport location and objects, so you can quickly return to them with a single click of the bookmark button.
Clipping values
To clip the value along the boundaries – check if the value goes beyond the specified limits, return the value itself, and if it goes out – the maximum possible boundary value, we can use a very simple function.
Blender add-on “NodeTree Source” v. 1.2.5.
Blender add-on “NodeTree Source” updated to v. 1.2.5.
- Fixed issue with the text.from_string() block in Blender 3.2 and higher
Fully override context menu in Blender
While we can append additional items to context menus in Blender, context menus can also be completely redefined. Instead of the basic one, we can get a completely custom context menu with any set and order of items we need.
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 »