YimingWu ChengduLittleA
  • Joined on 2014-05-03
YimingWu commented on issue blender/blender#107517 2023-05-02 08:37:23 +02:00
Suspected asset library crash by json_sax_dom_parser

Suspected duplicate of issue #106540 , this one is also thrown from nlohmann but no other detailed explanation.

YimingWu commented on issue blender/blender#107517 2023-05-02 08:34:37 +02:00
Suspected asset library crash by json_sax_dom_parser

Hi @JessyBerbers Could you describe what action you are performing right before it crashed? Or if it's just randomly without a pattern?

From the crash log it suggests blender crashed while…

YimingWu commented on issue blender/blender#107513 2023-05-02 08:25:04 +02:00
3.4, 3.5 mouse cursor randomly freezes for 0.5 to 2 seconds

That sounds kinda weird. Cursor freeze seems to be your GPU constantly running some task.

Could you try blender -d --debug-all and try to see if there are any output in the terminal during…

YimingWu commented on issue blender/blender#107511 2023-05-02 08:15:45 +02:00
Crash when drawing in Weight Paint Mode

Hi @sanek122005 , I'm unable to reproduce the crash. Could you give us more information by doing

YimingWu closed issue blender/blender#107504 2023-05-02 08:10:20 +02:00
AE2Blend WinError 233 No process is on the other end of the pipe
YimingWu commented on issue blender/blender#107504 2023-05-02 08:10:18 +02:00
AE2Blend WinError 233 No process is on the other end of the pipe

Hello @Dutch93 , this looks like to be an issue with the payware addon, it's advised that you consult support from the addon author. Or we could take a look at it if you could reproduce the same…

YimingWu commented on issue blender/blender#107502 2023-05-02 08:04:59 +02:00
CTD when changing shading settings

Hi @J-Nord , not quite sure what CTD means in this context, does it mean it hangs indefinitely, or crashes?

This looks very much like a graphics issue, try updating/downgrading the graphics…

YimingWu closed issue blender/blender#107501 2023-05-02 08:01:17 +02:00
Blender grease pencil's interpolate sequence doesn't work
YimingWu commented on issue blender/blender#107501 2023-05-02 08:01:15 +02:00
Blender grease pencil's interpolate sequence doesn't work

Hi @hoanguk ! In your file, the third key frame actually has two fills, that's why it didn't appear to work because there's the original shape at the same place. After removing that extra circle…

YimingWu commented on issue blender/blender#107500 2023-05-02 07:52:57 +02:00
Python API: Mesh editing: Editing uvs after normals with a previously assigned variable doesn't work

This leads me to believe holding on the uv layer data after normal editing accesses freed memory or something like that?

I believe you can't really hold that pointer "for later" but from the…

YimingWu commented on issue blender/blender#107527 2023-05-02 07:45:50 +02:00
Can't input Chinese text on linux

@PratikPB2123 I can confirm the issue with ibus. (I believe fcitx a while ago is alright, but not sure) This should be the duplicate of that one as well.

YimingWu commented on issue blender/blender#107469 2023-05-02 04:29:44 +02:00
Grease Pencil: Line Art › Light Contour causes crash

@jashear Thanks for the info... Well then it's interesting, it could mean line art itself being not quite stable, I'll look into it.

YimingWu commented on issue blender/blender#107475 2023-05-02 04:28:53 +02:00
ShadeSmooth to Torus caused Blender to Freeze Twice (but now can't reproduce error in same version)

@Phil-Sawa try starting blender with blender -d --debug-gpu and see if it outputs anything weird during the freeze?

YimingWu commented on issue blender/blender#107474 2023-05-02 04:26:59 +02:00
Transform operators do not save state when cancelling

@mano-wii

In addition to the Proportional Edit settings, other settings are saved in the scene, such as Snap Toggle. Is it important to bring this behavior back to Snap's Toggle as…

YimingWu commented on issue blender/blender#107493 2023-05-01 17:39:23 +02:00
Blender does not read rotation metadata in some videos

I'm not sure the design of vse would ever be able to support changing resolution, some video formats does allow that. But in this particular case, the resolution is fixed, just need to rotate the…

YimingWu commented on issue blender/blender#107494 2023-05-01 11:29:06 +02:00
GPU debug mode creates excessive log, causing lack

caused by 6b8bb26c457446875e0782a1701ec35c78b33308

cc @ThomasDinges @fclem

YimingWu commented on issue blender/blender#107486 2023-05-01 10:51:21 +02:00
Ctrl-R doesn't work while from the tool bar loop cut works.

@TomasHenriques I guess you need to find out if that interferes. Or maybe it could be other programs, try stopping those program and see if it works. Thanks!

YimingWu commented on issue blender/blender#107494 2023-05-01 10:27:37 +02:00
GPU debug mode creates excessive log, causing lack

Apparently it's the tex->check_feedback_loop() reporting repeatedly about `ERROR (gpu.debug): Eevee > Shadows > Cube Shadow Maps > psl->shadow_pass : Feedback loop: Trying to bind a texture…

YimingWu commented on issue blender/blender#107487 2023-05-01 09:37:01 +02:00
Motion tracking marker's search area is not expanding with tracker, requiring constant manual scaling up.

@3di In that case I think it's a reasonable issue. I'll confirm it and see if video guys have any input on this.

YimingWu commented on issue blender/blender#107493 2023-05-01 09:04:24 +02:00
Blender does not read rotation metadata in some videos

Managed to read the rotation this way:

static double ffmpeg_get_stream_rotation(AVStream *st)
{
  AVDictionaryEntry *rotate_tag = av_dict_get(st->metadata, "rotate", NULL, 0);
  uint8_t…