diff options
author | Sofviic <sofviic1993@gmail.com> | 2024-06-18 13:50:50 +0300 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-06-23 19:21:22 +0200 |
commit | 12ecbe37e7fe1f68be1f9b9e69595d0baa2ee987 (patch) | |
tree | 77b5fc62f8cf04c8538a778f6759183baba9d3bc /specs/04.GameSetup.md | |
parent | 7954d6dfc42e14ecdaebbe14191c22b071819444 (diff) | |
download | hurrycurry-12ecbe37e7fe1f68be1f9b9e69595d0baa2ee987.tar hurrycurry-12ecbe37e7fe1f68be1f9b9e69595d0baa2ee987.tar.bz2 hurrycurry-12ecbe37e7fe1f68be1f9b9e69595d0baa2ee987.tar.zst |
game design document; 6 demand
Diffstat (limited to 'specs/04.GameSetup.md')
-rw-r--r-- | specs/04.GameSetup.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/specs/04.GameSetup.md b/specs/04.GameSetup.md index be69bc36..55b0f6b8 100644 --- a/specs/04.GameSetup.md +++ b/specs/04.GameSetup.md @@ -34,13 +34,13 @@ With the restaurant in this form ## Demand
-Check the [Demand section](05) for more info on what this means.
+Check the [Demand section](06.Demand.md) for more info on what this means.
Demand scale starts at 0%.
(from -50% to +50%)
Demand graph starts at offset 9 hours.
-$$\sin\left(3\sin\frac{\left(x+o\right)}{2}\right)+1$$
+$$\sin\left(3\sin\frac{\left(hour+offset\right)}{2}\right)+1$$
```c
-demand = sin(3*sin((x+offset)/2))+1
+demand = sin(3*sin((hour+offset)/2))+1
```
|