Interface for BeforeAllTicks callback. Called before the re-simulation loop (when applicable), and also before the forward simulation loop. Implement this interface on SimulationBehaviour and NetworkBehaviour classes. More...
Inherits IPublicFacingInterface.
Inherited by NetworkTransform.
Public Member Functions | |
void | BeforeAllTicks (bool resimulation, int tickCount) |
Called before the re-simulation loop (when applicable), and also before the forward simulation loop. Only called on Updates where re-simulation or forward ticks are processed. More... | |
Interface for BeforeAllTicks callback. Called before the re-simulation loop (when applicable), and also before the forward simulation loop. Implement this interface on SimulationBehaviour and NetworkBehaviour classes.
void BeforeAllTicks | ( | bool | resimulation, |
int | tickCount | ||
) |
Called before the re-simulation loop (when applicable), and also before the forward simulation loop. Only called on Updates where re-simulation or forward ticks are processed.
resimulation | True if this is being called during the re-simulation loop. False if during the forward simulation loop. |
tickCount | How many re-simulation or forward ticks are going to be processed. |