- Timestamp:
- May 20, 2009, 9:01:17 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pickups2/src/orxonox/objects/pickup/BaseItem.cc
r2972 r3001 52 52 this->setOwner(0); 53 53 this->setPickupIdentifier(this->getName()); 54 this->setGUIImage(""); 55 this->setGUIText(""); 54 56 } 55 57 //! Deconstructor. … … 68 70 69 71 XMLPortParam(BaseItem, "guiText", setGUIText, getGUIText, xmlelement, mode); 70 XMLPortParam(BaseItem, "guiTooltip", setGUITooltip, getGUITooltip, xmlelement, mode);71 72 XMLPortParam(BaseItem, "guiImage", setGUIImage, getGUIImage, xmlelement, mode); 72 73 } … … 103 104 return true; 104 105 } 106 107 const std::string& BaseItem::getGUIText() const { return this->guiText_; } 105 108 }
Note: See TracChangeset
for help on using the changeset viewer.