Changeset 6532 in orxonox.OLD for trunk/src/world_entities
- Timestamp:
- Jan 18, 2006, 1:20:02 PM (19 years ago)
- Location:
- trunk/src/world_entities
- Files:
-
- 2 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/Makefile.am
r6455 r6532 20 20 world_entities/terrain.cc \ 21 21 world_entities/satellite.cc \ 22 world_entities/movie_entity.cc \ 22 23 world_entities/character_attributes.cc \ 23 24 world_entities/test_entity.cc \ … … 68 69 world_entities/terrain.h \ 69 70 world_entities/satellite.h \ 71 world_entities/movie_entity.h \ 70 72 world_entities/character_attributes.h \ 71 73 world_entities/test_entity.h \ -
trunk/src/world_entities/movie_entity.cc
r6526 r6532 65 65 void MovieEntity::loadParams(const TiXmlElement* root) 66 66 { 67 static_cast<WorldEntity*>(this)->loadParams(root);67 WorldEntity::loadParams(root); 68 68 69 69 LoadParam(root, "name", this, MovieEntity, loadMovie); … … 107 107 if(counter != fps * timer) 108 108 { 109 counter = fps * timer;109 counter = (int)(fps * timer); 110 110 111 111 if (counter >= media_container->getFrameCount()) -
trunk/src/world_entities/movie_entity.h
r6526 r6532 35 35 virtual void tick (float time); 36 36 37 v oid loadParams(const TiXmlElement* root);37 virtual void loadParams(const TiXmlElement* root); 38 38 39 39 void loadMovie(const char* filename); -
trunk/src/world_entities/space_ships/space_ship.cc
r6518 r6532 123 123 PRINTF(4)("SPACESHIP INIT\n"); 124 124 125 EventHandler::getInstance()->grabEvents(true);125 //EventHandler::getInstance()->grabEvents(true); 126 126 127 127 bUp = bDown = bLeft = bRight = bAscend = bDescend = bRollL = bRollR = false;
Note: See TracChangeset
for help on using the changeset viewer.