Johannes

Results 14 comments of Johannes

I ran into the exact same issue on iOS. Calls to request_redraw() inside RedrawRequested were being ignored, so I moved them into about_to_wait() and that fixed the redraw problem. However,...

I'm not an expert, but I suspect this might be a tunneling issue. If the cubes fall too fast, they might skip the collision with the floor. Maybe enabling continuous...

I just tested with v0.30.9 and I’m seeing the exact same warning right as the very first log message. I’m not sure if I’ve missed something on my end. Is...

Yes exactly. I only linked it because I was notified that the issue was closed, so I thought it might be useful as a reference. I am not sure how...

Ah, I hadn't seen that you were already working on something like this; great work! I had closed the issue earlier because I wasn't entirely sure about how to handle...

**Problem:** If a triangle collider has two or all three points the same, the code divides by zero inside `project_local_point_and_get_location`. This makes the result `NaN` and breaks further calculations. ---...

Just to add: This was the first place I found where a triangle with duplicate points leads to issues, but I’m not sure if it’s the only one.