| FixedStepTimerStepSize Property |
Gets or sets the minimal size of a time step.
Namespace: DigitalRune.Game.TimingAssembly: DigitalRune.Game (in DigitalRune.Game.dll) Version: 1.4.0.0 (1.4.0.14427)
Syntax public TimeSpan StepSize { get; set; }
Public Property StepSize As TimeSpan
Get
Set
public:
property TimeSpan StepSize {
TimeSpan get ();
void set (TimeSpan value);
}
member StepSize : TimeSpan with get, set
Property Value
Type:
TimeSpanThe minimal size of a time step. The default value is 1/60 seconds.
Exceptions Remarks StepSize defines the minimal size of a time step. The size of a time step will
be StepSize or an integer multiple thereof (maximal:
MaxNumberOfSteps ∙ StepSize).
See Also