Blender add-on “Instances Colorizer” v. 1.1.0
Blender add-on Instances Colorizer updated to v. 1.1.0.
- Added instances colorization for curves and text objects
Blender add-on Instances Colorizer updated to v. 1.1.0.
To create several identical UI panels with the same set of fields and buttons in different areas in Blender, the easiest way is to copy the panel code and replace the parameters that determine in which area the panel will be shown.
The main disadvantage of this method is code duplication, which can make difficulties in the future – when editing panels, changes must be made to each copy of the code, instead of changing it at once for all panels.
Creating the same UI panels in different Blender areas with no code duplicationRead More »
Sometimes it is necessary to register an operator that couldn’t be called by the user directly. For example, if this operator is supposed to be called only by another operator after a series of checks or additional actions.
Blender add-on “B-Presets” updated to v. 1.1.6.
When using the “depsgraph_update” handler, making actions with objects passed to the handler does not give the full result. For example, properties of an object referring to it through the “object.id”, could be not completely changed.
Objects referring in a depsgraph_update handler featureRead More »
Sprite Cloud – Blender 3D add-on for easily creating sprites – image planes that are always facing the active camera.
To get the path to the Python interpreter executable file in Blender, we need to check the “bpy.app.binary_path_python” variable.
To quickly maximize the working area in Blender to fullscreen we can press the following keycode:
ctrl + space bar
How to maximize the working area in Blender to fullscreenRead More »