Ignore:
Timestamp:
09/18/06 03:12:50 (18 years ago)
Author:
giegl
Message:

GTPD - Jungle Rumble - Player wins final :-)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/App/Games/Jungle_Rumble/src/GameManager.cpp

    r1406 r1407  
    8181        s += L"\n F3: PhysX Debugger\n F4: Music On/Off"; 
    8282        s += L"\n F5 Opponent Fire On/Off"; 
     83        s += L"\n F6 Wrath of God"; 
    8384 
    8485        s += L"\n F9: DEPTH IMPOSTERS On/Off "; 
    8586        if(this->gs.useDepthImposter) { s+= L"[is ON]"; } else { s+= L"[is OFF]"; } 
     87        s += L" <<< "; 
    8688 
    8789        s += L"\n F10: RAYTRACE EFFECTS On/Off "; 
    8890        if(this->gs.useRaytracer) { s+= L"[is ON]"; } else { s+= L"[is OFF]"; } 
     91        s += L" <<< "; 
    8992 
    9093        return s; 
     
    132135                                        this->ms.setBackgroundSoundMute(!this->ms.getBackgroundSoundMute()); 
    133136                                        break; 
     137                                case VK_F5: 
     138                                        this->gs.aiPlayerFireEnable = !this->gs.aiPlayerFireEnable; 
     139                                        break; 
    134140                                case VK_F6: 
    135141                                        //this->gs.getHUD()->message("hallo martin", 3, 0.01f); 
     
    138144                                case VK_F7: 
    139145                                        //this->gs.getHUD()->displayLose(3, 0.01f); 
    140                                         GLOBAL_player_freezeQ = !GLOBAL_player_freezeQ; 
     146                                        //GLOBAL_player_freezeQ = !GLOBAL_player_freezeQ; 
    141147                                        break; 
    142148                                case VK_F8: 
     
    148154                                case VK_F10: 
    149155                                        this->gs.useRaytracer = !this->gs.useRaytracer; 
    150                                         break; 
    151                                 case VK_F5: 
    152                                         this->gs.aiPlayerFireEnable = !this->gs.aiPlayerFireEnable; 
    153156                                        break; 
    154157                                case VK_PAUSE: 
Note: See TracChangeset for help on using the changeset viewer.