| 177 | } |
| 178 | |
| 179 | void CreatureOverlayStatus::update(Ogre::Real timeSincelastFrame) |
| 180 | { |
| 181 | // If the creature is not on map, we do not display the overlays |
| 182 | mMovableTextOverlay->setVisible(mCreature->getIsOnMap()); |
| 183 | |
| 184 | updateHealth(); |
| 185 | updateStatus(timeSincelastFrame); |
| 186 | |
| 187 | mMovableTextOverlay->update(timeSincelastFrame); |
| 188 | } |
nothing calls this directly
no test coverage detected