Klasse LateUpdateEvent
java.lang.Object
net.risingworld.api.events.Event
net.risingworld.api.events.general.LateUpdateEvent
Called every tick after the UpdateEvent has been called. This can be useful to
order execution.
Attention: This is a high frequency event! Be careful when doing extensive computations in this event or calling blocking methods, since that may have a big impact on Performance!
Attention: This is a high frequency event! Be careful when doing extensive computations in this event or calling blocking methods, since that may have a big impact on Performance!
-
Feldübersicht
-
Konstruktorübersicht
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungfloat
getTpf()
Gets the time-per-frame, i.e the amount of seconds between the last call and this call.
-
Konstruktordetails
-
LateUpdateEvent
public LateUpdateEvent(float tpf)
-
-
Methodendetails
-
getTpf
public float getTpf()Gets the time-per-frame, i.e the amount of seconds between the last call and this call.- Gibt zurück:
- the time-per-frame (in seconds).
-