Changeset 159 for code/branches/main_reto_vs05/include/orxonox_scene.h
- Timestamp:
- Nov 3, 2007, 11:06:43 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/main_reto_vs05/include/orxonox_scene.h
r157 r159 43 43 virtual bool initialise(); 44 44 45 virtual void tick(unsigned long, float);45 virtual bool tick(unsigned long, Real); 46 46 47 private: 48 SceneManager* mSceneMgr; 47 protected: 48 /// method where you can perform resource group loading 49 virtual void loadResources(); 50 51 /// Define what is in the scene 52 virtual void createScene(); 53 54 protected: 55 SceneManager* sceneMgr_; 49 56 50 57 //specific variables for test purposes 51 Light *mLight; 52 SceneNode *lightNode; 53 BillboardSet *bbs; 54 float distance, radius; 58 Light *light_; 59 SceneNode *lightNode_; 60 BillboardSet *bbs_; 61 Real distance_; 62 Real radius_; 63 }; 55 64 56 /// method where you can perform resource group loading57 virtual void loadResources(void);58 59 // Define what is in the scene60 virtual void createScene(void);61 };62 65 #endif /* ORXONOX_SCENE_H */
Note: See TracChangeset
for help on using the changeset viewer.