C# 클래스 BEPUphysics.TimeStepSettings

Contains settings for the instance's time step.
파일 보기 프로젝트 열기: tonypeng/Bloxel 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
AccumulatedTime float
MaximumTimeStepsPerFrame int
TimeStepDuration float

프로퍼티 상세

AccumulatedTime 공개적으로 프로퍼티

Amount of time accumulated by previous calls to Space.Update(float) that has not yet been simulated.
public float AccumulatedTime
리턴 float

MaximumTimeStepsPerFrame 공개적으로 프로퍼티

Maximum number of timesteps to perform during a given frame when Space.Update(float) is used. The unsimulated time will be accumulated for subsequent calls to Space.Update(float). Defaults to 3.
public int MaximumTimeStepsPerFrame
리턴 int

TimeStepDuration 공개적으로 프로퍼티

Length of each integration step. Calling a Space's Update() method moves time forward this much. The other method, Space.Update(float), will try to move time forward by the amount specified in the parameter by taking steps of TimeStepDuration size. Defaults to 1/60.
public float TimeStepDuration
리턴 float