Interface IRepeatedlyExecuteEventArgs
Event arguments for the OnRepeatedlyExecute event.
Namespace: AGS.API
Assembly: AGS.API.dll
Syntax
public interface IRepeatedlyExecuteEventArgs
Properties
| Improve this Doc View SourceDeltaTime
Gets the delta time in seconds from the last tick (the last update event). You can use it to achieve framerate independence for custom movements. See here: https://www.scirra.com/tutorials/67/delta-time-and-framerate-independence
Declaration
double DeltaTime { get; }
Property Value
Type | Description |
---|---|
System.Double | The delta time. |