mirror of
https://github.com/OpenMW/openmw.git
synced 2025-06-26 23:11:33 +00:00
Fix for crash in main menu when reflections are enabled
This commit is contained in:
parent
db086a4d89
commit
58672c6bb5
2 changed files with 6 additions and 3 deletions
|
@ -50,6 +50,7 @@ namespace MWRender
|
|||
|
||||
void Refraction::preRenderTargetUpdate(const Ogre::RenderTargetEvent& evt)
|
||||
{
|
||||
if (mParentCamera->isAttached())
|
||||
mParentCamera->getParentSceneNode ()->needUpdate ();
|
||||
mCamera->setOrientation(mParentCamera->getDerivedOrientation());
|
||||
mCamera->setPosition(mParentCamera->getDerivedPosition());
|
||||
|
|
|
@ -74,6 +74,7 @@ CubeReflection::~CubeReflection ()
|
|||
|
||||
void CubeReflection::update ()
|
||||
{
|
||||
if (mParentCamera->isAttached())
|
||||
mParentCamera->getParentSceneNode ()->needUpdate ();
|
||||
mCamera->setPosition(mParentCamera->getDerivedPosition());
|
||||
}
|
||||
|
@ -133,6 +134,7 @@ void PlaneReflection::renderQueueEnded (Ogre::uint8 queueGroupId, const Ogre::St
|
|||
|
||||
void PlaneReflection::preRenderTargetUpdate(const Ogre::RenderTargetEvent& evt)
|
||||
{
|
||||
if (mParentCamera->isAttached())
|
||||
mParentCamera->getParentSceneNode ()->needUpdate ();
|
||||
mCamera->setOrientation(mParentCamera->getDerivedOrientation());
|
||||
mCamera->setPosition(mParentCamera->getDerivedPosition());
|
||||
|
|
Loading…
Reference in a new issue