Richard Antalik iss
  • Joined on 2018-06-01
Richard Antalik pushed to retiming-tool at iss/blender 2023-02-21 13:24:55 +01:00
b34ca86766 Revert removal of speed factor for sound strips
Richard Antalik closed issue blender/blender#104190 2023-02-20 14:09:00 +01:00
Rear Channels Levels Wrong in AC3 5.1 Export
Richard Antalik commented on issue blender/blender#104190 2023-02-20 14:08:59 +01:00
Rear Channels Levels Wrong in AC3 5.1 Export

The file is added by me, but will close due to inactivity as for policy. Also I think that what I have provided does represent the issue, and this is working as expected.

Richard Antalik commented on issue blender/blender#104778 2023-02-20 11:29:00 +01:00
Crash with modeling operations when a modal operator is active while Blender displays an info bubble

Ah sorry I completely missed 2nd step :/ Thanks for explanation for functionality, will check this, but given, that I can't reproduce this issue, will have to check with others too.

Richard Antalik commented on issue blender/blender#104564 2023-02-20 10:47:51 +01:00
Modifiers: Blender calculates everything even in background mode

Ah sorry, a handler function you can register to run on some event like loading or saving file, rendering and so on. See https://docs.blender.org/api/current/bpy.app.handlers.html

The…

Richard Antalik commented on issue blender/blender#104843 2023-02-20 10:41:22 +01:00
Undo in sculpt mode changes back the brush

Thanks for update, I think this could be due to some addon. Please check if enabling addons with factory preferences does introduce this issue. If it does, please identify which addon is…

Richard Antalik commented on issue blender/blender#104778 2023-02-20 10:35:29 +01:00
Crash with modeling operations when a modal operator is active while Blender displays an info bubble

From crash trace, this looks like a bug, but it's strange it doesn't crash here. I assume provided file is optimized for 2 steps:

  • Save file
  • Press V while there is info message present in…
Richard Antalik commented on issue blender/blender#104726 2023-02-20 10:25:01 +01:00
Blender crashes on opening BLENDER-v248REND file

I don't understand why it doesn't crash here though...

@Baardaap 'wm->winacive' looks completely normal here. Can you perhaps check where the value is set to NULL? In WM_check() wm is set…

Richard Antalik commented on issue blender/blender#104823 2023-02-18 05:41:08 +01:00
Crash with GPU and OpenCL on Linux

Here on Windows it doesn't crash. @lichtwerk can you check on Linux?

For issues with daily builds, please open new report.

Richard Antalik commented on issue blender/blender#104778 2023-02-18 05:25:40 +01:00
Crash with modeling operations when a modal operator is active while Blender displays an info bubble

I tested on Windows, Ryzen CPU, RTX3060, so pretty similar configuration to yours. I would imagine this doesn't crash for 100% perhaps?

Richard Antalik commented on issue blender/blender#104564 2023-02-18 05:23:32 +01:00
Modifiers: Blender calculates everything even in background mode

Blender processes arguments in order, so I would imagine you would have to do something like this: blender -b -P script_with_handler_code.py file.blend

This way you can register handler,…

Richard Antalik closed issue blender/blender#104806 2023-02-18 05:14:52 +01:00
asset browser glitches the VSE if area small enough
Richard Antalik pushed to main at blender/blender 2023-02-18 05:14:52 +01:00
cc4587a9b4 Merge branch 'blender-v3.5-release'
5cd2be7d54 Fix #104806: Graphical glitches in VSE timeline region
2cd7e70c18 Fix #104604: Potential crash when relinking node links
Compare 3 commits »
Richard Antalik pushed to blender-v3.5-release at blender/blender 2023-02-18 05:14:01 +01:00
5cd2be7d54 Fix #104806: Graphical glitches in VSE timeline region
Richard Antalik commented on issue blender/blender#104806 2023-02-18 05:05:23 +01:00
asset browser glitches the VSE if area small enough

@Jeroen-Bakker Thanks for advice, noticed, that current code did GPU_clear_color(col[0], col[1], col[2], 0.0f);, which is bit useless...

Richard Antalik commented on issue blender/blender#104843 2023-02-18 04:54:38 +01:00
Undo in sculpt mode changes back the brush

I wasn't able to reproduce this issue. Does this happen when you click on File > Defaults > Load Factory Settings?

Just checked and it doesn't

@costa It doesn't happen, or factory…

Richard Antalik commented on issue blender/blender#104726 2023-02-18 04:50:13 +01:00
Blender crashes on opening BLENDER-v248REND file

Thanks for minimal file.

@brecht Can you reproduce this? Not sure if you have any idea how this issue can happen.

Richard Antalik closed issue blender/blender-addons#104245 2023-02-18 04:04:36 +01:00
Add-on: Curve Tools - Birail does not work
Richard Antalik commented on issue blender/blender-addons#104245 2023-02-18 04:04:35 +01:00
Add-on: Curve Tools - Birail does not work

@cwolf3d Thanks for info, will close then.

Richard Antalik commented on issue blender/blender#104564 2023-02-17 05:33:26 +01:00
Modifiers: Blender calculates everything even in background mode

Only thing that comes to mind is to use application handler. Earliest I would say would be bpy.app.handlers.version_update so no evaluation of data should take place there. would this work for…