()
| 1217 | } |
| 1218 | |
| 1219 | function applyInputs () { |
| 1220 | if (splatStack.length > 0) |
| 1221 | multipleSplats(splatStack.pop()); |
| 1222 | |
| 1223 | pointers.forEach(p => { |
| 1224 | if (p.moved) { |
| 1225 | p.moved = false; |
| 1226 | splatPointer(p); |
| 1227 | } |
| 1228 | }); |
| 1229 | } |
| 1230 | |
| 1231 | function step (dt) { |
| 1232 | gl.disable(gl.BLEND); |
no test coverage detected