MCPcopy Create free account
hub / github.com/Vaei/PredictedMovement / Update

Function Update

Source/PredictedMovement/Public/Modifier/ModifierTypes.h:445–452  ·  view source on GitHub ↗

* Updates the time remaining for each client auth data in the stack * And removes any data that has expired (TimeRemaining <= 0) */

Source from the content-addressed store, hash-verified

443 * And removes any data that has expired (TimeRemaining <= 0)
444 */
445 void Update(float DeltaTime)
446 {
447 Stack.RemoveAll([DeltaTime](FClientAuthData& Data)
448 {
449 Data.TimeRemaining -= DeltaTime;
450 return Data.TimeRemaining <= 0.f;
451 });
452 }
453};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected