Lukas Tönne LukasTonne
Lukas Tönne created branch gpv3-join-objects in LukasTonne/blender 2024-09-30 16:43:42 +02:00
Lukas Tönne pushed to geometry-nodes-rb-component at LukasTonne/blender 2024-09-30 09:56:03 +02:00
827313708b Merge branch 'main' into geometry-nodes-rb-component
ecaa69f9cf Cleanup: Vulkan: Use optional extension for maintenance 4
6ec35c619f Vulkan: Reduce Pipeline Logging
b6aa4a3142 OpenGL: Add Intel HD 405 to limited support.
9b8b03d8e6 Mesh: comments for a code-blocks which can leak memory
Compare 59 commits »
Lukas Tönne pushed to main at LukasTonne/.profile 2024-09-30 09:51:04 +02:00
7a861b229f update
Lukas Tönne pushed to geometry-nodes-rb-component at LukasTonne/blender 2024-09-29 12:29:32 +02:00
6ba16e5a4c Test demonstrating a problem with SpanAttributeWriter on non-span attributes.
Lukas Tönne commented on pull request blender/blender#117916 2024-09-27 17:52:27 +02:00
GPv3: Join Operator
Lukas Tönne approved blender/blender#117916 2024-09-27 17:52:15 +02:00
GPv3: Join Operator
Lukas Tönne pushed to gpv3_merge_points at PRiera1/blender 2024-09-27 17:51:28 +02:00
ec5240e48a Use IndexRange for functions that don't require an actual mask.
6ad03622b3 Cleanup: use IndexRange instead of separate start/size variables.
Compare 2 commits »
Lukas Tönne deleted branch gpv3_merge_points from LukasTonne/blender 2024-09-27 17:51:04 +02:00
Lukas Tönne pushed to gpv3_merge_points at LukasTonne/blender 2024-09-27 17:50:54 +02:00
ec5240e48a Use IndexRange for functions that don't require an actual mask.
6ad03622b3 Cleanup: use IndexRange instead of separate start/size variables.
f3f3d4f75e Merge branch 'main' into gpv3_merge_points
Compare 3 commits »
Lukas Tönne created branch gpv3_merge_points in LukasTonne/blender 2024-09-27 17:50:54 +02:00
Lukas Tönne suggested changes for blender/blender#117916 2024-09-27 17:30:32 +02:00
GPv3: Join Operator

Works great. Have some cleanup comments.

Lukas Tönne commented on pull request blender/blender#117916 2024-09-27 17:30:31 +02:00
GPv3: Join Operator

reverse_point_data and reverse_points_of are only called with IndexRange. Using IndexMask arguments here is unnecessary and confusing, since the indices would have to be offset by the firstr/last point.

Lukas Tönne commented on pull request blender/blender#117916 2024-09-27 17:30:30 +02:00
GPv3: Join Operator

Can just store a IndexRange local variable and change it directly, no need to split into begin/size.

Lukas Tönne pushed to gpv3_merge_points at PRiera1/blender 2024-09-27 17:04:48 +02:00
f3f3d4f75e Merge branch 'main' into gpv3_merge_points
87bef46096 Fix: Crash when there is no active layer/group.
5250e57294 Fix #127288: Vulkan: Report Marketed Driver Version
38a888c794 Cleanup: correct FOREACH_OBJECT_FLAG_BEGIN flag argument
0f1bdd551c Fix: Sculpt: Debug assert when undoing deformation
Compare 8770 commits »
Lukas Tönne commented on pull request blender/blender#111410 2024-09-27 16:55:09 +02:00
GPv3: Select Similar operator
Lukas Tönne pushed to geometry-nodes-rb-component at LukasTonne/blender 2024-09-27 16:34:20 +02:00
3895584f20 Attribute filters to ensure only builtin, uncached attributes are skipped.
Lukas Tönne commented on pull request blender/blender#126486 2024-09-27 15:36:23 +02:00
Fix #126480: Convert mesh to legacy curve and GPv3

The entire conversion function is so convoluted, I believe it was partly due to not using static/local functions in the beginning and it grew this way. Maybe cleaning this up would also become a…

Lukas Tönne pushed to geometry-nodes-rb-component at LukasTonne/blender 2024-09-27 14:54:10 +02:00
fba901b5af Determine task with moved physics data before getting attributes.
Lukas Tönne commented on issue blender/blender#127152 2024-09-27 13:10:54 +02:00
Rigid Body Damping Translation and Rotation Ineffective with Small to Medium Values

After taking a closer look at Bullet's damping implementation i'm pretty sure @Nektarios-Kalogridis is correct that this is a bug. Unfortunately it's a Bullet bug rather than a Blender bug. We…

Lukas Tönne commented on pull request blender/blender#126486 2024-09-27 12:02:57 +02:00
Fix #126480: Convert mesh to legacy curve and GPv3

I agree with @Sean-Kim, we should avoid making object_convert_exec recursive, especially since it requires overriding the operator properties while the operator is being executed. It should be…