-
Right now I'm parsing to a specific tick using a for loop and
This code is really slow unlike using
|
Beta Was this translation helpful? Give feedback.
Answered by
markus-wa
May 31, 2022
Replies: 1 comment 1 reply
-
Hi @srjnm Great question! Basically I would never recommend using Instead you should
also, hope that makes sense |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
srjnm
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @srjnm
Great question!
Basically I would never recommend using
ParseNextFrame()
.Instead you should
RegisterEventHandler()
andUnregisterEventHandler()
also,
r.GameState().IngameTick() < endTick
may not work, as the last tick from the header is often not correcthope that makes sense