BEPUphysics.EntityStateManagement.InterpolatedStatesManager.GetState C# (CSharp) Method

GetState() public method

Returns an interpolated state associated with an entity with the given index. Does not lock the FlipLocker.
public GetState ( int motionStateIndex ) : RigidTransform
motionStateIndex int Motion state of the entity.
return BEPUutilities.RigidTransform
        public RigidTransform GetState(int motionStateIndex)
        {
            return states[motionStateIndex];
        }