Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Hinge Joints Alternative?
#8
(10-07-2019, 07:10 AM)josemendez Wrote: Hi there!

Currently there's no easy way to connect particles from different soft bodies manually, working on it for upcoming updates. Adding external forces to particles is quite easy though. Either set their velocity directly:
Code:
softbody.Solver.velocities[softbody.particleIndices[index]] = <your velocity>
(remember that f = ma, and a = dv/dt)

Or, use forces directly:
Code:
softbody.Solver.externalForces[softbody.particleIndices[index]] = <your force>

thanks @josemendez

some kind of joint with the ability to restrict certain axis would be wonderful.
imagine a robot arm made from softbodies joined with hinges. for example the elbow would only bend in the x axes, the wrist can only rotate in the z axis and so on.
this would also open up obi to vehicles and all sorts
Reply


Messages In This Thread
Hinge Joints Alternative? - by StudioTatsu - 13-05-2019, 06:01 PM
RE: Hinge Joints Alternative? - by josemendez - 18-05-2019, 02:15 PM
RE: Hinge Joints Alternative? - by tegleg - 08-07-2019, 09:45 PM
RE: Hinge Joints Alternative? - by StudioTatsu - 09-07-2019, 02:38 AM
RE: Hinge Joints Alternative? - by josemendez - 09-07-2019, 10:52 AM
RE: Hinge Joints Alternative? - by tegleg - 09-07-2019, 10:48 PM
RE: Hinge Joints Alternative? - by josemendez - 10-07-2019, 07:10 AM
RE: Hinge Joints Alternative? - by tegleg - 10-07-2019, 12:04 PM
RE: Hinge Joints Alternative? - by Pheebau - 10-11-2020, 02:28 AM
RE: Hinge Joints Alternative? - by tegleg - 17-11-2020, 09:38 PM
RE: Hinge Joints Alternative? - by Pheebau - 18-11-2020, 12:58 AM
RE: Hinge Joints Alternative? - by Pheebau - 22-11-2020, 08:41 PM
RE: Hinge Joints Alternative? - by josemendez - 23-11-2020, 09:02 AM
RE: Hinge Joints Alternative? - by Pheebau - 23-11-2020, 10:18 AM
RE: Hinge Joints Alternative? - by tegleg - 23-01-2021, 01:54 AM