| 2510 | } |
| 2511 | |
| 2512 | int CScriptObjectSystem::GetViewCameraPos(IFunctionHandler *pH) |
| 2513 | { |
| 2514 | CHECK_PARAMETERS(0); |
| 2515 | CCamera &Camera=m_pSystem->GetViewCamera(); |
| 2516 | CScriptObjectVector oVec(m_pScriptSystem); |
| 2517 | oVec.Set(Camera.GetPos()); |
| 2518 | return pH->EndFunction(*oVec); |
| 2519 | } |
| 2520 | |
| 2521 | int CScriptObjectSystem::RayWorldIntersection(IFunctionHandler *pH) |
| 2522 | { |
nothing calls this directly
no test coverage detected