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.
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.
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…
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…
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…
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…
Here on Windows it doesn't crash. @lichtwerk can you check on Linux?
For issues with daily builds, please open new report.
I tested on Windows, Ryzen CPU, RTX3060, so pretty similar configuration to yours. I would imagine this doesn't crash for 100% perhaps?
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,…
@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...
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…
Thanks for minimal file.
@brecht Can you reproduce this? Not sure if you have any idea how this issue can happen.
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…