public interface IGridTickable
| Modifier and Type | Method and Description |
|---|---|
TickingRequest |
getTickingRequest(IGridNode node)
Return a valid TickingRequest to tell AE a guide for which type of
responsiveness your device wants.
|
TickRateModulation |
tickingRequest(IGridNode node,
int ticksSinceLastCall)
AE lets you adjust your tick rate based on the results of your tick, if
your block as accomplished work you may wish to increase the ticking
speed, if your block is idle you may wish to slow it down.
|
@Nonnull TickingRequest getTickingRequest(@Nonnull IGridNode node)
@Nonnull TickRateModulation tickingRequest(@Nonnull IGridNode node, int ticksSinceLastCall)
ticksSinceLastCall - the number of world ticks that were skipped since your last
tick, you can use this to adjust speed of processing or adjust
your tick rate.