Building a project using rapier 0.12 fail when creating world.
I created a minimal example here https://codesandbox.io/p/sandbox/rapierbuild-n3q2l6.
Click the terminal icon, pick preview to build and launch the test in the browser to the right. Use Terminal icon in the browser to open the browser console.
In the log: Uncaught TypeError: Cannot read properties of undefined (reading 'rawintegrationparameters_new').
Using Vite.js 5.0.12, Pixi.js 7.4.0 and Rapier.js 0.12. With Rapier at 0.11.2 it works fine and running in watch works fine for 0.12. As watch works, guessing something has to be updated with Vite, any info on what might have changed to cause this issue?
Worked around the issue by using rapier2d-compat instead. Like this to keep chunks as when using rapier2d.
import("@dimforge/rapier2d-compat").then(module => module.init().then(() => { this.rapier = module; // ... }));