diff options
author | sanine <sanine.not@pm.me> | 2024-07-07 03:11:38 -0500 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2024-07-07 03:11:38 -0500 |
commit | a4d923659f49ccd44e1d6bd09804ba658ca34ac4 (patch) | |
tree | 18207dca8d11edeed098edee84e3bcdd8b0d6f1f /levelSelect.js | |
parent | e85c6972a724d8c66f0d48e6b2fb0ffdcef8e6fc (diff) |
fix level order
Diffstat (limited to 'levelSelect.js')
-rw-r--r-- | levelSelect.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/levelSelect.js b/levelSelect.js index f441f06..04c65a6 100644 --- a/levelSelect.js +++ b/levelSelect.js @@ -36,15 +36,15 @@ const levels = { ], 'sinusoidal 0': [ - ['monopole harvesting'], + ['parabolic 4'], buildLevel(t => Math.sin(t), t => t, [...Array(6).keys()].map(x => 0.5 * Math.PI * x)), ], 'sinusoidal 1': [ - ['monopole harvesting'], + ['parabolic 4'], buildLevel(t => t-4, t => 4*Math.sin(t), [...Array(12).keys()].map(x => 0.25 * Math.PI * x)), ], '(co)sinusoidal 2': [ - ['monopole harvesting'], + ['parabolic 4'], buildLevel(t => t-4, t => 4*Math.cos(t), [...Array(12).keys()].map(x => 0.25 * Math.PI * x)), ], 'orbital': [ |