| 476 | pSelf->GameClient()->m_MultiViewPersonalZoom = TargetLevel - 10.0f; |
| 477 | } |
| 478 | void CCamera::ConSetView(IConsole::IResult *pResult, void *pUserData) |
| 479 | { |
| 480 | CCamera *pSelf = (CCamera *)pUserData; |
| 481 | // wait until free view camera type to update the position |
| 482 | pSelf->SetView(ivec2(pResult->GetInteger(0), pResult->GetInteger(1))); |
| 483 | } |
| 484 | void CCamera::ConSetViewRelative(IConsole::IResult *pResult, void *pUserData) |
| 485 | { |
| 486 | CCamera *pSelf = (CCamera *)pUserData; |
nothing calls this directly
no test coverage detected