Changeset 11700 for code/trunk/src/modules/pickup
- Timestamp:
- Jan 6, 2018, 12:15:25 AM (7 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
/code/branches/HUD_HS16 merged: 11395,11497-11499,11501-11502,11510,11540,11558
- Property svn:mergeinfo changed
-
code/trunk/src/modules/pickup/PickupManager.cc
r11353 r11700 103 103 // Destroying all the WeakPointers that are still there. 104 104 this->pickups_.clear(); 105 106 105 this->indexes_.clear(); 107 106 108 orxout( internal_info, context::pickups) << "PickupManager destroyed." << endl;107 orxout() << "PickupManager destroyed." << endl; 109 108 } 110 109 … … 266 265 assert(pickup); 267 266 267 orxout() << "just got called"<<endl; 268 268 for (HUDPickupSystem* hud : ObjectList<HUDPickupSystem>()) 269 269 pickupSystem = hud; … … 300 300 301 301 if(pickupSystem) 302 pickupSystem-> updatePickupList(picks, indexes_);302 pickupSystem->sync(picks, indexes_); 303 303 304 304 } … … 316 316 317 317 if(pickupSystem) 318 pickupSystem->removePickup(pickup); 318 pickupSystem->sync(picks, indexes_); 319 orxout() << "end of pickupChangedPickedUp" << endl; 319 320 } 320 321
Note: See TracChangeset
for help on using the changeset viewer.