BEPUphysics.Vehicle.WheelShape.UpdateWorldTransform C# (CSharp) 메소드

UpdateWorldTransform() 공개 추상적인 메소드

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
리턴 void
        public abstract void UpdateWorldTransform();

Usage Example

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