Changeset 7307 in orxonox.OLD for trunk/src/story_entities
- Timestamp:
- Apr 16, 2006, 10:37:37 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/story_entities/game_world.cc
r7306 r7307 281 281 this->dataTank->music->printState(); 282 282 } 283 if (this->cycle == 500)283 if (this->cycle % 4 == 0) 284 284 this->dataTank->music->pause(); 285 if (this->cycle == 1000)285 if (this->cycle % 5 == 0) 286 286 this->dataTank->music->play(); 287 if (this->cycle == 1500)287 if (this->cycle % 11 == 0) 288 288 this->dataTank->music->stop(); 289 if (this->cycle == 2000)290 this->dataTank->music->play();291 292 293 289 } 294 290 }
Note: See TracChangeset
for help on using the changeset viewer.