Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 3 and Version 4 of code/GametypeCreation


Ignore:
Timestamp:
Apr 14, 2010, 10:42:57 PM (14 years ago)
Author:
jo
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • code/GametypeCreation

    v3 v4  
     1[[TOC]]
    12= How to create a new gametype =
    23
     
    14154. Start with the basic concept and add features later. (A Todo-List for the features would be nice.)[[BR]]
    1516
    16 == Gametype-Level ==
     17== Testing-Level Creation ==
    1718 * Level are stored in __../data/levels__. You need a level to test your gametype.
    1819 * For testing purposes just copy an existing level and rename it.
     
    4142||[wiki:howto/Tickable tick]||this function is called whenever a new frame is rendered; dt is the value how much time has passed since the last frame||
    4243
    43 == [wiki:howto/Timer Timer] ==
     44== [wiki:howto/Timer The Timer object] ==
    4445 * A timer is a object of the Timer class that call a function after a certain time.
    4546 * You can find a short tutorial in __/src/libraries/tools/Timer.h__ or a more detailed one [wiki:howto/Timer in the wiki].