Block a user
e9b8606021
cleanup
64be9bab1c
initial API
636d83fbea
Refactor: convert BKE_nla.h to C++
06e70e7bc0
GPv3: Implement Grease Pencil to mesh conversion
4556624edd
VSE: Draw thumbnails in timeline by default
05a6e46f64
improve instance handling
ea38192337
propagate attributes from input geometry
5e411a06eb
Merge branch 'main' into foreach-geometry-element
957330043f
Refactor: Attributes: support different source and destination domains in propagation utilities
168c568058
Fix #126946: GPv3: Handle erase mode when using a tablet pen
Refactoring: BKE: Attributes: Support different source and destination domains to propagation
957330043f
Refactor: Attributes: support different source and destination domains in propagation utilities
Geometry Nodes: new For Each Geometry Element zone
You don't need the first output in this case. The first output is just the input geometry + potentially more attributes. Have a look at the socket descriptions.
GPv3: Implement Grease Pencil to mesh conversion
You implementation would be correct, but you don't need it. The default attribute filter already has the same behavior. So you can just pass in {}
or AttributeFilter()
into curve_to_wire_mesh
.
1dbeb244c3
fix
8b57e51b3d
Merge branch 'main' into foreach-geometry-element
7b9004d57b
Fix #127328: Snake Hook brush rotation applied incorrectly for symmetry
6e0223a04c
Fix #127356: Expand face set snapping doesn't work
8aead3a6d9
Fix #126707: SVG export nodes wrong hierarchy ignores clipping
b516f757e2
cleanup
22668a84c8
improve naming
1de3ff8304
remove dash from name
e87760bf1e
change socket order
a39c3616da
expose output domain
80454b4abf
improve socket descriptions
9fb4b5cf37
improve drawing
2b9cd4af84
remove single element geometry extraction
f552dcedf1
add ui to manage input/output items
Crash when clicking on the Add-ons tab in Preferences in 4.2.1 - Blender launched from VSC
Good find! I can confirm that manually replacing the werkzeug
version like you suggest fixes the issue for me. I can't really make sense of why that is yet.
Backtrace
Refactoring: BKE: Attributes: Support different source and destination domains to propagation
Seems reasonable.
Refactoring: BKE: Attributes: Support different source and destination domains to propagation
@blender-bot build
Geometry Nodes: new For Each Geometry Element zone
There are many different things that one could iterate over in a for-each zone. Iterating over geometry elements is the most important one, so that's implemented here. We might need other for-each…