Alex

Results 269 comments of Alex

Can we use && and similar instead of "and"?

Does it support comparing with the current value of a drop down field?

I am on Win11 here. Running the tests in both Bash and PowerShell do not fail those for me: Edit: Looking at the tests number difference between us, are you...

Ok, tried a clean install: Win11 Pro 25H2 Node v22.18.0 NPM 10.9.2 1. git clone 2. npm install 3. npm test 1584 passing (10s) 2 pending Looks like I have...

You need to compile the Wasm module manually on the main thread, then send the compiled module to the web worker and instantiate it there. Another way would be to...

How do I reproduce the bug? I refreshed multiple times, but don't see any issue in the console. ![Image](https://github.com/user-attachments/assets/13f5b305-e3d6-48f9-b69b-0ffd14fa96c8)

~~I see it. This is probably due to #7769.~~ The issue I mentioned is not valid, so there must be something else in play here.

I've looked into it a bit. The issue is that when you teleport a body, its motion state is not updated, unless it is a kinematic body. https://github.com/playcanvas/engine/blob/7b4f9c0c08a3a22e9c9197a300ab75ca613ed24f/src/framework/components/rigid-body/component.js#L1059-L1064 You need...

In my framework with Jolt, I do update the motion state of a body after a teleport, unless it is a static one. Works great. We could change the guard...