All public logs
Combined display of all available logs of C# Gamedev Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 10:35, 9 June 2024 Winkio talk contribs created page Game Loop (Created page with "A game loop is a continuous loop that runs an Update() method and a Draw() method. Below is the simplest example of a game loop: public void GameLoop { while (true) { Update(); Draw(); } } In practice game loops may have a lot more code. They may wait a certain amount of time between passes, do less processing on certain passes than others, contain exit logic, etc. There are two main types of game loops: Fixed Step - the loop processe...")