Changeset 6781 in orxonox.OLD for branches/network/src/world_entities/image_entity.cc
- Timestamp:
- Jan 26, 2006, 7:15:22 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/world_entities/image_entity.cc
r6696 r6781 49 49 { 50 50 if (this->material) 51 delete this->material; 52 53 // delete what has to be deleted here 54 55 GraphicsEngine::showMouse(true); 56 GraphicsEngine::stealWMEvents(false); 51 delete this->material; 57 52 } 58 53 … … 90 85 .describe("the Speed with which the ImageEntity should rotate"); 91 86 92 LoadParam(root, "billboarding", this, ImageEntity, toggleBillboard )93 .describe("sets the ImageEntityto always look in the direction of the Player");87 LoadParam(root, "billboarding", this, ImageEntity, toggleBillboarding) 88 .describe("sets the Billboard to always look in the direction of the Player"); 94 89 } 95 90 … … 119 114 * This means that the image will always look in the direction of the Player 120 115 */ 121 void ImageEntity::toggleBillboard ()116 void ImageEntity::toggleBillboarding() 122 117 { 123 118 this->bBillboarding = !this->bBillboarding;
Note: See TracChangeset
for help on using the changeset viewer.