Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help  actor‘s update time
#3
(28-12-2020, 03:48 PM)josemendez Wrote: Most particle data will be updated immediately. If you take a look at the ResetParticle() source code, you'll see that solver.positions and solver.velocities are immediately written to:


Some data however, such as solver.renderablePositions, will only be updated at the end of the next simulation step (FixedUpdate, LateUpdate, or whenever the solver is being updated, determined by what ObiUpdater component you're using).

cheers,
Thank you,bro
This is a big help!
Reply


Messages In This Thread
actor‘s update time - by FZMv587 - 28-12-2020, 09:45 AM
RE: actor‘s update time - by josemendez - 28-12-2020, 03:48 PM
RE: actor‘s update time - by FZMv587 - 28-12-2020, 03:52 PM
RE: actor‘s update time - by FZMv587 - 29-12-2020, 08:28 AM
RE: actor‘s update time - by josemendez - 29-12-2020, 09:36 AM
RE: actor‘s update time - by FZMv587 - 29-12-2020, 10:13 AM