Changeset 5671 in orxonox.OLD for trunk/src/lib/gui/gl_gui/glmenu
- Timestamp:
- Nov 21, 2005, 3:50:41 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/gui/gl_gui/glmenu/glmenu_imagescreen.cc
r5655 r5671 57 57 void GLMenuImageScreen::loadParams(const TiXmlElement* root) 58 58 { 59 LoadParam NEW(root, "BackgroundImage", this, GLMenuImageScreen, setBackgroundImage)59 LoadParam(root, "BackgroundImage", this, GLMenuImageScreen, setBackgroundImage) 60 60 .describe("sets the image to load onto the loadscreen"); 61 61 62 LoadParam NEW(root, "BackgroundPS", this, GLMenuImageScreen, setPosScale)62 LoadParam(root, "BackgroundPS", this, GLMenuImageScreen, setPosScale) 63 63 .describe("The Position and Scale of the Background Image in %(0-1.0). PosX, PosY, SizeX, SizeY"); 64 64 65 LoadParam NEW(root, "BarImage", this, GLMenuImageScreen, setBarImage)65 LoadParam(root, "BarImage", this, GLMenuImageScreen, setBarImage) 66 66 .describe("sets the image of the LoadingBar"); 67 67 68 LoadParam NEW(root, "BarPS", this, GLMenuImageScreen, setBarPosScale)68 LoadParam(root, "BarPS", this, GLMenuImageScreen, setBarPosScale) 69 69 .describe("The Position and Scale of the Loading Bar in %(0-1.0). PosX, PosY, SizeX, SizeY"); 70 70 71 LoadParam NEW(root, "ElementCount", this, GLMenuImageScreen, setMaximum)71 LoadParam(root, "ElementCount", this, GLMenuImageScreen, setMaximum) 72 72 .describe("The Count of elements to load into the bar (this is only a maximum value)"); 73 73 }
Note: See TracChangeset
for help on using the changeset viewer.