JamesNewton

Results 71 comments of JamesNewton

I'm very happy that you are willing to keep it going. If I'm able, I will attempt to contribute. Strangely, I just checked again and the message is gone! The...

It looks like the most difficult part is this? https://developer.chrome.com/docs/extensions/develop/migrate/to-service-workers#changes_youll_need_to_make (just to be very clear, I do NOT think I can help with this, except in very small / mindless...

I thought I saw it update, but it's still on 2.5 in my browser. Anything I need to do to update it? Just wait for the release?

I don't see a way to force the update... I do see an "Update" button on the Manage Extensions section and when I press it, nothing happens. My installed version...

Well... poop! I uninstalled 2.5 and when I try to install 3.0 from the store, I get an "Invalid manifest" error. The console.log just says "Unchecked runtime.lastError: Invalid manifest" So...

The following will run in the current DDE4, backfill this change, and includes simple g-code to demo the functionality by having the arm draw a square on the floor. ```js...

Should try: (edit, obviously, we want to change makeDynamic, not makeKinematic, and look for other differences there. MakeKinematic is the one that sets the mass to zero, and that is...

It's possible the answer is here: https://n5ro.github.io/aframe-physics-system/AmmoDriver.html#activation-states with a settings for linearSleepingThreshold and angularSleepingThreshold which allows the object to be "deactivated" while still being a working dynamic object.

Argh. https://n5ro.github.io/aframe-physics-system is a completely different physics engine that simply has an interface with ammo.js. It has been suggested that these settings might help, but so far I see no...

Further confusion, errors, and stupidity, I'm sure. Sigh. I've attempted to add the following lines ```js debugger if (this.last) { if ((this.last.p.x - p.x) < 0.0001) p.x = this.last.p.x if...