Jordan Santell

Results 193 comments of Jordan Santell

Running into this now, it appears that bundling always transforms private fields. Test case: ```js // input.js class Foo { static #hello(){ console.log("!"); } } ``` `esbuild input.js --target=esnext` Using...

Same thing if using static properties ```js export class Foo { static b = 1; } ``` When running `esbuild esbuildtest.js --target=esnext` the output is untransformed; adding `--bundle` however: ```js...

Hello! A few more things to make it possible to merge: * Squashing this down to one commit and rebase off of master * Remove the built files Sorry for...

I believe my earlier attempt did not disable the rotation limits, I wonder if that'd be the key to prevent the non-stop "popping", but it was a quick and crude...

Checking out the [migration guide for patches](https://github.com/mrdoob/three.js/wiki/Migration-Guide), I'm guessing it's due to the [`Object.lookAt()` change from r96](https://github.com/mrdoob/three.js/wiki/Migration-Guide#r95--r96)

Thanks for the resources! CCD was the first implemented version, but had difficulties constraining rotations (after having done the FABRIK version, I no longer think I'd have the CCD issues)....

Similarly, I imagine each IK system should consistently use the same solver (or hybrid solver), such that an IK chain's children chains must use the same solver. Is there an...

This is great insight, @zalo, thank you! I'll sketch up a solution when I have some time.