Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Hinge Joints Alternative?
#7
(09-07-2019, 10:48 PM)tegleg Wrote: thanks for the reply @StudioTatsu i seem to be invisible to @josemendez

i moved from Truss Physics because thats abandoned, unstable, has performance issues and no source code.
this seemed a way forward, hope future updates solves the lag, includes a way to connect 2 softbodies by selected particles and adding a force to a particle could also be useful.

could i ask how you connected particles?

thanks again

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>
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