Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 32 and Version 33 of pps/tutorial


Ignore:
Timestamp:
Mar 16, 2012, 3:27:17 PM (12 years ago)
Author:
smerkli
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • pps/tutorial

    v32 v33  
    4040 7. Enter to the appropriate folder and start the game. You will see a menu popping up, just press the ''Quickstart'' button.
    4141{{{
    42 cd ~/orxonox/tutorial/build
     42cd ~/<your-username>-extra-0/orxonox/tutorial/build
    4343./run
    4444}}}
     
    157157 1. Make sure you have a recent version of the branch (this is done by updating):
    158158{{{
    159 ~/orxonox/tutorial$ svn up
     159~/<your-username>-extra-0/orxonox/tutorial$ svn up
    160160}}}
    161161 2. In order to avoid conflicts copy your file (''AutonomousDroneController.cc''):
    162162{{{
    163 ~/orxonox/tutorial$ svn cp src/orxonox/controllers/AutonomousDroneController.cc src/orxonox/controllers/AutonomousDroneController_myUserName.cc
     163~/<your-username>-extra-0/orxonox/tutorial$ svn cp src/orxonox/controllers/AutonomousDroneController.cc src/orxonox/controllers/AutonomousDroneController_myUserName.cc
    164164}}}
    165165 3. Make sure you don't commit any changes of the original file, so revert your local changes on it:
    166166{{{
    167 ~/orxonox/tutorial$ svn revert src/orxonox/controllers/AutonomousDroneController.cc
     167~/<your-username>-extra-0/orxonox/tutorial$ svn revert src/orxonox/controllers/AutonomousDroneController.cc
    168168}}}
    169169 4. Now commit:
    170170{{{
    171 ~/orxonox/tutorial$ svn ci -m "This is my version of the AutonomousDrone steering function" src/orxonox/controllers/AutonomousDroneController_myUserName.cc
     171~/<your-username>-extra-0/orxonox/tutorial$ svn ci -m "This is my version of the AutonomousDrone steering function" src/orxonox/controllers/AutonomousDroneController_myUserName.cc
    172172}}}