(self, newroot)
| 44 | self._root = first_root |
| 45 | |
| 46 | def update(self, newroot): |
| 47 | delta_root = newroot - self._root |
| 48 | |
| 49 | self.camera.location.x += delta_root[0] |
| 50 | self.camera.location.y += delta_root[1] |
| 51 | |
| 52 | self._root = newroot |
no outgoing calls
no test coverage detected