Jorrit Rouwe

Results 10 issues of Jorrit Rouwe

Hello, Looking at the feature matrix there's a big cross next to 'Pully'. Should I implement pulley support for Jolt (I assume we're talking about a rope and pulley system...

feature

See discussion at #936 Right now, there is a limit of a single colliding body per soft body vertex. If the closest body happens to be a sensor this effectively...

See discussion in https://github.com/jrouwe/JoltPhysics/discussions/981

See #110 We can build Jolt in multithreaded mode now, we should create an example (a plain one and one implementing callbacks) and make the build available in the package.

Hello, First of all, great that you made this version of PEEL public, there's so many useful tests in there! I only noticed it today. This is more of an...

Hello @PhoenixIllusion, I am trying to upgrade from emscripten 4.0.5 to emscripten 4.0.6 and I'm running into an issue with the multithreaded build that I don't fully understand. I've created...

Given ``` // main.c #include int main() { printf("Hello, Emscripten!\n"); return 0; } ``` ``` // minimal_mrp.js Module['minimal-function-test'] = (scriptUrl, scriptParams) => { import(scriptUrl).then(module => { module.default(scriptParams).then(() => console.log('success')); })...