Added reference of Camera::SetTarget

Former-commit-id: 5a3d1f28de326325093d358e32991ce2c404ec84
This commit is contained in:
Lynix
2013-03-05 15:08:46 +01:00
parent 7e60bc2d81
commit f4a5ddc26b
2 changed files with 6 additions and 0 deletions

View File

@@ -172,6 +172,11 @@ void NzCamera::SetTarget(const NzRenderTarget* renderTarget)
m_target = renderTarget;
}
void NzCamera::SetTarget(const NzRenderTarget& renderTarget)
{
SetTarget(&renderTarget);
}
void NzCamera::SetUpVector(const NzVector3f& upVector)
{
m_upVector = upVector;