Changeset 7840 for code/branches/ai
- Timestamp:
- Jan 31, 2011, 9:30:13 PM (14 years ago)
- Location:
- code/branches/ai/src/orxonox/controllers
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/ai/src/orxonox/controllers/AIController.cc
r7833 r7840 26 26 * 27 27 */ 28 28 //TODO: intended behaviour: when a bot has a target_ it shouldn't move away. 29 29 #include "AIController.h" 30 30 -
code/branches/ai/src/orxonox/controllers/ArtificialController.cc
r7834 r7840 51 51 SetConsoleCommand("ArtificialController", "followme", &ArtificialController::followme); 52 52 SetConsoleCommand("ArtificialController", "passivebehaviour", &ArtificialController::passivebehaviour); 53 SetConsoleCommand("ArtificialController", "formationsize", &ArtificialController::formationsize); 53 SetConsoleCommand("ArtificialController", "botlevel", &ArtificialController::setBotLevel); 54 54 55 55 56 static const unsigned int STANDARD_MAX_FORMATION_SIZE = 7; … … 86 87 this->bSetupWorked = false; 87 88 this->numberOfWeapons = 0; 88 this->botlevel_ = 1 .0f;89 this->botlevel_ = 10.0f; 89 90 } 90 91
Note: See TracChangeset
for help on using the changeset viewer.