MCPcopy Create free account
hub / github.com/badvision/jace / __doTickIsRunning

Method __doTickIsRunning

src/main/java/jace/core/Device.java:130–141  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

128 }
129
130 private void __doTickIsRunning() {
131 for (Device d : childrenArray) {
132 if (d.isRunning() && !d.isPaused()) {
133 d.doTick();
134 }
135 }
136 if (waitCycles <= 0) {
137 tick();
138 return;
139 }
140 waitCycles--;
141 }
142
143 private void __doTickNoDevices() {
144 if (waitCycles <= 0) {

Callers

nothing calls this directly

Calls 4

tickMethod · 0.95
isPausedMethod · 0.80
isRunningMethod · 0.45
doTickMethod · 0.45

Tested by

no test coverage detected