Making a procedural zipper shader
Hans Chiu shared a stream about making a procedural animated zipper material.
Blender add-on: BIS v. 1.8.2.
BIS (Blender Interplanety Storage) updated to v.1.8.2.
- Updated some nodes parameters according to Blender 2.81
How to move the cursor to the active strip start/end position in Blender VSE
To move the cursor to the start position of the active strip in Blender VSE:
1 |
bpy.context.scene.frame_current = bpy.context.scene.sequence_editor.active_strip.frame_start |
To move the cursor to the end position of the active strip:
1 |
bpy.context.scene.frame_current = bpy.context.scene.sequence_editor.active_strip.frame_final_end |
Blender add-on: Parametrizer
“Parametrizer” is the Blender add-on for interactively changing mesh geometry through the customizable parameters.
How to correctly set parameters using mathematical expressions
Blender has a very convenient ability to set the desired values through mathematical expressions. If we don’t know the exact value, instead of manually calculating it, we can simply enter an expression that will calculate the desired value.
How to correctly set parameters using mathematical expressionsRead More »
Executing operators with parameters
When making your own custom operators, sometimes it is necessary to pass them certain values – execute operator with parameters.
The passed parameter must be defined as an operator property.
Transfer selection from the UV-map to mesh
The UV-map is directly linked to the mesh through meshloops. We can use that to transfer the selection from the UV-map to the mesh.
To transfer the selection from the UV-map to the mesh, we need to cycle through the mesh polygons, check which meshloops are selected and select the corresponding vertices on the mesh itself.
Nodevember
Nodevember is a monthly challenge you invited to make procedural objects for Blender every day. It can be a material, a shader, an object, anything, if only it would be procedural. “If you can call it nodes, you can call it Nodevember!”
Webpage: nodevember.io