- Timestamp:
- Jul 28, 2011, 5:24:32 PM (13 years ago)
- Location:
- code/branches/ai2
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/ai2/data/levels/lastTeamStanding.oxw
r8706 r8793 47 47 </StaticEntity> 48 48 49 <PickupSpawner position="-160,65,10" triggerDistance="10" respawnTime="5" maxSpawnedItems="10"><!--EasterEgg--> 50 <pickup> 51 <InvisiblePickup template=mediuminvisiblepickup /> 52 </pickup> 53 </PickupSpawner> 54 <PickupSpawner position="-160,60,17" triggerDistance="10" respawnTime="5" maxSpawnedItems="10"><!--EasterEgg--> 49 <PickupSpawner position="-160,60,17" triggerDistance="20" respawnTime="5" maxSpawnedItems="10"><!--EasterEgg--> 55 50 <pickup> 56 51 <InvisiblePickup template=hugeinvisiblepickup /> -
code/branches/ai2/src/orxonox/controllers/ArtificialController.cc
r8792 r8793 104 104 if (this->isInitialized()) 105 105 {//Vector-implementation: mode_.erase(mode_.begin(),mode_.end()); 106 for (size_t i = 0; i < this->waypoints_.size(); ++i) 107 { 108 if(this->waypoints_[i]) 109 this->waypoints_[i]->destroy(); 110 } 111 //this->waypoints_.clear(); 106 this->waypoints_.clear(); 112 107 this->removeFromFormation(); 113 108 this->weaponModes_.clear(); -
code/branches/ai2/src/orxonox/controllers/WaypointController.cc
r8786 r8793 45 45 WaypointController::~WaypointController() 46 46 { 47 for (size_t i = 0; i < this->waypoints_.size(); ++i) 48 { 49 if(this->waypoints_[i]) 50 this->waypoints_[i]->destroy(); 51 } 47 52 } 48 53
Note: See TracChangeset
for help on using the changeset viewer.