| 1400 | } |
| 1401 | |
| 1402 | void RenderManager::rrToggleHandSelectorVisibility() |
| 1403 | { |
| 1404 | if((mHandKeeperHandVisibility & 0x01) == 0) |
| 1405 | mHandKeeperHandVisibility |= 0x01; |
| 1406 | else |
| 1407 | mHandKeeperHandVisibility &= ~0x01; |
| 1408 | |
| 1409 | mHandKeeperNode->setVisible(mHandKeeperHandVisibility == 0); |
| 1410 | } |
| 1411 | |
| 1412 | void RenderManager::setEntityOpacity(Ogre::Entity* ent, float opacity) |
| 1413 | { |
no test coverage detected