mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-25 06:35:30 +00:00
empty functions
This commit is contained in:
parent
a3a1b82929
commit
9126bb27b6
@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
namespace MWRender {
|
namespace MWRender {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
RenderingManager::RenderingManager (SkyManager *skyManager) :
|
RenderingManager::RenderingManager (SkyManager *skyManager) :
|
||||||
mSkyManager(skyManager)
|
mSkyManager(skyManager)
|
||||||
{
|
{
|
||||||
@ -13,6 +15,37 @@ RenderingManager::~RenderingManager ()
|
|||||||
delete mSkyManager;
|
delete mSkyManager;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void RenderingManager::removeCell (MWWorld::Ptr::CellStore *store){
|
||||||
|
|
||||||
|
}
|
||||||
|
void RenderingManager::addObject (const MWWorld::Ptr& ptr, MWWorld::Ptr::CellStore *store){
|
||||||
|
|
||||||
|
}
|
||||||
|
void RenderingManager::removeObject (const MWWorld::Ptr& ptr, MWWorld::Ptr::CellStore *store){
|
||||||
|
|
||||||
|
}
|
||||||
|
void RenderingManager::moveObject (const MWWorld::Ptr& ptr, const Ogre::Vector3& position){
|
||||||
|
|
||||||
|
}
|
||||||
|
void RenderingManager::scaleObject (const MWWorld::Ptr& ptr, const Ogre::Vector3& scale){
|
||||||
|
|
||||||
|
}
|
||||||
|
void RenderingManager::rotateObject (const MWWorld::Ptr& ptr, const::Ogre::Quaternion& orientation){
|
||||||
|
|
||||||
|
}
|
||||||
|
void RenderingManager::moveObjectToCell (const MWWorld::Ptr& ptr, const Ogre::Vector3& position, MWWorld::Ptr::CellStore *store){
|
||||||
|
|
||||||
|
}
|
||||||
|
void RenderingManager::setPhysicsDebugRendering (bool){
|
||||||
|
|
||||||
|
}
|
||||||
|
bool RenderingManager::getPhysicsDebugRendering() const{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
void RenderingManager::update (float duration){
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void RenderingManager::skyEnable ()
|
void RenderingManager::skyEnable ()
|
||||||
{
|
{
|
||||||
mSkyManager->enable();
|
mSkyManager->enable();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user