Skip to content

Commit 13e7589

Browse files
RealBadAngelparamat
authored andcommittedJan 18, 2016
Fix wield item glitch
1 parent 22bc66d commit 13e7589

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/camera.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -646,7 +646,7 @@ void Camera::drawWieldedTool(irr::core::matrix4* translation)
646646
scene::ICameraSceneNode* cam = m_wieldmgr->getActiveCamera();
647647
cam->setAspectRatio(m_cameranode->getAspectRatio());
648648
cam->setFOV(72.0*M_PI/180.0);
649-
cam->setNearValue(0.1);
649+
cam->setNearValue(10);
650650
cam->setFarValue(1000);
651651
if (translation != NULL)
652652
{

0 commit comments

Comments
 (0)
Please sign in to comment.