Version: 2022.2
LanguageEnglish
  • C#

PhysicsScene.InterpolateBodies

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public void InterpolateBodies();

Description

Interpolates Rigidbodies in this PhysicsScene.

Interpolates all Rigidbodies in this PhysicsScene with Rigidbody.interpolation set to either RigidbodyInterpolation.Interpolate or RigidbodyInterpolation.Extrapolate with the current Time.time value.

This method is called automatically for the default PhysicsScene and therefore any manual calls on the defaultPhysicsScene will fail.

See Also: PhysicsScene.Simulate, PhysicsScene.ResetInterpolationPoses.

using UnityEngine;

public class SimpleSimulator : MonoBehaviour { private PhysicsScene m_PhysicsScene;

private void Update() { m_PhysicsScene.InterpolateBodies(); }

private void FixedUpdate() { m_PhysicsScene.ResetInterpolationPoses(); m_PhysicsScene.Simulate(Time.fixedDeltaTime); } }

Simulates and interpolates a non-default PhysicsScene.