YimingWu ChengduLittleA
  • Joined on 2014-05-03
YimingWu created pull request blender/blender#128273 2024-09-27 17:42:44 +02:00
Fix #128247: Show warning when applying rotation on invalid matrix
YimingWu closed issue blender/blender#128266 2024-09-27 17:40:56 +02:00
Buttons bug
YimingWu commented on issue blender/blender#128266 2024-09-27 17:40:49 +02:00
Buttons bug

Hi @Mate-Balogh , this is because that you have zoomed in too close to a spatial focusing point in the viewport. You can try select an object and press numpad . (Or View > Frame Selected) to…

YimingWu created branch fix-128247 in ChengduLittleA/blender 2024-09-27 17:37:27 +02:00
YimingWu pushed to fix-128247 at ChengduLittleA/blender 2024-09-27 17:37:27 +02:00
d7d9d434fe Fix #128247: Show warning when applying rotation on invalid matrix
33b80415aa Cleanup: use const, correct arg names, spelling, use ELEMN(..)
634e44de9f Cleanup: remove redundant null check
b2eb8cc0df UI: Edge Highlighting While Resizing Editors
726fd7365d Fix #126808: Crash when remeshing an object with a mirror modifier
Compare 10 commits »
YimingWu commented on issue blender/blender#128247 2024-09-27 17:19:28 +02:00
Applying rotation on an object with a scale value of (0,0,0) will prevent "Clear Scale" from working correctly

Actually applying any transform on a matrix with (0,0,0) as the first three columns will fail, because it's no longer possible to determine directions of the three axis, mathematically meaning…

YimingWu commented on issue blender/blender#128247 2024-09-27 17:06:51 +02:00
Applying rotation on an object with a scale value of (0,0,0) will prevent "Clear Scale" from working correctly

Can confirm. Though a scale matrix of 0 would mean the first three columns of the transformation matrix being all 0's. There won't be any valid rotation value afterwards. Maybe blender can handle…

YimingWu commented on issue blender/blender#128246 2024-09-27 16:57:03 +02:00
Dope Sheet: channels re-order is limited if channel group is selected

Humm looks to me like it's an inconsistency.

  • When you have multiple channel groups and when you select one of them (together with a channel inside that group), using "Move Up" or "Top" will…
YimingWu closed issue blender/blender#128234 2024-09-27 16:42:21 +02:00
Regression from 4.1 - Call Collection from another scene via Geometry Nodes doesn't work
YimingWu commented on issue blender/blender#128234 2024-09-27 16:42:18 +02:00
Regression from 4.1 - Call Collection from another scene via Geometry Nodes doesn't work

I think we should close it since there's a dependency loop situation and in which case the evaluation order is undetermined.

YimingWu commented on pull request blender/blender#128260 2024-09-27 16:40:31 +02:00
Fix #128257: Crash when using Set Vertex Colors with no brush

Thanks for the fix!

This works for me. Not sure if this should actually be put into poll so when the operator is not supposed to run it should grey out.

YimingWu closed issue blender/blender#128244 2024-09-27 16:26:10 +02:00
Import edited image as Reference
YimingWu commented on issue blender/blender#128244 2024-09-27 16:26:06 +02:00
Import edited image as Reference

Yes, blender will cache stuff. You aren't really "deleting" the loaded image either. Loaded image data blocks can be inspected in any texture/image related workspaces and you will actually be able…

YimingWu commented on issue blender/blender#128234 2024-09-27 16:19:51 +02:00
Regression from 4.1 - Call Collection from another scene via Geometry Nodes doesn't work

Hummm more of a reason to really expose dependency cycle warning as a visible message on the UI...

YimingWu commented on issue blender/blender#128242 2024-09-27 16:12:41 +02:00
Including native Python header files within the python directory bundled with Blender

I don't personally see a point against including those headers. Though on ubuntu they come with two packages libpython3.11 and libpython3.11-dev means that distributed tools probably already…

YimingWu closed issue blender/blender#128240 2024-09-27 16:01:19 +02:00
Modifier "Array - Constant Offset" wrong
YimingWu commented on issue blender/blender#128240 2024-09-27 16:01:15 +02:00
Modifier "Array - Constant Offset" wrong

Hi @Dong_Fang_Yi_Hu ! In your file your object actually has a very small scale. Object scales are on top of all mesh modifiers, so this way you are making arrays of an object and scaled it…

YimingWu commented on issue blender/blender#128238 2024-09-27 15:55:24 +02:00
UI displaying just incorrect values for small float property values

The scale length UI is defined to have a precision of 6 fraction bits. Not sure how useful increasing that would be.

This should not affect any modelling since it's just for widget value…

YimingWu commented on issue blender/blender#127175 2024-09-27 15:35:42 +02:00
Insert Keyframe Menu hotkeys change if there are no keyframes set in armature

did you manage to disable the menu entry?

No I actually did not, I thought it could be a poll thing for each entry so it's harder than I thought :/

If not we can discuss in the animation…

YimingWu commented on pull request blender/blender#126486 2024-09-27 15:31:23 +02:00
Fix #126480: Convert mesh to legacy curve and GPv3

I see. Thanks guys! I guess I can write one from scratch, it might be better.

The entire conversion function is so convoluted, I believe it was partly due to not using static/local functions in…