mention dt in world

pull/1/head
Evan Hemsley 2019-05-22 14:05:33 -07:00
parent b89ddc71e7
commit e419e1ea8e
1 changed files with 4 additions and 0 deletions

View File

@ -42,4 +42,8 @@ But you can call these methods wherever you see fit.
Certain Encompass projects actually have multiple separate Worlds to manage certain behaviors. This is perfectly valid and can be a great way to structure your project, but be warned that it is difficult to share information between Worlds by design. Certain Encompass projects actually have multiple separate Worlds to manage certain behaviors. This is perfectly valid and can be a great way to structure your project, but be warned that it is difficult to share information between Worlds by design.
{{% /notice %}} {{% /notice %}}
**What's that whole dt business about?**
*dt* stands for delta-time. Correct usage of delta-time is crucial to make sure that your game does not become *frame-dependent*, which is very bad. We'll talk more about frame-dependence later in the tutorial, but to briefly summarize, if your game is frame-dependent you will run into very frustrating behavior when running your game on different computer systems.
That's it! Now that we have these high-level concepts down, let's build an actual, for-real game. That's it! Now that we have these high-level concepts down, let's build an actual, for-real game.