Changeset 7888 in orxonox.OLD for branches/gui
- Timestamp:
- May 27, 2006, 2:55:04 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/src/lib/gui/gl_gui/glgui_pushbutton.cc
r7883 r7888 53 53 { 54 54 printf("%s received focus\n", this->getLabel().c_str()); 55 this->frontMaterial().setDiffuse(0, 1, 0); 56 55 57 56 58 Vector test; … … 61 63 { 62 64 printf("%s removed focus\n", this->getLabel().c_str()); 65 this->frontMaterial().setDiffuse(1, 0, 0); 63 66 64 67 } … … 67 70 { 68 71 printf("%s clicked\n", this->getLabel().c_str()); 72 this->frontMaterial().setDiffuse(0, 0, 1); 69 73 } 70 74
Note: See TracChangeset
for help on using the changeset viewer.