Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 12, 2008, 1:44:09 PM (17 years ago)
Author:
rgrieder
Message:

Reverted all changes of attempt to update physics branch.

Location:
code/branches/physics
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/physics

  • code/branches/physics/src/orxonox/objects/Scene.h

    r2087 r2192  
    3636#include "util/Math.h"
    3737
     38#include "ogrebullet/Dynamics/OgreBulletDynamics.h"
     39
    3840namespace orxonox
    3941{
     
    5153            inline Ogre::SceneNode* getRootSceneNode() const
    5254                { return this->rootSceneNode_; }
     55
     56            inline btDiscreteDynamicsWorld* getPhysicalWorld() const
     57                { return this->dynamicsWorld_; }
    5358
    5459            void setSkybox(const std::string& skybox);
     
    7580            Ogre::SceneManager*    sceneManager_;
    7681            Ogre::SceneNode*       rootSceneNode_;
     82
     83            btDiscreteDynamicsWorld* dynamicsWorld_;
     84            btSequentialImpulseConstraintSolver* solver_;
     85            btDefaultCollisionConfiguration* collisionConfiguration_;
     86            btCollisionDispatcher* dispatcher_;
     87            // Point auf Bullet btDynamics world && solver
     88
    7789            std::string            skybox_;
    7890            ColourValue            ambientLight_;
Note: See TracChangeset for help on using the changeset viewer.