Hello, Everyone!
What is the best approach for batching ticks in systems that depend on individual tick inputs ?
EG: We need to re-simulate the last 10 ticks. If we set MaxPredictionStepBatchSizeRepeatedTick to 2, those 10 ticks will be reduced to 5, and each tick’s deltatime will be multiplied by 2. However, this approach presents a challenge, especially for systems like the MovementSystem, which require simulating each tick with some different input data. the simulation is likely to result in frequent mispredictions.
Thanks !