Blender
Blender add-on: ICS – Image Comparison Slider
Image Comparison Slider is a popular tool for quickly and easily comparing two images. With the “Image Compare Slider” add-on you can get the same functional in Blender.
Dynamic operator description
Creating an operator in the Blender Python API, its description is usually specified in its “bl_description” parameter. However, quite often the same operator performs different actions in different cases, and a constant description does not describe all its capabilities. In this case, a dynamic description can be given to an operator.
Checking for overlapping
One of the common tasks when making a scene in Blender is to control the overlapping of meshes. We can check whether two meshes intersect with each other using the technology of Bounding Volumes.
List of selected in Outliner collections
There is no single selection list for collections. We can open the Outliner in two different Blender areas, and select a different set of collections in each of them. Since the list of selected collections is different for each Outliner area, it can only be obtained through the context of this area.
Specifying parameters in Blender macros
Blender macros differs from Blender operators – they don’t require a predefined “execute” function with constant actions. In macros actions are added after its registration using the “define” method.
BPY plus v 1.6.0.
BPY plus project updated to v. 1.6.0.
- Added new module for getting the output render data: output
- Added new module for simplifying work with Video Sequence Editor (VSE): vse
- Added new module for simplifying work with collections: collections
- Added new module for working with context: context