Changeset 11899 for code/branches/OrxyRoad_FS18/src/modules
- Timestamp:
- Apr 24, 2018, 10:32:56 AM (7 years ago)
- Location:
- code/branches/OrxyRoad_FS18/src/modules/orxyroad
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/OrxyRoad_FS18/src/modules/orxyroad/CMakeLists.txt
r11888 r11899 1 SET_SOURCE_FILES(Orxy Road_SRC_FILES1 SET_SOURCE_FILES(Orxyroad_SRC_FILES 2 2 OrxyRoad.cc 3 3 OrxyRoadCenterPoint.cc … … 14 14 orxonox 15 15 overlays 16 SOURCE_FILES ${Orxy Road_SRC_FILES}16 SOURCE_FILES ${Orxyroad_SRC_FILES} 17 17 ) -
code/branches/OrxyRoad_FS18/src/modules/orxyroad/OrxyRoad.cc
r11891 r11899 43 43 RegisterUnloadableClass(OrxyRoad); 44 44 45 OrxyRoad::OrxyRoad(Context* context) : Gametype(context)45 OrxyRoad::OrxyRoad(Context* context) : Deathmatch(context) 46 46 { 47 47 RegisterObject(OrxyRoad); … … 118 118 switch(pattern) 119 119 { 120 case 1: cube->addTemplate(" DodgeRaceCube01");120 case 1: cube->addTemplate("OrxyRoadCube01"); 121 121 break; 122 case 2: cube->addTemplate(" DodgeRaceCube01");122 case 2: cube->addTemplate("OrxyRoadCube01"); 123 123 break; 124 124 … … 191 191 return; 192 192 } 193 Deathmatch::start(); 193 194 } 194 195 … … 234 235 { 235 236 int score = this->getPoints(); 236 Highscore::getInstance().storeScore(" Dodge Race", score, this->playerInfo_);237 Highscore::getInstance().storeScore("Orxy Road ", score, this->playerInfo_); 237 238 } 238 239 GSLevel::startMainMenu(); -
code/branches/OrxyRoad_FS18/src/modules/orxyroad/OrxyRoad.h
r11886 r11899 57 57 #include "core/command/ConsoleCommand.h" 58 58 59 #include "gametypes/ Gametype.h"59 #include "gametypes/Deathmatch.h" 60 60 #include "tools/Timer.h" 61 61 … … 63 63 { 64 64 65 class _OrxyRoadExport OrxyRoad : public Gametype65 class _OrxyRoadExport OrxyRoad : public Deathmatch 66 66 { 67 67 public: -
code/branches/OrxyRoad_FS18/src/modules/orxyroad/OrxyRoadCube.cc
r11838 r11899 1 1 2 /* ORXONOX - the hottest 3D action shooter ever to exist 2 3 * > www.orxonox.net < -
code/branches/OrxyRoad_FS18/src/modules/orxyroad/OrxyRoadShip.cc
r11884 r11899 55 55 void OrxyRoadShip::tick(float dt) 56 56 { 57 orxout(user_info) << "This is some cool output!" << endl; 58 57 59 Vector3 pos = getPosition(); 58 60
Note: See TracChangeset
for help on using the changeset viewer.