Changeset 3429 in orxonox.OLD for orxonox/trunk/src
- Timestamp:
- Mar 1, 2005, 9:32:46 AM (20 years ago)
- Location:
- orxonox/trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/Makefile.in
r3427 r3429 318 318 esac; \ 319 319 done; \ 320 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/Makefile'; \320 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \ 321 321 cd $(top_srcdir) && \ 322 $(AUTOMAKE) -- gnusrc/Makefile322 $(AUTOMAKE) --foreign src/Makefile 323 323 .PRECIOUS: Makefile 324 324 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/importer/Makefile.in
r3427 r3429 215 215 esac; \ 216 216 done; \ 217 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/importer/Makefile'; \217 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/importer/Makefile'; \ 218 218 cd $(top_srcdir) && \ 219 $(AUTOMAKE) -- gnusrc/importer/Makefile219 $(AUTOMAKE) --foreign src/importer/Makefile 220 220 .PRECIOUS: Makefile 221 221 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/skysphere.cc
r3422 r3429 53 53 Skysphere::~Skysphere() 54 54 { 55 PRINTF(3)("Deleting the SkySphere\n"); 55 56 delete skyMaterial; 56 57 free(sphereObj); … … 63 64 void Skysphere::initialize(char* fileName) 64 65 { 66 PRINTF(1)("initializing the Skysphere with Material %s.\n", fileName); 65 67 this->sphereObj = gluNewQuadric(); 66 68 gluQuadricTexture(this->sphereObj, GL_TRUE); -
orxonox/trunk/src/world.cc
r3428 r3429 67 67 this->localCamera->destroy(); 68 68 69 this->nullParent->destroy (); 69 this->nullParent->destroy(); 70 71 delete this->skySphere; 70 72 71 73 //delete this->trackManager; … … 360 362 this->getCamera()->bind (myPlayer); 361 363 this->localPlayer->addChild (this->localCamera); 364 365 // Create SkySphere 366 skySphere = new Skysphere("../data/pictures/sky-replace.jpg"); 367 362 368 break; 369 370 363 371 } 364 372 default:
Note: See TracChangeset
for help on using the changeset viewer.