BEPUphysics.Vehicle.WheelShape.UpdateWorldTransform C# (CSharp) Method

UpdateWorldTransform() public abstract method

Updates the wheel's world transform for graphics. Called automatically by the owning wheel at the end of each frame. If the engine is updating asynchronously, you can call this inside of a space read buffer lock and update the wheel transforms safely.
public abstract UpdateWorldTransform ( ) : void
return void
        public abstract void UpdateWorldTransform();

Usage Example

示例#1
0
 internal void UpdateAtEndOfFrame(float dt)
 {
     shape.UpdateWorldTransform();
 }