Changeset 1407 for GTP/trunk/App/Games/Jungle_Rumble
- Timestamp:
- 09/18/06 03:12:50 (18 years ago)
- Location:
- GTP/trunk/App/Games/Jungle_Rumble
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/App/Games/Jungle_Rumble/src/GameManager.cpp
r1406 r1407 81 81 s += L"\n F3: PhysX Debugger\n F4: Music On/Off"; 82 82 s += L"\n F5 Opponent Fire On/Off"; 83 s += L"\n F6 Wrath of God"; 83 84 84 85 s += L"\n F9: DEPTH IMPOSTERS On/Off "; 85 86 if(this->gs.useDepthImposter) { s+= L"[is ON]"; } else { s+= L"[is OFF]"; } 87 s += L" <<< "; 86 88 87 89 s += L"\n F10: RAYTRACE EFFECTS On/Off "; 88 90 if(this->gs.useRaytracer) { s+= L"[is ON]"; } else { s+= L"[is OFF]"; } 91 s += L" <<< "; 89 92 90 93 return s; … … 132 135 this->ms.setBackgroundSoundMute(!this->ms.getBackgroundSoundMute()); 133 136 break; 137 case VK_F5: 138 this->gs.aiPlayerFireEnable = !this->gs.aiPlayerFireEnable; 139 break; 134 140 case VK_F6: 135 141 //this->gs.getHUD()->message("hallo martin", 3, 0.01f); … … 138 144 case VK_F7: 139 145 //this->gs.getHUD()->displayLose(3, 0.01f); 140 GLOBAL_player_freezeQ = !GLOBAL_player_freezeQ;146 //GLOBAL_player_freezeQ = !GLOBAL_player_freezeQ; 141 147 break; 142 148 case VK_F8: … … 148 154 case VK_F10: 149 155 this->gs.useRaytracer = !this->gs.useRaytracer; 150 break;151 case VK_F5:152 this->gs.aiPlayerFireEnable = !this->gs.aiPlayerFireEnable;153 156 break; 154 157 case VK_PAUSE: -
GTP/trunk/App/Games/Jungle_Rumble/src/GameScene.cpp
r1406 r1407 966 966 } 967 967 if(!p->getSoftKill()) { 968 p->setSoftKill(true,4); 968 #if(0) 969 p->setSoftKill(true,4); 970 #elif(0) 971 p->setSoftKill(false,0); // MG 972 #elif(1) 973 p->setSoftKill(true,1); // MG 974 #endif 969 975 } 970 976 } -
GTP/trunk/App/Games/Jungle_Rumble/src/Player.cpp
r1403 r1407 235 235 this->winPe->setDimensions(1,1,1); 236 236 this->winPe->setEMBirthRate(10); 237 this->winPe->setEMEmissionDuration(5); 237 //this->winPe->setEMEmissionDuration(5); 238 this->winPe->setEMEmissionDuration(10); // MG 238 239 this->winPe->setEMParticleLifeTime(5); 239 240 this->winPe->setEMParticleVelocity(15);
Note: See TracChangeset
for help on using the changeset viewer.