Blender add-on “NodeTree Source” v. 1.2.0.
Blender add-on “NodeTree Source” updated to v. 1.1.0.
- Added “Light” node trees support
- Added support for Geometry Nodes
Blender add-on “NodeTree Source” updated to v. 1.1.0.
For some toon shaders, it can be difficult to set up good reflections. the principle of non-realistic shading prevents the scene lighting from being processed correctly.
However, in the EEVEE render engine, we can set up fake reflections for toon shaders, which will look good and render quickly.
The Blender 2.93.1 LTS release is now enabled for downloading on the official Blender site.
To create a new collection in the scene using the Blender Python API, we need to execute the following:
How to create collection through the Blender Python APIRead More »
If the object you need is located in a hidden collection, it can be difficult to find it in large scenes.
To find out in which collection the desired object is located by its type, we need to execute the following. For example for cameras:
1 2 3 |
[(obj.name, obj.users_collection) for obj in bpy.data.objects if obj.type=='CAMERA'] # [('Camera', (bpy.data.collections['camera'],))] |
This code will return a list of cameras and collections in which they are located.
Blender add-on template generator updated to version 1.7.0.
The Blender 2.83.16 LTS release is enabled for downloading on the official Blender site.
AniCam – the Blender 3D add-on that allows the animating camera and render output resolution. Camera resolution can be animated by curves or by markers.