def _onUpdate(self, _timeSinceLastFrame): """Notification on update """ BaseLogic._update(self, _timeSinceLastFrame) if self.needGridUpdate: self.needGridUpdate = False self.updateGrid()
def _onUpdate(self, _timeSinceLastFrame): """Logic update """ BaseLogic._update(self, _timeSinceLastFrame) self._updateVideo(_timeSinceLastFrame) self._updateState()
def _onUpdate(self, _timeSinceLastFrame): BaseLogic._update(self, _timeSinceLastFrame) self.__viewer._onUpdate(_timeSinceLastFrame)
def _onUpdate(self, _timeSinceLastFrame): """Logic update """ BaseLogic._update(self, _timeSinceLastFrame) self._updateState() self._onContentUpdate()