- Brasil
- https://www.linkedin.com/in/germano-cavalcante-77224867/
- Joined on
2012-10-07
These steps to convert to numpy, reshape, then copy, are a bit obscure. It doesn't make it clear whether the buffer is copied (which can be slow).
Transpose should not be necessary as shown in…
Hi @ManBlender, thank you for reporting this issue.
To troubleshoot this, I would suggest checking for any "Fake Users" that might be keeping the assets and materials in your project. You can…
Thanks for reporting this issue.
The step "make a tool that uses some position or rotation sliders" is a bit vague. Could you please provide us with a simple .blend file that contains a…
Just put GPU_blend(GPU_BLEND_NONE);
at the end.
GPU_BLEND_ALPHA
is a little more computationally intensive, so for some micro-micro-efficiency, it is good to avoid GPU_BLEND_ALPHA
being…
I can confirm the problem. Only happens if you hold Ctrl.
System Information Operating system: Windows-10-10.0.22621-SP0 64 Bits Graphics card: NVIDIA GeForce RTX 3060 Laptop GPU/PCIe/SSE2…
From the video I could see what was happening. When you apply the scale to an object that has an inverted matrix (one of the axis is negative), the object's normal is inverted, and automatic…
The else if (ELEM(t->spacetype, SPACE_GRAPH, SPACE_ACTION)) {
condition within drawPropCircle
can then be removed.
Here for example the state is changed (GPU_BLEND_ALPHA
) but not restored in the end.
I would double check if you really need to check and restore the "depth_test".
GPU_matrix_push
is only required when the matrix needs to be edited (with any GPU_matrix_ function), this does not appear to be the case here.
It's not simply transposed, the behavior is quite a bit trickier.
It is transposed.
If you modify the line
pixels = np.asarray(buffer).reshape(-1)
to
`pixels = np.asarray(buffer).T.res…
Hi @Tarek-Hasan,
Thank you for the report. Please note that this bug tracker is primarily for reporting bugs and errors in Blender. If you have a request or suggestion for addon improvements,…
From what I can see, it's not garbage. The values in the image are transposed (rows are columns and columns are rows). I would need to investigate in more detail, I don't know if there is an…