I’m working on a small project similar to the Ammo.js softbody rope demo and am having some trouble increasing the thickness of the rope.
By process of elimination (OpenGL no longer supports line thickness and THREE.MeshLine doesn’t seem to work currently) I’ve ended up using THREE.Line2, but I can’t get the rope to update properly with the physics. When the scene loads, the rope physics object works fine and interacts with my other objects, but the actual rope geometry doesn’t move with it and the mesh flickers while sitting in its initial position.
Is there a better way to go about this rather than using Line2? If not, how would I go about using it in the context of the Ammo.js softbody rope demo?