-
Notifications
You must be signed in to change notification settings - Fork 50
/
index.html
685 lines (613 loc) · 25.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>SineRider</title>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#ffffff" />
<meta name="description" content="A game about love & graphing" />
<meta
name="keywords"
content="games, math, graphing, art, game design, love, sinerider"
/>
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Sinerider" />
<meta name="twitter:description" content="A game about love and graphing" />
<meta
name="twitter:image"
content="https://cloud-o9nw1frsj-hack-club-bot.vercel.app/0sinerider-social.png"
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://sinerider.com/" />
<meta property="og:title" content="SineRider" />
<meta property="og:description" content="A game about love & graphing" />
<meta property="og:image" content="https://sinerider.com/sr_logo.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Patrick+Hand&family=Roboto&family=Roboto+Mono&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Edu+QLD+Beginner&display=swap"
rel="stylesheet"
/>
<link href="App/style.css" rel="stylesheet" type="text/css" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1"
/>
<!-- Fullstory for error reporting and frustrated clicks -->
<script src="Libraries/fullstory.js"></script>
<!-- plausible for analytics -->
<script
defer
data-domain="sinerider.com"
src="https://plausible.io/js/script.js"
></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-XB809Q5TGT"
></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'G-XB809Q5TGT')
function emitEvent(name, data = {}) {
gtag('event', name, data)
if (window.FS?.event) {
FS.event(name, data)
}
}
</script>
</head>
<body>
<img
src="Assets/Images/error.png"
style="display: none"
id="error-sprite"
/>
<div class="bubblets"></div>
<canvas id="canvas"></canvas>
<div class="variables floating bar" id="variables-bar" hide="true">
<div class="string" id="time-string">t=0</div>
</div>
<div class="bar floating top" id="top-bar" hide="false">
<div class="tooltip" id="settings-button" data-tooltip="Settings">
<div class="" id="gear">⚙️</div>
</div>
<div id="lvl-debug-info" hide="true">
<div class="grid">
<div class="string debugtitle">Level name:</div>
<div class="string debuginfo" id="lvl-name-str">N/A</div>
<div class="string debugtitle">Level nick:</div>
<div class="string debuginfo" id="lvl-nick-str">N/A</div>
<div class="string debugtitle">FPS:</div>
<div class="string debuginfo" id="lvl-fps-str">N/A</div>
</div>
<div class="button" id="button-hide-level-info" hide="true">
<div class="string">X</div>
</div>
</div>
<!-- when i move this it doesn't allow me to click on puzzles -->
<!-- <div class="try-again-button">
<button id="try-again" type="button">Try Again</button>
</div> -->
<div class="bar editor-bar" id="editor-spawner" hide="true">
<div
class="button tooltip"
id="editor-level-configuration-button"
data-tooltip="Configure"
>
<!-- <svg
xmlns="http://www.w3.org/2000/svg"
height="1em"
viewBox="0 0 512 512"
>
<path
d="M352 320c88.4 0 160-71.6 160-160c0-15.3-2.2-30.1-6.2-44.2c-3.1-10.8-16.4-13.2-24.3-5.3l-76.8 76.8c-3 3-7.1 4.7-11.3 4.7H336c-8.8 0-16-7.2-16-16V118.6c0-4.2 1.7-8.3 4.7-11.3l76.8-76.8c7.9-7.9 5.4-21.2-5.3-24.3C382.1 2.2 367.3 0 352 0C263.6 0 192 71.6 192 160c0 19.1 3.4 37.5 9.5 54.5L19.9 396.1C7.2 408.8 0 426.1 0 444.1C0 481.6 30.4 512 67.9 512c18 0 35.3-7.2 48-19.9L297.5 310.5c17 6.2 35.4 9.5 54.5 9.5zM80 408a24 24 0 1 1 0 48 24 24 0 1 1 0-48z"
/>
</svg> -->
<svg
xmlns="http://www.w3.org/2000/svg"
width="30px"
height="30px"
version="1.1"
viewBox="0 0 128 128"
>
<path
d="m116.76 116.76c-3.1094 3.1016-7.3203 4.8438-11.707 4.8438-4.3906 0-8.6016-1.7422-11.711-4.8438l-0.125-0.13281-41.578-46.949v-0.003906c-0.97656-1.0742-2.5-1.4688-3.8789-1-10.859 3.3945-22.707 0.73828-31.078-6.9727-8.3672-7.707-11.992-19.293-9.5039-30.398 0.33984-1.5195 1.4844-2.7344 2.9805-3.168 1.4961-0.4375 3.1094-0.023437 4.2109 1.0781l15.703 15.699c0.34375 0.34375 0.83984 0.47656 1.3086 0.35547l10.191-2.7305 0.003907-0.003906c0.46484-0.125 0.83203-0.49219 0.95703-0.95703l2.7305-10.191 0.003906-0.003906c0.125-0.46875-0.011719-0.96484-0.35156-1.3086l-15.703-15.703c-1.1016-1.1016-1.5156-2.7148-1.0781-4.2109 0.43359-1.4961 1.6484-2.6367 3.168-2.9805 11.105-2.4883 22.691 1.1367 30.398 9.5039 7.7109 8.3711 10.367 20.219 6.9727 31.078-0.45703 1.3789-0.0625 2.8945 1.0039 3.8789l47.082 41.703c3.1016 3.1094 4.8438 7.3203 4.8438 11.711 0 4.3867-1.7422 8.5977-4.8438 11.707zm-19.07-4.2266c4.1094 4.0391 10.707 4.0117 14.781-0.0625s4.1016-10.672 0.0625-14.781l-46.875-41.512c-2.8516-2.5664-3.9375-6.5664-2.7734-10.223 2.5703-8.2148 0.87109-17.172-4.5312-23.875-5.4023-6.7031-13.789-10.27-22.363-9.5078l13.211 13.211c1.8711 1.8789 2.6016 4.6094 1.9219 7.168l-2.7305 10.191c-0.69141 2.5586-2.6914 4.5586-5.25 5.25l-10.191 2.7305c-2.5586 0.67969-5.2891-0.050782-7.168-1.9219l-13.211-13.211c-0.76172 8.5742 2.8047 16.961 9.5078 22.363 6.7031 5.4023 15.66 7.1016 23.875 4.5312 3.6562-1.1641 7.6523-0.078124 10.223 2.7695z"
/>
</svg>
<!-- 🔧 -->
</div>
<div id="editor-spawner-fixed" class="button string">
<!-- Fixed goal button added in JS -->
</div>
<div id="editor-spawner-dynamic" class="button string">
<!-- Dynamic goal button added in JS -->
</div>
<div id="editor-spawner-path" class="button string">
<!-- Path goal button added in JS -->
</div>
<div id="goal-limit-visual">
<div class="string">0/20<br />Goals</div>
</div>
<div class="button" id="share-button" hide="false">
<div class="string">Share</div>
</div>
</div>
<div class="bar editor-bar" id="editor-inspector" hide="true">
<div class="label" id="editor-order-label">
<div class="string">Order</div>
</div>
<input id="editor-order-input" maxlength="1" placeholder="None" />
<div class="label" id="editor-position-label">
<div class="string">Position</div>
</div>
<div id="editor-position">
<input id="editor-x-input" type="number" placeholder="X" />
<input id="editor-y-input" type="number" placeholder="Y" />
</div>
<div class="label" id="editor-timer-label">
<div class="string">Timer</div>
</div>
<input id="editor-timer-input" min="0" />
<div class="label" id="editor-start-label">
<div class="string">Start</div>
</div>
<input id="editor-start-input" type="number" />
<div class="label" id="editor-end-label">
<div class="string">End</div>
</div>
<input id="editor-end-input" type="number" />
<div id="editor-inspector-delete" class="button string">X</div>
</div>
<!-- TODO: Clean up CSS -->
<div class="hbar">
<!-- TODO: Tooltip -->
<div class="button" id="navigator-button" hide="false">
<div class="string">🏔</div>
</div>
</div>
</div>
<div id="completion-time" hide="true"></div>
<div id="dotted-math-container">
<div class="button" id="dotted-math-button">
<div class="string">📝 Hint!</div>
</div>
<div id="dotted-math-field-static"></div>
<div id="dotted-slider-box">
<input
id="dotted-slider"
type="range"
orient="vertical"
hidden="true"
/>
</div>
</div>
<div class="bar menu" id="menu-bar" hide="false">
<div class="button" id="edit-button" hide="true">
<div class="string">Edit</div>
</div>
<input class="text" id="level-text" type="text" />
<div class="button" id="level-button">
<div class="string"></div>
</div>
<!--<div class='button' id='reset-button'>-->
<!-- <div class='string'>Reset</div>-->
<!--</div>-->
</div>
<div class="bar floating controls" id="controls-bar">
<div class="button tooltip" id="reset-button" data-tooltip="Reset">
<div class="string">↺</div>
</div>
<div id="math-editor-container">
<div id="t-variable-container" hide="true">
<div class="label" id="t-variable-label">
<div class="string">t=</div>
</div>
<input value="0" type="range" id="t-variable-slider" />
</div>
<div class="envelope" id="expression-envelope" disabled="false">
<div class="label" id="variable-label">
<div class="string">Y=</div>
</div>
<div id="math-field"></div>
<div id="math-field-static"></div>
</div>
</div>
<input class="text" id="expression-text" type="text" hide="true" />
<div>
<div class="button" id="run-button" hide="false">
<div class="string">GO</div>
</div>
</div>
<div>
<div class="button" id="skip-cutscene-button" hide="true">
<div class="string">Skip Cutscene</div>
</div>
<div class="button reset-button" id="stop-button" hide="true">
<div class="string">STOP</div>
</div>
</div>
<div class="button reset-button" id="try-again-button" hide="true">
<div class="string">Try Again</div>
</div>
</div>
<!-- Editor dialogs -->
<!-- TODO: Make decent -->
<dialog id="editor-level-configuration-dialog">
<div class="string">Level Options</div>
<!-- <div>
<label>Polar</label>
<input
id="editor-level-configuration-is-polar-checkbox"
type="checkbox"
/>
</div> -->
<div>
<label>Biome</label>
<select id="editor-level-configuration-biome-select">
<!-- Options added in main.js -->
</select>
</div>
<div>
<label>Sledder</label>
<select id="editor-level-configuration-sledder-select">
<!-- Options added in main.js-->
</select>
</div>
</dialog>
<!-- TODO: Make decent, add tooltips + "Copied!" confirmation -->
<dialog id="editor-share-dialog">
<div class="string">Share this puzzle as a link:</div>
<div class="hbar">
<!-- <div class="string" id="editor-sharing-link">
https://sinerider.com/?auwbdiawdyiubawduybaubydwuhbawdhubawuhbd
</div> -->
<input id="puzzle-link" hide="true" />
<div class="button" id="editor-copy-puzzle-link">
<div class="string">Copy as Puzzle</div>
</div>
<div class="button" id="editor-copy-editor-link">
<div class="string">Copy as Editor</div>
</div>
</div>
</dialog>
<dialog id="reset-confirmation-dialog">
<div class="string">
Reset your equation?
<strong> This cannot be undone.</strong>
</div>
<div>
<div class="button" id="reset-confirmation-no">
<div class="string">Cancel</div>
</div>
<div class="button" id="reset-confirmation-yes">
<div class="string">Reset</div>
</div>
</div>
</dialog>
<dialog id="show-all-confirmation-dialog">
<div class="string">Are you sure you want to unlock all levels?</div>
<div>
<div class="button" id="show-all-no">
<div class="string">Cancel</div>
</div>
<div class="button" id="show-all-yes">
<div class="string">Unlock All</div>
</div>
</div>
</dialog>
<dialog id="reset-progress-confirmation-dialog">
<div class="string">
Are you sure you want to permanently delete your progress?
</div>
<div>
<div class="button" id="reset-progress-confirmation-no">
<div class="string">Cancel</div>
</div>
<div class="button" id="reset-progress-confirmation-yes">
<div class="string">Reset</div>
</div>
</div>
</dialog>
<dialog id="graphics-settings-dialog">
<div>
<div id="graphics-settings-close-button">x</div>
</div>
<div>
<div>
<label>Volume</label>
<input id="volume-slider" type="range" orient="horizontal" />
</div>
</div>
<div class="string">Graphics Settings</div>
<div>
<label>Resolution</label>
<button class="button" id="set-resolution-button">High</button>
</div>
<div>
<label>Sample Density</label>
<button class="button" id="set-sample-density-button">High</button>
</div>
<div>
<label>Terrain Layers</label>
<button class="button" id="set-terrain-layers-button">High</button>
</div>
</dialog>
<div class="bar message" id="message-bar" hide="true">
<div class="string">MESSAGE</div>
</div>
<div class="bar victory floating" id="victory-bar" hide="true">
<div class="envelope" id="victory-envelope">
<div class="label" id="victory-label">
<div class="string">
<h3 id="victory-text">Complete!</h3>
<p class="puzzle-msg" hide="true">
Your equation solved the puzzle in
</p>
<div
class="hovertext"
data-hover="How quickly your solution runs (faster = better)"
>
<span id="time-taken"></span>,
</div>
<p class="puzzle-msg" hide="true">and</p>
<div
class="hovertext"
data-hover="The number of characters in your copy/pasted solution (lower = better)"
>
<span id="character-count"></span>.
</div>
<br class="puzzle-msg" hide="true" />
<br class="puzzle-msg" hide="true" />
<div class="puzzle-msg" hide="true">
Show off your solution and see how you rank up against other
solvers on
<!-- url for submitting is generated when puzzle is solved -->
<a href="#" target="_blank" id="twitter-submission-url"
>Twitter</a
>
or
<a href="#" id="submit-reddit-score">Reddit</a>.
</div>
<br class="puzzle-msg" hide="true" />
<br class="puzzle-msg" hide="true" />
<p class="puzzle-msg" hide="true">
Think you can do better?
<a href="#" onclick="onClickRunButton()">Try again!</a>
</p>
</div>
</div>
<div class="button" id="next-button">
<div class="string" id="next-button-text">NEXT</div>
</div>
</div>
</div>
<div class="bar reddit-open floating" id="reddit-open-bar" hide="true">
<div class="envelope" id="reddit-open-envelope">
<div class="label" id="reddit-open-label">
<div class="string">
<h3 id="reddit-open-text">Reddit Command Copied!</h3>
<p>
The command has been copied in your clipboard.<br />Please paste
it into the daily level thread.<br />
Command:
</p>
<input type="text" id="reddit-open-command" hide="true" readonly />
<br />
<a id="submit-reddit-score-subreddit" target="_blank" hide="true">
Open Thread
</a>
</div>
<div class="button" id="close-reddit-open-button">
<div class="string">X</div>
</div>
<br />
</div>
</div>
</div>
<div class="bar floating navigator" id="navigator-floating-bar" hide="true">
<div class="button" id="show-all-button" hide="false">
<image src="/Assets/Images/unlock.svg" />
</div>
</div>
<div class="veil" id="veil" hide="true"></div>
<!--TODO: Maybe change to a different style -->
<div class="veil veil-no-transition" id="level-loading-veil">
<div class="dot-flashing"></div>
</div>
<div class="loading veil" id="loading-veil" hide="false">
<div id="flag">
<a href="https://github.com/hackclub">
<img class="hackclub-logo" src="Assets/Images/hc_logo.png" />
</a>
</div>
<div id="main-loading">
<div id="loading-top">
<div class="string" id="reset-string" hide="true"></div>
<img class="loading-image" src="Assets/Images/loading-screen.png" />
</div>
<div id="loading-progress-bar-container">
<div id="loading-progress-bar"></div>
</div>
<div class="string" id="loading-string"></div>
</div>
<div>
<br />Ideas? Feedback? Issues? Send them to
<a href="[email protected]">[email protected]</a>
</div>
<div id="loading-bottom">
<!-- <div id="puzzles">
<h3>New puzzles published daily on</h3>
<div id="loading-links">
<a
href="https://www.twitter.com/sineriderbot"
target="_blank"
class="loading-link"
id="twitter-link"
>
<img
src="Assets/Images/twitterx.png"
alt="Twitter"
class="puzzle-link-image"
/>
</a>
<a
href="https://www.reddit.com/r/sinerider"
target="_blank"
class="loading-link"
id="reddit-link"
>
<img
src="Assets/Images/reddit.png"
alt="Reddit"
class="puzzle-link-image"
/>
</a>
</div>
</div> -->
<div class="string" id="github-string">
<a
href="http://www.github.com/hackclub/sinerider"
target="_blank"
class="loading-link"
id="github-link"
>
Built and maintained by teenagers. Version 1.0
</a>
</div>
</div>
</div>
<!-- Load External Libraries -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/howler/2.2.1/howler.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.20/lodash.min.js"></script> -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.20/lodash.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjs/7.3.0/math.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathquill/0.9.1/mathquill.min.js"></script>
<script src="Libraries/lz-string.min.js"></script>
<link rel="stylesheet" href="Libraries/mathquill.css" />
<script src="Libraries/mathquill.min.js"></script>
<script>
var MQ = MathQuill.getInterface(2)
</script>
<!-- Load Extension Methods -->
<script src="Libraries/GLUtils.js"></script>
<script src="Libraries/extensions.js"></script>
<script src="Libraries/preprocessMathQuill.js"></script>
<!-- Load Structs -->
<script src="Types/Structs/EntityGroup.js"></script>
<script src="Types/Structs/PlayerStorage.js"></script>
<script src="Types/Structs/Test.js"></script>
<script src="Types/Structs/Vector2.js"></script>
<script src="Types/Structs/Bounds.js"></script>
<script src="Types/Structs/Shape.js"></script>
<script src="Types/Structs/Circle.js"></script>
<script src="Types/Structs/Rect.js"></script>
<script src="Types/Structs/Union.js"></script>
<script src="Types/Structs/Color.js"></script>
<script src="Types/Structs/CameraState.js"></script>
<!-- Color Palette -->
<script src="App/colors.js"></script>
<!-- Load Basic Types -->
<script src="Types/Assets.js"></script>
<script src="Types/Engine.js"></script>
<script src="Types/Sampler.js"></script>
<script src="Types/InterFrameSampler.js"></script>
<script src="Types/BufferSampler.js"></script>
<script src="Types/Transform.js"></script>
<script src="Types/Screen.js"></script>
<script src="Types/Rigidbody.js"></script>
<script src="Types/Clickable.js"></script>
<script src="Types/ClickableContext.js"></script>
<script src="Types/WebGL/LavaQuad.js"></script>
<script src="Types/WebGL/WaterQuad.js"></script>
<script src="Types/WebGL/ConstantLakeSunsetQuad.js"></script>
<script src="Types/WebGL/VolcanoSunsetQuad.js"></script>
<!-- Load Components -->
<script src="Types/Entities/Directors/Director.js"></script>
<script src="Types/Entities/Directors/TrackingDirector.js"></script>
<script src="Types/Entities/Directors/WaypointDirector.js"></script>
<script src="Types/Entities/Directors/LerpDirector.js"></script>
<script src="Types/Entities/Directors/PanDirector.js"></script>
<!--<script src='Types/Entities/Directors/DragDirector.js'></script>-->
<!-- Load Entities -->
<script src="Types/Entities/HintGraph.js"></script>
<script src="Types/Entities/Sound.js"></script>
<script src="Types/Entities/ScreenBuffer.js"></script>
<script src="Types/Entities/Water.js"></script>
<script src="Types/Entities/ConstantLakeShader.js"></script>
<script src="Types/Entities/VolcanoSunsetShader.js"></script>
<script src="Types/Entities/Entity.js"></script>
<script src="Types/Entities/World.js"></script>
<script src="Types/Entities/Navigator.js"></script>
<script src="Types/Entities/Camera.js"></script>
<script src="Types/Entities/Axes.js"></script>
<script src="Types/Entities/Gridlines.js"></script>
<script src="Types/Entities/Sprite.js"></script>
<script src="Types/Entities/PathGoalHandle.js"></script>
<script src="Types/Entities/Goals/Goal.js"></script>
<script src="Types/Entities/Goals/PathGoal.js"></script>
<script src="Types/Entities/Goals/DynamicGoal.js"></script>
<script src="Types/Entities/Goals/FixedGoal.js"></script>
<script src="Types/Entities/Trail.js"></script>
<script src="Types/Entities/Text.js"></script>
<script src="Types/Entities/Speech.js"></script>
<script src="Types/Entities/Arrow.js"></script>
<script src="Types/Entities/Graph.js"></script>
<script src="Types/Entities/PolarGraph.js"></script>
<script src="Types/Entities/Sledder.js"></script>
<script src="Types/Entities/Walker.js"></script>
<script src="Types/Entities/LavaMonster.js"></script>
<script src="Types/Entities/LevelBubble.js"></script>
<script src="Types/Entities/Tip.js"></script>
<script src="Types/Entities/CoordinateBox.js"></script>
<script src="Types/Entities/Clouds.js"></script>
<script src="Types/Entities/Sky.js"></script>
<script src="Types/Entities/Snow.js"></script>
<script src="Types/Entities/Level/Level.js"></script>
<script src="Types/Entities/Level/Cutscene.js"></script>
<script src="Types/Entities/Level/Cutscenes/ConstantLake.js"></script>
<script src="Types/Entities/Level/Cutscenes/Volcano.js"></script>
<script src="Types/Entities/Level/Cutscenes/Desert.js"></script>
<script src="Types/Entities/Level/Cutscenes/Credits.js"></script>
<script src="Types/Entities/Level/Editor/LevelEditor.js"></script>
<!-- Load Levels -->
<!-- Load World Data -->
<script src="App/biomes.js"></script>
<script src="App/layers.js"></script>
<script src="App/Levels/desert.js"></script>
<!--<script src="App/Levels/polar.js"></script>-->
<script src="App/Levels/constantLake.js"></script>
<script src="App/Levels/volcano.js"></script>
<script src="App/Levels/editor.js"></script>
<script src="App/Levels/slope.js"></script>
<script src="App/Levels/parabola.js"></script>
<script src="App/Levels/wave.js"></script>
<script src="App/Levels/logistic.js"></script>
<script src="App/Levels/time.js"></script>
<script src="App/Levels/ooo.js"></script>
<script src="App/Levels/convergence.js"></script>
<script src="App/Levels/swamp.js"></script>
<script src="App/Levels/credits.js"></script>
<script src="App/eden.js"></script>
<!-- Start the Engine -->
<script src="App/main.js"></script>
<!-- This Does Something -->
<script src="App/dinoegg.js"></script>
</body>
</html>