//------------------------------------------------------------------------- void PagingLandScapePage::setRenderQueue(uint8 qid) { if (mPageState == STATE_LOADED && mVisible) { for (size_t i = 0; i < mTiles.size(); ++i) { for (size_t j = 0; j < mTiles[i].size(); ++j) { PagingLandScapeTile* t = mTiles[i][j]; if (t->isVisible()) { t->setRenderQueueGroup(qid); } } } } }
//------------------------------------------------------------------------- void PagingLandScapePage::updateLod() { if (mPageState == STATE_LOADED) { for (size_t i = 0; i < mTiles.size(); ++i) { for (size_t j = 0; j < mTiles[i].size(); ++j) { PagingLandScapeTile* t = mTiles[i][j]; if (t->isVisible()) { t->_updateLod(); } } } } }