timing - eisclimber/ExPresS-XR GitHub Wiki
Classes for timing.
| Name | Description |
|---|---|
| DelayTimer | A timer with an initial delay. |
| Stopwatch | A stopwatch allowing to measure the time from a start time. |
| Timer | A timer counting down time. |
| TimingUnit | Represents the internal logic of a timer counting down time. |
Must be updated manually to process. This should ideally be done in the FixedUpdate() function providing Time.fixedDeltaTime.
Important: Declare and instantiate the timing unit to prevent null errors: private TimingUnit _timingUnit = new();|