Changeset 2192 for code/branches/physics/src/orxonox/objects/Scene.h
- Timestamp:
- Nov 12, 2008, 1:44:09 PM (17 years ago)
- Location:
- code/branches/physics
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/physics
- Property svn:mergeinfo changed
/code/branches/physics (added) merged: 1913,1919-1920,1922-1925,1933,1963-1967,1971-1974,1983-1988,1995,2047
- Property svn:mergeinfo changed
-
code/branches/physics/src/orxonox/objects/Scene.h
r2087 r2192 36 36 #include "util/Math.h" 37 37 38 #include "ogrebullet/Dynamics/OgreBulletDynamics.h" 39 38 40 namespace orxonox 39 41 { … … 51 53 inline Ogre::SceneNode* getRootSceneNode() const 52 54 { return this->rootSceneNode_; } 55 56 inline btDiscreteDynamicsWorld* getPhysicalWorld() const 57 { return this->dynamicsWorld_; } 53 58 54 59 void setSkybox(const std::string& skybox); … … 75 80 Ogre::SceneManager* sceneManager_; 76 81 Ogre::SceneNode* rootSceneNode_; 82 83 btDiscreteDynamicsWorld* dynamicsWorld_; 84 btSequentialImpulseConstraintSolver* solver_; 85 btDefaultCollisionConfiguration* collisionConfiguration_; 86 btCollisionDispatcher* dispatcher_; 87 // Point auf Bullet btDynamics world && solver 88 77 89 std::string skybox_; 78 90 ColourValue ambientLight_;
Note: See TracChangeset
for help on using the changeset viewer.