Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 12155


Ignore:
Timestamp:
Dec 5, 2018, 12:23:30 PM (5 years ago)
Author:
emustafa
Message:

fixed speed

Location:
code/branches/OrxoKart_HS18
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • code/branches/OrxoKart_HS18/data/levels/templates/OrxoKartKart.oxt

    r12147 r12155  
    2525   stallSpeed = 500;
    2626
    27    boostPower            = 30
    28    boostPowerRate        = 100
     27   boostPower            = 10
     28   boostPowerRate        = 1
    2929   boostRate             = 5
    3030   boostCooldownDuration = 10
     
    7777   boostfactor    = 2
    7878
    79    speedfront     = 300
     79   speedfront     =  300
    8080   speedback      =  40
    81    speedleftright =  40
     81   speedleftright =  300
    8282   speedupdown    =  40
    8383
    8484   accelerationfront     = 300
    85    accelerationbrake     = 50
     85   accelerationbrake     = 300
    8686   accelerationback      =  125
    87    accelerationleftright =  0
     87   accelerationleftright =  125
    8888   accelerationupdown    =  125
    8989  >
  • code/branches/OrxoKart_HS18/data/tcl/orxokart_highscores.txt

    r12144 r12155  
    1313Name: 0:22:15s
    1414Name: 0:21:87s
     15Name: 0:50:45s
  • code/branches/OrxoKart_HS18/src/modules/orxokart/OrxoKart.cc

    r12144 r12155  
    180180        // Check if ship collided with the flag
    181181        if(flag_->getCollided()){
    182             OrxoKartKart* player = flag_->getObjectofCollision();
     182            player = flag_->getObjectofCollision();
    183183            if (level == 1)
    184184                player->setPosition(Vector3(s*0, 20, s*8.5));
  • code/branches/OrxoKart_HS18/src/modules/orxokart/OrxoKart.h

    r12144 r12155  
    4242#include "gametypes/Gametype.h"
    4343#include "OrxoKartOrigin.h"
    44 
     44#include "OrxoKartKart.h"
    4545namespace orxonox
    4646{
     
    6161
    6262        private:
     63            OrxoKartKart* player;
    6364            WeakPtr<OrxoKartOrigin> origin_;
    6465            OrxoKartFlag* flag_;
Note: See TracChangeset for help on using the changeset viewer.