Interface IUnityService
Interface for managing static information from unity classes.
Namespace: nickmaltbie.TestUtilsUnity
Assembly: cs.temp.dll.dll
Syntax
public interface IUnityService
Properties
deltaTime
Get the current delta time in seconds between this and last frame
Declaration
float deltaTime { get; }
Property Value
Type | Description |
---|---|
Single | The current delta time between this and the previous frame |
fixedDeltaTime
Get the current fixed delta time for physics based update
Declaration
float fixedDeltaTime { get; }
Property Value
Type | Description |
---|---|
Single | the delta time shown by the fixed delta time |
time
Gets the current time in seconds since start of the game
Declaration
float time { get; }
Property Value
Type | Description |
---|---|
Single | Time in seconds since the start of the game |