| 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; |
| 487 | // wait until free view camera type to update the position |
| 488 | pSelf->SetView(ivec2(pResult->GetInteger(0), pResult->GetInteger(1)), true); |
| 489 | } |
| 490 | void CCamera::ConGotoSwitch(IConsole::IResult *pResult, void *pUserData) |
| 491 | { |
| 492 | CCamera *pSelf = (CCamera *)pUserData; |
nothing calls this directly
no test coverage detected