Changeset 10317 in orxonox.OLD for trunk/src/lib/gui
- Timestamp:
- Jan 24, 2007, 1:30:29 AM (18 years ago)
- Location:
- trunk/src/lib/gui/gl
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/gui/gl/glgui_container.cc
r9869 r10317 43 43 this->registerObject(this, GLGuiContainer::_objectList); 44 44 45 this->setBackgroundTexture(" gui_container_background.png");45 this->setBackgroundTexture("textures/gui/gui_container_background.png"); 46 46 47 47 } -
trunk/src/lib/gui/gl/glgui_cursor.cc
r9869 r10317 58 58 59 59 this->setBackgroundColor(Color(1.0, 1.0, 1.0, 1.0)); 60 this->setBackgroundTexture(" cursor.png");60 this->setBackgroundTexture("textures/menu/cursor.png"); 61 61 this->setSize2D(50, 50); 62 62 this->setAbsCoor2D(100, 100); -
trunk/src/lib/gui/gl/glgui_handler.cc
r9869 r10317 77 77 this->_cursor->setMaxBorders(Vector2D(GraphicsEngine::getInstance()->getResolutionX(), GraphicsEngine::getInstance()->getResolutionY())); 78 78 79 _cursor->loadTextureSequence(Resources::ResourceManager::getInstance()->mainGlobalPath().name() + "/" + " maps/reap_mouse/reap_mouse_##.png", 1, 49);79 _cursor->loadTextureSequence(Resources::ResourceManager::getInstance()->mainGlobalPath().name() + "/" + "textures/reap_mouse/reap_mouse_##.png", 1, 49); 80 80 81 81 } -
trunk/src/lib/gui/gl/glgui_widget.cc
r9869 r10317 127 127 128 128 this->setBorderLeft(15); 129 this->setBackgroundTexture(" gui_element_background.png");129 this->setBackgroundTexture("textures/gui/gui_element_background.png"); 130 130 131 131 this->switchState(_state);
Note: See TracChangeset
for help on using the changeset viewer.