minor change: default FOV should be 70

This commit is contained in:
sorket 2023-07-15 23:44:13 -04:00
parent 5404460fce
commit 327ac423d7
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ namespace RNR
ogreCamera->setNearClipDistance(0.1); // specific to this sample
ogreCamera->setFarClipDistance(5000.f);
ogreCamera->setAutoAspectRatio(true);
ogreCamera->setFOVy(Ogre::Degree(60.f));
ogreCamera->setFOVy(Ogre::Degree(70.f));
camNode->attachObject(ogreCamera);
ogreViewport = ogreWindow->addViewport(ogreCamera);