| 184 | } |
| 185 | |
| 186 | void CharCreationPane::tick(float dt) { |
| 187 | Pane::tick(dt); |
| 188 | if (!active()) |
| 189 | return; |
| 190 | if (!m_previewPlayer) |
| 191 | return; |
| 192 | m_previewPlayer->animatePortrait(dt); |
| 193 | } |
| 194 | |
| 195 | bool CharCreationPane::sendEvent(InputEvent const& event) { |
| 196 | if (active() && m_previewPlayer) { |
nothing calls this directly
no test coverage detected