littlejsengine 1.3.0 → 1.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (88) hide show
  1. package/README.md +4 -3
  2. package/build.bat +1 -1
  3. package/docs/Audio.html +2268 -0
  4. package/docs/Color.html +3376 -0
  5. package/docs/Debug.html +2933 -0
  6. package/docs/Draw.html +4480 -0
  7. package/docs/EngineObject.html +4734 -0
  8. package/docs/FontImage.html +1055 -0
  9. package/docs/Input.html +2806 -0
  10. package/docs/Medal.html +1007 -0
  11. package/docs/Medals.html +628 -0
  12. package/docs/Music.html +584 -0
  13. package/docs/Newgrounds.html +1399 -0
  14. package/docs/Particle.html +4825 -0
  15. package/docs/ParticleEmitter.html +8099 -0
  16. package/docs/Random.html +1774 -0
  17. package/docs/Settings.html +3140 -0
  18. package/docs/Sound.html +1249 -0
  19. package/docs/TileCollision.html +1409 -0
  20. package/docs/TileLayer.html +7310 -0
  21. package/docs/TileLayerData.html +1052 -0
  22. package/docs/Timer.html +1295 -0
  23. package/docs/Utilities.html +3278 -0
  24. package/docs/Vector2.html +4266 -0
  25. package/docs/WebGL.html +2307 -0
  26. package/docs/engine.js.html +443 -0
  27. package/docs/engineAudio.js.html +627 -0
  28. package/docs/engineDebug.js.html +554 -0
  29. package/docs/engineDraw.js.html +539 -0
  30. package/docs/engineInput.js.html +571 -0
  31. package/docs/engineMedals.js.html +460 -0
  32. package/docs/engineObject.js.html +533 -0
  33. package/docs/engineParticles.js.html +443 -0
  34. package/docs/engineSettings.js.html +381 -0
  35. package/docs/engineTileLayer.js.html +503 -0
  36. package/docs/engineUtilities.js.html +700 -0
  37. package/docs/engineWebGL.js.html +511 -0
  38. package/docs/fonts/MavenPro-Regular.ttf +0 -0
  39. package/docs/fonts/Montserrat-Regular.ttf +0 -0
  40. package/docs/fonts/Muli-Black.ttf +0 -0
  41. package/docs/fonts/OFL-hind.txt +93 -0
  42. package/docs/fonts/OFL-montserrat.txt +93 -0
  43. package/docs/global.html +1771 -0
  44. package/docs/index.css +6 -0
  45. package/docs/index.html +267 -0
  46. package/docs/scripts/fix-code-block.js +53 -0
  47. package/docs/scripts/fix-navbar.js +25 -0
  48. package/docs/scripts/linenumber.js +25 -0
  49. package/docs/scripts/misc.js +217 -0
  50. package/docs/scripts/resize.js +85 -0
  51. package/docs/scripts/search.js +83 -0
  52. package/docs/scripts/third-party/Apache-License-2.0.txt +202 -0
  53. package/docs/scripts/third-party/fuse.js +9 -0
  54. package/docs/scripts/third-party/lang-css.js +2 -0
  55. package/docs/scripts/third-party/prettify.js +28 -0
  56. package/docs/static/favicon.png +0 -0
  57. package/docs/static/index.css +4 -0
  58. package/docs/styles/clean-jsdoc-theme-base.css +393 -0
  59. package/docs/styles/clean-jsdoc-theme-dark.css +324 -0
  60. package/docs/styles/clean-jsdoc-theme-light.css +319 -0
  61. package/docs/styles/reset.css +346 -0
  62. package/docs/styles/third-party/ionicons.min.css +11 -0
  63. package/docs/styles/third-party/prettify-jsdoc.css +111 -0
  64. package/docs/styles/third-party/prettify-tomorrow.css +5 -0
  65. package/engine/engine.all.js +72 -33
  66. package/engine/engine.all.min.js +1 -1
  67. package/engine/engine.all.release.js +72 -33
  68. package/engine/engine.js +1 -1
  69. package/engine/engineAudio.js +5 -7
  70. package/engine/engineBuild.bat +0 -1
  71. package/engine/engineDraw.js +4 -3
  72. package/engine/engineInput.js +5 -1
  73. package/engine/engineMedals.js +1 -1
  74. package/engine/engineObject.js +19 -16
  75. package/engine/engineParticles.js +1 -1
  76. package/engine/engineSettings.js +5 -0
  77. package/engine/engineUtilities.js +30 -2
  78. package/engine/engineWebGL.js +1 -1
  79. package/engine/index.d.ts +15 -5
  80. package/examples/breakout/index.html +3 -3
  81. package/examples/particles/index.html +62 -62
  82. package/examples/platformer/index.html +5 -5
  83. package/examples/puzzle/game.js +3 -1
  84. package/examples/puzzle/index.html +2 -2
  85. package/examples/stress/index.html +1 -1
  86. package/game.js +3 -14
  87. package/index.html +13 -13
  88. package/package.json +1 -1
@@ -0,0 +1,2268 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+
4
+ <head>
5
+ <meta charset="utf-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+
8
+ <!-- Adding favicon -->
9
+
10
+ <link rel="icon" href="./static/favicon.png" />
11
+
12
+
13
+ <!-- Adding meta -->
14
+
15
+
16
+ <!-- Adding external script-->
17
+
18
+
19
+ <!-- Adding external style-->
20
+
21
+
22
+ <!-- Adding scripts-->
23
+
24
+
25
+ <!-- Adding style-->
26
+
27
+
28
+ <!-- Adding overlay script-->
29
+
30
+
31
+ <!-- Adding overlay style-->
32
+
33
+
34
+
35
+ <title>
36
+ Audio
37
+ </title>
38
+
39
+ <!--[if lt IE 9]>
40
+ <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
41
+ <![endif]-->
42
+ <link type="text/css" rel="stylesheet" href="styles/third-party/ionicons.min.css">
43
+ <link type="text/css" rel="stylesheet" href="styles/third-party/prettify-tomorrow.css">
44
+ <link type="text/css" rel="stylesheet" href="styles/reset.css">
45
+ <link type="text/css" rel="stylesheet" href="styles/clean-jsdoc-theme-base.css">
46
+ <link type="text/css" rel="stylesheet" href="styles/clean-jsdoc-theme-dark.css">
47
+
48
+ <style>
49
+ .prettyprint code {font-family:monospace}
50
+ </style>
51
+
52
+ <svg aria-hidden="true" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
53
+ style="display:none">
54
+ <defs>
55
+ <symbol id="copy-icon" viewbox="0 0 488.3 488.3">
56
+ <g>
57
+ <path
58
+ d="M314.25,85.4h-227c-21.3,0-38.6,17.3-38.6,38.6v325.7c0,21.3,17.3,38.6,38.6,38.6h227c21.3,0,38.6-17.3,38.6-38.6V124 C352.75,102.7,335.45,85.4,314.25,85.4z M325.75,449.6c0,6.4-5.2,11.6-11.6,11.6h-227c-6.4,0-11.6-5.2-11.6-11.6V124 c0-6.4,5.2-11.6,11.6-11.6h227c6.4,0,11.6,5.2,11.6,11.6V449.6z" />
59
+ <path
60
+ d="M401.05,0h-227c-21.3,0-38.6,17.3-38.6,38.6c0,7.5,6,13.5,13.5,13.5s13.5-6,13.5-13.5c0-6.4,5.2-11.6,11.6-11.6h227 c6.4,0,11.6,5.2,11.6,11.6v325.7c0,6.4-5.2,11.6-11.6,11.6c-7.5,0-13.5,6-13.5,13.5s6,13.5,13.5,13.5c21.3,0,38.6-17.3,38.6-38.6 V38.6C439.65,17.3,422.35,0,401.05,0z" />
61
+ </g>
62
+ </symbol>
63
+ <symbol id='search-icon' viewBox="0 0 512 512">
64
+ <g>
65
+ <g>
66
+ <path
67
+ d="M225.474,0C101.151,0,0,101.151,0,225.474c0,124.33,101.151,225.474,225.474,225.474 c124.33,0,225.474-101.144,225.474-225.474C450.948,101.151,349.804,0,225.474,0z M225.474,409.323 c-101.373,0-183.848-82.475-183.848-183.848S124.101,41.626,225.474,41.626s183.848,82.475,183.848,183.848 S326.847,409.323,225.474,409.323z" />
68
+ </g>
69
+ </g>
70
+ <g>
71
+ <g>
72
+ <path
73
+ d="M505.902,476.472L386.574,357.144c-8.131-8.131-21.299-8.131-29.43,0c-8.131,8.124-8.131,21.306,0,29.43l119.328,119.328 c4.065,4.065,9.387,6.098,14.715,6.098c5.321,0,10.649-2.033,14.715-6.098C514.033,497.778,514.033,484.596,505.902,476.472z" />
74
+ </g>
75
+ </g>
76
+ </symbol>
77
+ <symbol id="down-icon" viewBox="0 0 16 16">
78
+ <path
79
+ fill-rule="evenodd"
80
+ clip-rule="evenodd"
81
+ d="M12.7803 6.21967C13.0732 6.51256 13.0732 6.98744 12.7803 7.28033L8.53033 11.5303C8.23744 11.8232 7.76256 11.8232 7.46967 11.5303L3.21967 7.28033C2.92678 6.98744 2.92678 6.51256 3.21967 6.21967C3.51256 5.92678 3.98744 5.92678 4.28033 6.21967L8 9.93934L11.7197 6.21967C12.0126 5.92678 12.4874 5.92678 12.7803 6.21967Z"
82
+ >
83
+ </path>
84
+ </symbol>
85
+ </defs>
86
+ </svg>
87
+ </head>
88
+
89
+ <body>
90
+
91
+ <nav class="navbar" id="navbar">
92
+ <div class="navbar-heading" id="navbar-heading"><a href="index.html"><h2 class="navbar-heading-text">LittleJS - The Tiny JavaScript Game Engine That Can!</h2></a></div><div class="search-box" id="search-box"><div class="search-box-input-container"><input class="search-box-input" type="text" placeholder="Search..." id="search-box-input" /><svg class="search-icon" alt="search-icon"><use xlink:href="#search-icon"></use></svg></div><div class="search-item-container" id="search-item-container"><ul class="search-item-ul" id="search-item-ul"></ul></div></div><div class="sidebar-main-content" id="sidebar-main-content"><div class="accordion collapsed" id="8173592" > <h3 class="accordion-heading">Classes<svg><use xlink:href="#down-icon"></use></svg></h3><ul class="accordion-content"><li class="accordion collapsed child" id=6132755><div class="accordion-heading child"><a href="Color.html">Color</a><svg><use xlink:href="#down-icon"></use></svg></div><ul class='methods accordion-content'><li data-type='method'><a href="Color.html#add">add</a></li><li data-type='method'><a href="Color.html#clamp">clamp</a></li><li data-type='method'><a href="Color.html#copy">copy</a></li><li data-type='method'><a href="Color.html#divide">divide</a></li><li data-type='method'><a href="Color.html#lerp">lerp</a></li><li data-type='method'><a href="Color.html#multiply">multiply</a></li><li data-type='method'><a href="Color.html#mutate">mutate</a></li><li data-type='method'><a href="Color.html#rgba">rgba</a></li><li data-type='method'><a href="Color.html#rgbaInt">rgbaInt</a></li><li data-type='method'><a href="Color.html#scale">scale</a></li><li data-type='method'><a href="Color.html#setHSLA">setHSLA</a></li><li data-type='method'><a href="Color.html#subtract">subtract</a></li></ul></li><li class="accordion collapsed child" id=7209338><div class="accordion-heading child"><a href="EngineObject.html">EngineObject</a><svg><use xlink:href="#down-icon"></use></svg></div><ul class='methods accordion-content'><li data-type='method'><a href="EngineObject.html#addChild">addChild</a></li><li data-type='method'><a href="EngineObject.html#applyAcceleration">applyAcceleration</a></li><li data-type='method'><a href="EngineObject.html#applyForce">applyForce</a></li><li data-type='method'><a href="EngineObject.html#collideWithObject">collideWithObject</a></li><li data-type='method'><a href="EngineObject.html#collideWithTile">collideWithTile</a></li><li data-type='method'><a href="EngineObject.html#collideWithTileRaycast">collideWithTileRaycast</a></li><li data-type='method'><a href="EngineObject.html#destroy">destroy</a></li><li data-type='method'><a href="EngineObject.html#getAliveTime">getAliveTime</a></li><li data-type='method'><a href="EngineObject.html#getMirrorSign">getMirrorSign</a></li><li data-type='method'><a href="EngineObject.html#removeChild">removeChild</a></li><li data-type='method'><a href="EngineObject.html#render">render</a></li><li data-type='method'><a href="EngineObject.html#setCollision">setCollision</a></li><li data-type='method'><a href="EngineObject.html#update">update</a></li></ul></li><li class="accordion collapsed child" id=2206388><div class="accordion-heading child"><a href="Medal.html">Medal</a><svg><use xlink:href="#down-icon"></use></svg></div><ul class='methods accordion-content'><li data-type='method'><a href="Medal.html#render">render</a></li><li data-type='method'><a href="Medal.html#renderIcon">renderIcon</a></li><li data-type='method'><a href="Medal.html#unlock">unlock</a></li></ul></li><li class="accordion collapsed child" id=9601992><div class="accordion-heading child"><a href="Music.html">Music</a><svg><use xlink:href="#down-icon"></use></svg></div><ul class='methods accordion-content'><li data-type='method'><a href="Music.html#play">play</a></li></ul></li><li class="accordion collapsed child" id=8233318><div class="accordion-heading child"><a href="Newgrounds.html">Newgrounds</a><svg><use xlink:href="#down-icon"></use></svg></div><ul class='methods accordion-content'><li data-type='method'><a href="Newgrounds.html#call">call</a></li><li data-type='method'><a href="Newgrounds.html#getScores">getScores</a></li><li data-type='method'><a href="Newgrounds.html#logView">logView</a></li><li data-type='method'><a href="Newgrounds.html#postScore">postScore</a></li><li data-type='method'><a href="Newgrounds.html#unlockMedal">unlockMedal</a></li></ul></li><li class="accordion collapsed child" id=9339762><div class="accordion-heading child"><a href="Particle.html">Particle</a><svg><use xlink:href="#down-icon"></use></svg></div><ul class='methods accordion-content'><li data-type='method'><a href="Particle.html#addChild">addChild</a></li><li data-type='method'><a href="Particle.html#applyAcceleration">applyAcceleration</a></li><li data-type='method'><a href="Particle.html#applyForce">applyForce</a></li><li data-type='method'><a href="Particle.html#collideWithObject">collideWithObject</a></li><li data-type='method'><a href="Particle.html#collideWithTile">collideWithTile</a></li><li data-type='method'><a href="Particle.html#collideWithTileRaycast">collideWithTileRaycast</a></li><li data-type='method'><a href="Particle.html#destroy">destroy</a></li><li data-type='method'><a href="Particle.html#getAliveTime">getAliveTime</a></li><li data-type='method'><a href="Particle.html#getMirrorSign">getMirrorSign</a></li><li data-type='method'><a href="Particle.html#removeChild">removeChild</a></li><li data-type='method'><a href="Particle.html#render">render</a></li><li data-type='method'><a href="Particle.html#setCollision">setCollision</a></li><li data-type='method'><a href="Particle.html#update">update</a></li></ul></li><li class="accordion collapsed child" id=5336759><div class="accordion-heading child"><a href="ParticleEmitter.html">ParticleEmitter</a><svg><use xlink:href="#down-icon"></use></svg></div><ul class='methods accordion-content'><li data-type='method'><a href="ParticleEmitter.html#addChild">addChild</a></li><li data-type='method'><a href="ParticleEmitter.html#applyAcceleration">applyAcceleration</a></li><li data-type='method'><a href="ParticleEmitter.html#applyForce">applyForce</a></li><li data-type='method'><a href="ParticleEmitter.html#collideWithObject">collideWithObject</a></li><li data-type='method'><a href="ParticleEmitter.html#collideWithTile">collideWithTile</a></li><li data-type='method'><a href="ParticleEmitter.html#collideWithTileRaycast">collideWithTileRaycast</a></li><li data-type='method'><a href="ParticleEmitter.html#destroy">destroy</a></li><li data-type='method'><a href="ParticleEmitter.html#emitParticle">emitParticle</a></li><li data-type='method'><a href="ParticleEmitter.html#getAliveTime">getAliveTime</a></li><li data-type='method'><a href="ParticleEmitter.html#getMirrorSign">getMirrorSign</a></li><li data-type='method'><a href="ParticleEmitter.html#removeChild">removeChild</a></li><li data-type='method'><a href="ParticleEmitter.html#render">render</a></li><li data-type='method'><a href="ParticleEmitter.html#setCollision">setCollision</a></li><li data-type='method'><a href="ParticleEmitter.html#update">update</a></li></ul></li><li class="accordion collapsed child" id=1392388><div class="accordion-heading child"><a href="Sound.html">Sound</a><svg><use xlink:href="#down-icon"></use></svg></div><ul class='methods accordion-content'><li data-type='method'><a href="Sound.html#play">play</a></li><li data-type='method'><a href="Sound.html#playNote">playNote</a></li></ul></li><li class="accordion collapsed child" id=1414049><div class="accordion-heading child"><a href="TileLayer.html">TileLayer</a><svg><use xlink:href="#down-icon"></use></svg></div><ul class='methods accordion-content'><li data-type='method'><a href="TileLayer.html#addChild">addChild</a></li><li data-type='method'><a href="TileLayer.html#applyAcceleration">applyAcceleration</a></li><li data-type='method'><a href="TileLayer.html#applyForce">applyForce</a></li><li data-type='method'><a href="TileLayer.html#collideWithObject">collideWithObject</a></li><li data-type='method'><a href="TileLayer.html#collideWithTile">collideWithTile</a></li><li data-type='method'><a href="TileLayer.html#collideWithTileRaycast">collideWithTileRaycast</a></li><li data-type='method'><a href="TileLayer.html#destroy">destroy</a></li><li data-type='method'><a href="TileLayer.html#drawAllTileData">drawAllTileData</a></li><li data-type='method'><a href="TileLayer.html#drawCanvas2D">drawCanvas2D</a></li><li data-type='method'><a href="TileLayer.html#drawRect">drawRect</a></li><li data-type='method'><a href="TileLayer.html#drawTile">drawTile</a></li><li data-type='method'><a href="TileLayer.html#drawTileData">drawTileData</a></li><li data-type='method'><a href="TileLayer.html#getAliveTime">getAliveTime</a></li><li data-type='method'><a href="TileLayer.html#getData">getData</a></li><li data-type='method'><a href="TileLayer.html#getMirrorSign">getMirrorSign</a></li><li data-type='method'><a href="TileLayer.html#redraw">redraw</a></li><li data-type='method'><a href="TileLayer.html#redrawEnd">redrawEnd</a></li><li data-type='method'><a href="TileLayer.html#redrawStart">redrawStart</a></li><li data-type='method'><a href="TileLayer.html#removeChild">removeChild</a></li><li data-type='method'><a href="TileLayer.html#render">render</a></li><li data-type='method'><a href="TileLayer.html#setCollision">setCollision</a></li><li data-type='method'><a href="TileLayer.html#setData">setData</a></li><li data-type='method'><a href="TileLayer.html#update">update</a></li></ul></li><li class="accordion collapsed child" id=365434><div class="accordion-heading child"><a href="TileLayerData.html">TileLayerData</a><svg><use xlink:href="#down-icon"></use></svg></div><ul class='methods accordion-content'><li data-type='method'><a href="TileLayerData.html#clear">clear</a></li></ul></li><li class="accordion collapsed child" id=3903017><div class="accordion-heading child"><a href="Timer.html">Timer</a><svg><use xlink:href="#down-icon"></use></svg></div><ul class='methods accordion-content'><li data-type='method'><a href="Timer.html#active">active</a></li><li data-type='method'><a href="Timer.html#elapsed">elapsed</a></li><li data-type='method'><a href="Timer.html#get">get</a></li><li data-type='method'><a href="Timer.html#getPercent">getPercent</a></li><li data-type='method'><a href="Timer.html#isSet">isSet</a></li><li data-type='method'><a href="Timer.html#set">set</a></li><li data-type='method'><a href="Timer.html#unset">unset</a></li></ul></li><li class="accordion collapsed child" id=2499051><div class="accordion-heading child"><a href="Vector2.html">Vector2</a><svg><use xlink:href="#down-icon"></use></svg></div><ul class='methods accordion-content'><li data-type='method'><a href="Vector2.html#add">add</a></li><li data-type='method'><a href="Vector2.html#angle">angle</a></li><li data-type='method'><a href="Vector2.html#area">area</a></li><li data-type='method'><a href="Vector2.html#arrayCheck">arrayCheck</a></li><li data-type='method'><a href="Vector2.html#clampLength">clampLength</a></li><li data-type='method'><a href="Vector2.html#copy">copy</a></li><li data-type='method'><a href="Vector2.html#cross">cross</a></li><li data-type='method'><a href="Vector2.html#direction">direction</a></li><li data-type='method'><a href="Vector2.html#distance">distance</a></li><li data-type='method'><a href="Vector2.html#distanceSquared">distanceSquared</a></li><li data-type='method'><a href="Vector2.html#divide">divide</a></li><li data-type='method'><a href="Vector2.html#dot">dot</a></li><li data-type='method'><a href="Vector2.html#floor">floor</a></li><li data-type='method'><a href="Vector2.html#invert">invert</a></li><li data-type='method'><a href="Vector2.html#length">length</a></li><li data-type='method'><a href="Vector2.html#lengthSquared">lengthSquared</a></li><li data-type='method'><a href="Vector2.html#lerp">lerp</a></li><li data-type='method'><a href="Vector2.html#multiply">multiply</a></li><li data-type='method'><a href="Vector2.html#normalize">normalize</a></li><li data-type='method'><a href="Vector2.html#rotate">rotate</a></li><li data-type='method'><a href="Vector2.html#scale">scale</a></li><li data-type='method'><a href="Vector2.html#setAngle">setAngle</a></li><li data-type='method'><a href="Vector2.html#subtract">subtract</a></li></ul></li></ul> </div><div class="accordion collapsed" id="8940848" > <h3 class="accordion-heading">Namespaces<svg><use xlink:href="#down-icon"></use></svg></h3><ul class="accordion-content"><li class="accordion collapsed child" id=454><div class="accordion-heading child"><a href="Audio.html">Audio</a><svg><use xlink:href="#down-icon"></use></svg></div><ul class='methods accordion-content'><li data-type='method'><a href="Audio.html#.getNoteFrequency">getNoteFrequency</a></li><li data-type='method'><a href="Audio.html#.playAudioFile">playAudioFile</a></li><li data-type='method'><a href="Audio.html#.playSamples">playSamples</a></li><li data-type='method'><a href="Audio.html#.speak">speak</a></li><li data-type='method'><a href="Audio.html#.stopSpeech">stopSpeech</a></li><li data-type='method'><a href="Audio.html#.zzfx">zzfx</a></li><li data-type='method'><a href="Audio.html#.zzfxG">zzfxG</a></li><li data-type='method'><a href="Audio.html#.zzfxM">zzfxM</a></li></ul></li><li class="accordion collapsed child" id=3627145><div class="accordion-heading child"><a href="Debug.html">Debug</a><svg><use xlink:href="#down-icon"></use></svg></div><ul class='methods accordion-content'><li data-type='method'><a href="Debug.html#.debugAABB">debugAABB</a></li><li data-type='method'><a href="Debug.html#.debugCircle">debugCircle</a></li><li data-type='method'><a href="Debug.html#.debugClear">debugClear</a></li><li data-type='method'><a href="Debug.html#.debugLine">debugLine</a></li><li data-type='method'><a href="Debug.html#.debugPoint">debugPoint</a></li><li data-type='method'><a href="Debug.html#.debugRect">debugRect</a></li><li data-type='method'><a href="Debug.html#.debugSaveCanvas">debugSaveCanvas</a></li><li data-type='method'><a href="Debug.html#.debugText">debugText</a></li></ul></li><li class="accordion collapsed child" id=2544319><div class="accordion-heading child"><a href="Draw.html">Draw</a><svg><use xlink:href="#down-icon"></use></svg></div><ul class='methods accordion-content'><li data-type='method'><a href="Draw.html#.drawCanvas2D">drawCanvas2D</a></li><li data-type='method'><a href="Draw.html#.drawLine">drawLine</a></li><li data-type='method'><a href="Draw.html#.drawRect">drawRect</a></li><li data-type='method'><a href="Draw.html#.drawRectScreenSpace">drawRectScreenSpace</a></li><li data-type='method'><a href="Draw.html#.drawText">drawText</a></li><li data-type='method'><a href="Draw.html#.drawTile">drawTile</a></li><li data-type='method'><a href="Draw.html#.drawTileScreenSpace">drawTileScreenSpace</a></li><li data-type='method'><a href="Draw.html#.isFullscreen">isFullscreen</a></li><li data-type='method'><a href="Draw.html#.screenToWorld">screenToWorld</a></li><li data-type='method'><a href="Draw.html#.setBlendMode">setBlendMode</a></li><li data-type='method'><a href="Draw.html#.toggleFullscreen">toggleFullscreen</a></li><li data-type='method'><a href="Draw.html#.worldToScreen">worldToScreen</a></li></ul></li><li class="accordion collapsed child" id=8686388><div class="accordion-heading child"><a href="Input.html">Input</a><svg><use xlink:href="#down-icon"></use></svg></div><ul class='methods accordion-content'><li data-type='method'><a href="Input.html#.clearInput">clearInput</a></li><li data-type='method'><a href="Input.html#.gamepadIsDown">gamepadIsDown</a></li><li data-type='method'><a href="Input.html#.gamepadStick">gamepadStick</a></li><li data-type='method'><a href="Input.html#.gamepadWasPressed">gamepadWasPressed</a></li><li data-type='method'><a href="Input.html#.gamepadWasReleased">gamepadWasReleased</a></li><li data-type='method'><a href="Input.html#.keyIsDown">keyIsDown</a></li><li data-type='method'><a href="Input.html#.keyWasPressed">keyWasPressed</a></li><li data-type='method'><a href="Input.html#.keyWasReleased">keyWasReleased</a></li></ul></li><li class="accordion collapsed child" id=5499579><div class="accordion-heading child"><a href="Medals.html">Medals</a><svg><use xlink:href="#down-icon"></use></svg></div><ul class='methods accordion-content'><li data-type='method'><a href="Medals.html#.medalsInit">medalsInit</a></li></ul></li><li class="accordion collapsed child" id=9101884><div class="accordion-heading child"><a href="Random.html">Random</a><svg><use xlink:href="#down-icon"></use></svg></div><ul class='methods accordion-content'><li data-type='method'><a href="Random.html#.rand">rand</a></li><li data-type='method'><a href="Random.html#.randColor">randColor</a></li><li data-type='method'><a href="Random.html#.randInCircle">randInCircle</a></li><li data-type='method'><a href="Random.html#.randInt">randInt</a></li><li data-type='method'><a href="Random.html#.randSeeded">randSeeded</a></li><li data-type='method'><a href="Random.html#.randSign">randSign</a></li><li data-type='method'><a href="Random.html#.randVector">randVector</a></li></ul></li><li class="accordion-list" id=""><a href="Settings.html">Settings</a></li><li class="accordion collapsed child" id=68634><div class="accordion-heading child"><a href="TileCollision.html">TileCollision</a><svg><use xlink:href="#down-icon"></use></svg></div><ul class='methods accordion-content'><li data-type='method'><a href="TileCollision.html#.getTileCollisionData">getTileCollisionData</a></li><li data-type='method'><a href="TileCollision.html#.initTileCollision">initTileCollision</a></li><li data-type='method'><a href="TileCollision.html#.setTileCollisionData">setTileCollisionData</a></li><li data-type='method'><a href="TileCollision.html#.tileCollisionRaycast">tileCollisionRaycast</a></li><li data-type='method'><a href="TileCollision.html#.tileCollisionTest">tileCollisionTest</a></li></ul></li><li class="accordion collapsed child" id=3940071><div class="accordion-heading child"><a href="Utilities.html">Utilities</a><svg><use xlink:href="#down-icon"></use></svg></div><ul class='methods accordion-content'><li data-type='method'><a href="Utilities.html#.abs">abs</a></li><li data-type='method'><a href="Utilities.html#.clamp">clamp</a></li><li data-type='method'><a href="Utilities.html#.formatTime">formatTime</a></li><li data-type='method'><a href="Utilities.html#.isOverlapping">isOverlapping</a></li><li data-type='method'><a href="Utilities.html#.lerp">lerp</a></li><li data-type='method'><a href="Utilities.html#.max">max</a></li><li data-type='method'><a href="Utilities.html#.min">min</a></li><li data-type='method'><a href="Utilities.html#.mod">mod</a></li><li data-type='method'><a href="Utilities.html#.nearestPowerOfTwo">nearestPowerOfTwo</a></li><li data-type='method'><a href="Utilities.html#.percent">percent</a></li><li data-type='method'><a href="Utilities.html#.sign">sign</a></li><li data-type='method'><a href="Utilities.html#.smoothStep">smoothStep</a></li><li data-type='method'><a href="Utilities.html#.vec2">vec2</a></li><li data-type='method'><a href="Utilities.html#.wave">wave</a></li></ul></li><li class="accordion collapsed child" id=5696917><div class="accordion-heading child"><a href="WebGL.html">WebGL</a><svg><use xlink:href="#down-icon"></use></svg></div><ul class='methods accordion-content'><li data-type='method'><a href="WebGL.html#.glCompileShader">glCompileShader</a></li><li data-type='method'><a href="WebGL.html#.glCopyToContext">glCopyToContext</a></li><li data-type='method'><a href="WebGL.html#.glCreateBuffer">glCreateBuffer</a></li><li data-type='method'><a href="WebGL.html#.glCreateProgram">glCreateProgram</a></li><li data-type='method'><a href="WebGL.html#.glCreateTexture">glCreateTexture</a></li><li data-type='method'><a href="WebGL.html#.glDraw">glDraw</a></li><li data-type='method'><a href="WebGL.html#.glFlush">glFlush</a></li><li data-type='method'><a href="WebGL.html#.glSetBlendMode">glSetBlendMode</a></li><li data-type='method'><a href="WebGL.html#.glSetTexture">glSetTexture</a></li></ul></li></ul> </div><div class="accordion collapsed" id="4989453" > <h3 class="accordion-heading">Global<svg><use xlink:href="#down-icon"></use></svg></h3><ul class="accordion-content"><li class="accordion-list" id=""><a href="global.html#engineCollideObjects">engineCollideObjects</a></li><li class="accordion-list" id=""><a href="global.html#engineInit">engineInit</a></li><li class="accordion-list" id=""><a href="global.html#engineName">engineName</a></li><li class="accordion-list" id=""><a href="global.html#engineObjects">engineObjects</a></li><li class="accordion-list" id=""><a href="global.html#engineObjectsCallback">engineObjectsCallback</a></li><li class="accordion-list" id=""><a href="global.html#engineObjectsDestroy">engineObjectsDestroy</a></li><li class="accordion-list" id=""><a href="global.html#engineObjectsUpdate">engineObjectsUpdate</a></li><li class="accordion-list" id=""><a href="global.html#engineVersion">engineVersion</a></li><li class="accordion-list" id=""><a href="global.html#FPS">FPS</a></li><li class="accordion-list" id=""><a href="global.html#frame">frame</a></li><li class="accordion-list" id=""><a href="global.html#paused">paused</a></li><li class="accordion-list" id=""><a href="global.html#time">time</a></li><li class="accordion-list" id=""><a href="global.html#timeDelta">timeDelta</a></li><li class="accordion-list" id=""><a href="global.html#timeReal">timeReal</a></li></ul> </div></div>
93
+
94
+
95
+ </nav>
96
+ <div class="navbar-ham" id="navbar-ham">
97
+ <div>
98
+ <div class="first"></div>
99
+ <div class="second"></div>
100
+ <div class="third"></div>
101
+ </div>
102
+ </div>
103
+
104
+ <div id="main" class="main-content">
105
+
106
+ <h1 id='page-title' class="page-title">
107
+ Audio
108
+ </h1>
109
+
110
+
111
+
112
+
113
+
114
+
115
+
116
+ <section>
117
+
118
+
119
+ <header>
120
+
121
+
122
+ <h2>
123
+
124
+ Audio
125
+
126
+ </h2>
127
+
128
+
129
+
130
+ </header>
131
+
132
+
133
+ <article>
134
+ <div class="container-overview">
135
+
136
+
137
+ <div class="description">LittleJS Audio System
138
  <br> - ZzFX Sound Effects and ZzFXM Music
1
139
  <br> - Caches sounds and music for fast playback
2
140
  <br> - Can attenuate and apply stereo panning to sounds
3
141
  <br> - Ability to play mp3, ogg, and wave files
4
142
  <br> - Speech synthesis wrapper functions
5
143
  <br>
6
144
  <br><b><a href=https://killedbyapixel.github.io/ZzFX/>Create sounds using the ZzFX Sound Designer.</a></b></div>
145
+
146
+
147
+
148
+
149
+
150
+
151
+
152
+ <dl class="details">
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
+ <div class="details-item-container">
180
+ <dt class="tag-source">Source:</dt>
181
+ <dd class="tag-source"><ul class="dummy"><li>
182
+ <a href="engineAudio.js.html">engineAudio.js</a>, <a href="engineAudio.js.html#line1">line 1</a>
183
+ </li></ul></dd>
184
+ </div>
185
+
186
+
187
+
188
+
189
+
190
+
191
+
192
+ </dl>
193
+
194
+
195
+
196
+
197
+
198
+
199
+ </div>
200
+
201
+
202
+
203
+
204
+
205
+
206
+
207
+
208
+
209
+
210
+
211
+
212
+ <h3 class="subsection-title">Members</h3>
213
+
214
+
215
+
216
+ <h4 class="name" id=".audioContext">
217
+ <a href="#.audioContext">#</a>
218
+ <span class="type-signature">(static) </span>audioContext<span class="type-signature"></span>
219
+ </h4>
220
+
221
+
222
+
223
+
224
+ <div class="description">
225
+ Audio context used by the engine
226
+ </div>
227
+
228
+
229
+
230
+
231
+
232
+
233
+
234
+
235
+
236
+ <dl class="details">
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
+ <div class="details-item-container">
264
+ <dt class="tag-source">Source:</dt>
265
+ <dd class="tag-source"><ul class="dummy"><li>
266
+ <a href="engineAudio.js.html">engineAudio.js</a>, <a href="engineAudio.js.html#line209">line 209</a>
267
+ </li></ul></dd>
268
+ </div>
269
+
270
+
271
+
272
+
273
+
274
+
275
+
276
+ </dl>
277
+
278
+
279
+
280
+
281
+
282
+
283
+
284
+
285
+
286
+
287
+ <h4 class="name" id=".zzfxR">
288
+ <a href="#.zzfxR">#</a>
289
+ <span class="type-signature">(static, constant) </span>zzfxR<span class="type-signature"></span>
290
+ </h4>
291
+
292
+
293
+
294
+
295
+ <div class="description">
296
+ Sample rate used for all ZzFX sounds
297
+ </div>
298
+
299
+
300
+
301
+
302
+
303
+
304
+
305
+
306
+
307
+ <dl class="details">
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
+ <div class="details-item-container">
333
+ <dt class="tag-default">Default Value:</dt>
334
+ <dd class="tag-default"><ul class="dummy">
335
+ <li >44100</li>
336
+ </ul></dd>
337
+ </div>
338
+
339
+
340
+
341
+ <div class="details-item-container">
342
+ <dt class="tag-source">Source:</dt>
343
+ <dd class="tag-source"><ul class="dummy"><li>
344
+ <a href="engineAudio.js.html">engineAudio.js</a>, <a href="engineAudio.js.html#line260">line 260</a>
345
+ </li></ul></dd>
346
+ </div>
347
+
348
+
349
+
350
+
351
+
352
+
353
+
354
+ </dl>
355
+
356
+
357
+
358
+
359
+
360
+
361
+
362
+
363
+
364
+
365
+
366
+
367
+ <h3 class="subsection-title">Methods</h3>
368
+
369
+
370
+
371
+
372
+
373
+
374
+ <h4 class="name" id=".getNoteFrequency">
375
+ <a href="#.getNoteFrequency">#</a>
376
+ <span class="type-signature">(static) </span>getNoteFrequency<span class="signature">(semitoneOffset, rootNoteFrequency<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {Number}</span>
377
+ </h4>
378
+
379
+
380
+
381
+
382
+
383
+ <div class="description">
384
+ Get frequency of a note on a musical scale
385
+ </div>
386
+
387
+
388
+
389
+
390
+
391
+
392
+
393
+
394
+
395
+ <div class="method-member-container flex flex-col w-100 overflow-auto mt-20">
396
+ <strong>Parameters:</strong>
397
+
398
+
399
+ <table class="params">
400
+ <thead>
401
+ <tr>
402
+
403
+ <th>Name</th>
404
+
405
+
406
+ <th>Type</th>
407
+
408
+
409
+ <th>Attributes</th>
410
+
411
+
412
+
413
+ <th>Default</th>
414
+
415
+
416
+ <th class="last">Description</th>
417
+ </tr>
418
+ </thead>
419
+
420
+ <tbody>
421
+
422
+
423
+ <tr>
424
+
425
+ <td class="name"><code>semitoneOffset</code></td>
426
+
427
+
428
+ <td class="type">
429
+
430
+
431
+ <span class="param-type">Number</span>
432
+
433
+
434
+
435
+ </td>
436
+
437
+
438
+ <td class="attributes">
439
+
440
+
441
+
442
+
443
+
444
+ </td>
445
+
446
+
447
+
448
+ <td class="default">
449
+
450
+ </td>
451
+
452
+
453
+ <td class="description last">How many semitones away from the root note</td>
454
+ </tr>
455
+
456
+
457
+
458
+ <tr>
459
+
460
+ <td class="name"><code>rootNoteFrequency</code></td>
461
+
462
+
463
+ <td class="type">
464
+
465
+
466
+ <span class="param-type">Number</span>
467
+
468
+
469
+
470
+ </td>
471
+
472
+
473
+ <td class="attributes">
474
+
475
+ &lt;optional><br>
476
+
477
+
478
+
479
+
480
+
481
+ </td>
482
+
483
+
484
+
485
+ <td class="default">
486
+
487
+ 220
488
+
489
+ </td>
490
+
491
+
492
+ <td class="description last">Frequency at semitone offset 0</td>
493
+ </tr>
494
+
495
+
496
+ </tbody>
497
+ </table>
498
+
499
+ </div>
500
+
501
+
502
+
503
+
504
+
505
+
506
+
507
+ <dl class="details">
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
+ <div class="details-item-container">
535
+ <dt class="tag-source">Source:</dt>
536
+ <dd class="tag-source"><ul class="dummy"><li>
537
+ <a href="engineAudio.js.html">engineAudio.js</a>, <a href="engineAudio.js.html#line203">line 203</a>
538
+ </li></ul></dd>
539
+ </div>
540
+
541
+
542
+
543
+
544
+
545
+
546
+
547
+ </dl>
548
+
549
+
550
+
551
+
552
+
553
+
554
+
555
+
556
+
557
+
558
+
559
+
560
+
561
+
562
+
563
+ <div class="method-member-container mt-20">
564
+ <strong>Returns:</strong>
565
+
566
+
567
+ <div class="param-desc">
568
+ - The frequency of the note
569
+ </div>
570
+
571
+
572
+
573
+ <dl class="param-type">
574
+ <dt>
575
+ Type
576
+ </dt>
577
+ <dd>
578
+
579
+ <span class="param-type">Number</span>
580
+
581
+
582
+ </dd>
583
+ </dl>
584
+
585
+
586
+ </div>
587
+
588
+
589
+
590
+
591
+
592
+
593
+
594
+
595
+
596
+ <h4 class="name" id=".playAudioFile">
597
+ <a href="#.playAudioFile">#</a>
598
+ <span class="type-signature">(static) </span>playAudioFile<span class="signature">(url, volume<span class="signature-attributes">opt</span>, loop<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {HTMLAudioElement}</span>
599
+ </h4>
600
+
601
+
602
+
603
+
604
+
605
+ <div class="description">
606
+ Play an mp3 or wav audio from a local file or url
607
+ </div>
608
+
609
+
610
+
611
+
612
+
613
+
614
+
615
+
616
+
617
+ <div class="method-member-container flex flex-col w-100 overflow-auto mt-20">
618
+ <strong>Parameters:</strong>
619
+
620
+
621
+ <table class="params">
622
+ <thead>
623
+ <tr>
624
+
625
+ <th>Name</th>
626
+
627
+
628
+ <th>Type</th>
629
+
630
+
631
+ <th>Attributes</th>
632
+
633
+
634
+
635
+ <th>Default</th>
636
+
637
+
638
+ <th class="last">Description</th>
639
+ </tr>
640
+ </thead>
641
+
642
+ <tbody>
643
+
644
+
645
+ <tr>
646
+
647
+ <td class="name"><code>url</code></td>
648
+
649
+
650
+ <td class="type">
651
+
652
+
653
+ <span class="param-type">String</span>
654
+
655
+
656
+
657
+ </td>
658
+
659
+
660
+ <td class="attributes">
661
+
662
+
663
+
664
+
665
+
666
+ </td>
667
+
668
+
669
+
670
+ <td class="default">
671
+
672
+ </td>
673
+
674
+
675
+ <td class="description last">Location of sound file to play</td>
676
+ </tr>
677
+
678
+
679
+
680
+ <tr>
681
+
682
+ <td class="name"><code>volume</code></td>
683
+
684
+
685
+ <td class="type">
686
+
687
+
688
+ <span class="param-type">Number</span>
689
+
690
+
691
+
692
+ </td>
693
+
694
+
695
+ <td class="attributes">
696
+
697
+ &lt;optional><br>
698
+
699
+
700
+
701
+
702
+
703
+ </td>
704
+
705
+
706
+
707
+ <td class="default">
708
+
709
+ 1
710
+
711
+ </td>
712
+
713
+
714
+ <td class="description last">How much to scale volume by</td>
715
+ </tr>
716
+
717
+
718
+
719
+ <tr>
720
+
721
+ <td class="name"><code>loop</code></td>
722
+
723
+
724
+ <td class="type">
725
+
726
+
727
+ <span class="param-type">Boolean</span>
728
+
729
+
730
+
731
+ </td>
732
+
733
+
734
+ <td class="attributes">
735
+
736
+ &lt;optional><br>
737
+
738
+
739
+
740
+
741
+
742
+ </td>
743
+
744
+
745
+
746
+ <td class="default">
747
+
748
+ 1
749
+
750
+ </td>
751
+
752
+
753
+ <td class="description last">True if the music should loop when it reaches the end</td>
754
+ </tr>
755
+
756
+
757
+ </tbody>
758
+ </table>
759
+
760
+ </div>
761
+
762
+
763
+
764
+
765
+
766
+
767
+
768
+ <dl class="details">
769
+
770
+
771
+
772
+
773
+
774
+
775
+
776
+
777
+
778
+
779
+
780
+
781
+
782
+
783
+
784
+
785
+
786
+
787
+
788
+
789
+
790
+
791
+
792
+
793
+
794
+
795
+ <div class="details-item-container">
796
+ <dt class="tag-source">Source:</dt>
797
+ <dd class="tag-source"><ul class="dummy"><li>
798
+ <a href="engineAudio.js.html">engineAudio.js</a>, <a href="engineAudio.js.html#line157">line 157</a>
799
+ </li></ul></dd>
800
+ </div>
801
+
802
+
803
+
804
+
805
+
806
+
807
+
808
+ </dl>
809
+
810
+
811
+
812
+
813
+
814
+
815
+
816
+
817
+
818
+
819
+
820
+
821
+
822
+
823
+
824
+ <div class="method-member-container mt-20">
825
+ <strong>Returns:</strong>
826
+
827
+
828
+ <div class="param-desc">
829
+ - The audio element for this sound
830
+ </div>
831
+
832
+
833
+
834
+ <dl class="param-type">
835
+ <dt>
836
+ Type
837
+ </dt>
838
+ <dd>
839
+
840
+ <span class="param-type">HTMLAudioElement</span>
841
+
842
+
843
+ </dd>
844
+ </dl>
845
+
846
+
847
+ </div>
848
+
849
+
850
+
851
+
852
+
853
+
854
+
855
+
856
+
857
+ <h4 class="name" id=".playSamples">
858
+ <a href="#.playSamples">#</a>
859
+ <span class="type-signature">(static) </span>playSamples<span class="signature">(sampleChannels, volume<span class="signature-attributes">opt</span>, rate<span class="signature-attributes">opt</span>, pan<span class="signature-attributes">opt</span>, loop<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {AudioBufferSourceNode}</span>
860
+ </h4>
861
+
862
+
863
+
864
+
865
+
866
+ <div class="description">
867
+ Play cached audio samples with given settings
868
+ </div>
869
+
870
+
871
+
872
+
873
+
874
+
875
+
876
+
877
+
878
+ <div class="method-member-container flex flex-col w-100 overflow-auto mt-20">
879
+ <strong>Parameters:</strong>
880
+
881
+
882
+ <table class="params">
883
+ <thead>
884
+ <tr>
885
+
886
+ <th>Name</th>
887
+
888
+
889
+ <th>Type</th>
890
+
891
+
892
+ <th>Attributes</th>
893
+
894
+
895
+
896
+ <th>Default</th>
897
+
898
+
899
+ <th class="last">Description</th>
900
+ </tr>
901
+ </thead>
902
+
903
+ <tbody>
904
+
905
+
906
+ <tr>
907
+
908
+ <td class="name"><code>sampleChannels</code></td>
909
+
910
+
911
+ <td class="type">
912
+
913
+
914
+ <span class="param-type">Array</span>
915
+
916
+
917
+
918
+ </td>
919
+
920
+
921
+ <td class="attributes">
922
+
923
+
924
+
925
+
926
+
927
+ </td>
928
+
929
+
930
+
931
+ <td class="default">
932
+
933
+ </td>
934
+
935
+
936
+ <td class="description last">Array of arrays of samples to play (for stereo playback)</td>
937
+ </tr>
938
+
939
+
940
+
941
+ <tr>
942
+
943
+ <td class="name"><code>volume</code></td>
944
+
945
+
946
+ <td class="type">
947
+
948
+
949
+ <span class="param-type">Number</span>
950
+
951
+
952
+
953
+ </td>
954
+
955
+
956
+ <td class="attributes">
957
+
958
+ &lt;optional><br>
959
+
960
+
961
+
962
+
963
+
964
+ </td>
965
+
966
+
967
+
968
+ <td class="default">
969
+
970
+ 1
971
+
972
+ </td>
973
+
974
+
975
+ <td class="description last">How much to scale volume by</td>
976
+ </tr>
977
+
978
+
979
+
980
+ <tr>
981
+
982
+ <td class="name"><code>rate</code></td>
983
+
984
+
985
+ <td class="type">
986
+
987
+
988
+ <span class="param-type">Number</span>
989
+
990
+
991
+
992
+ </td>
993
+
994
+
995
+ <td class="attributes">
996
+
997
+ &lt;optional><br>
998
+
999
+
1000
+
1001
+
1002
+
1003
+ </td>
1004
+
1005
+
1006
+
1007
+ <td class="default">
1008
+
1009
+ 1
1010
+
1011
+ </td>
1012
+
1013
+
1014
+ <td class="description last">The playback rate to use</td>
1015
+ </tr>
1016
+
1017
+
1018
+
1019
+ <tr>
1020
+
1021
+ <td class="name"><code>pan</code></td>
1022
+
1023
+
1024
+ <td class="type">
1025
+
1026
+
1027
+ <span class="param-type">Number</span>
1028
+
1029
+
1030
+
1031
+ </td>
1032
+
1033
+
1034
+ <td class="attributes">
1035
+
1036
+ &lt;optional><br>
1037
+
1038
+
1039
+
1040
+
1041
+
1042
+ </td>
1043
+
1044
+
1045
+
1046
+ <td class="default">
1047
+
1048
+ 0
1049
+
1050
+ </td>
1051
+
1052
+
1053
+ <td class="description last">How much to apply stereo panning</td>
1054
+ </tr>
1055
+
1056
+
1057
+
1058
+ <tr>
1059
+
1060
+ <td class="name"><code>loop</code></td>
1061
+
1062
+
1063
+ <td class="type">
1064
+
1065
+
1066
+ <span class="param-type">Boolean</span>
1067
+
1068
+
1069
+
1070
+ </td>
1071
+
1072
+
1073
+ <td class="attributes">
1074
+
1075
+ &lt;optional><br>
1076
+
1077
+
1078
+
1079
+
1080
+
1081
+ </td>
1082
+
1083
+
1084
+
1085
+ <td class="default">
1086
+
1087
+ 0
1088
+
1089
+ </td>
1090
+
1091
+
1092
+ <td class="description last">True if the sound should loop when it reaches the end</td>
1093
+ </tr>
1094
+
1095
+
1096
+ </tbody>
1097
+ </table>
1098
+
1099
+ </div>
1100
+
1101
+
1102
+
1103
+
1104
+
1105
+
1106
+
1107
+ <dl class="details">
1108
+
1109
+
1110
+
1111
+
1112
+
1113
+
1114
+
1115
+
1116
+
1117
+
1118
+
1119
+
1120
+
1121
+
1122
+
1123
+
1124
+
1125
+
1126
+
1127
+
1128
+
1129
+
1130
+
1131
+
1132
+
1133
+
1134
+ <div class="details-item-container">
1135
+ <dt class="tag-source">Source:</dt>
1136
+ <dd class="tag-source"><ul class="dummy"><li>
1137
+ <a href="engineAudio.js.html">engineAudio.js</a>, <a href="engineAudio.js.html#line219">line 219</a>
1138
+ </li></ul></dd>
1139
+ </div>
1140
+
1141
+
1142
+
1143
+
1144
+
1145
+
1146
+
1147
+ </dl>
1148
+
1149
+
1150
+
1151
+
1152
+
1153
+
1154
+
1155
+
1156
+
1157
+
1158
+
1159
+
1160
+
1161
+
1162
+
1163
+ <div class="method-member-container mt-20">
1164
+ <strong>Returns:</strong>
1165
+
1166
+
1167
+ <div class="param-desc">
1168
+ - The audio node of the sound played
1169
+ </div>
1170
+
1171
+
1172
+
1173
+ <dl class="param-type">
1174
+ <dt>
1175
+ Type
1176
+ </dt>
1177
+ <dd>
1178
+
1179
+ <span class="param-type">AudioBufferSourceNode</span>
1180
+
1181
+
1182
+ </dd>
1183
+ </dl>
1184
+
1185
+
1186
+ </div>
1187
+
1188
+
1189
+
1190
+
1191
+
1192
+
1193
+
1194
+
1195
+
1196
+ <h4 class="name" id=".speak">
1197
+ <a href="#.speak">#</a>
1198
+ <span class="type-signature">(static) </span>speak<span class="signature">(text, language<span class="signature-attributes">opt</span>, volume<span class="signature-attributes">opt</span>, rate<span class="signature-attributes">opt</span>, pitch<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {SpeechSynthesisUtterance}</span>
1199
+ </h4>
1200
+
1201
+
1202
+
1203
+
1204
+
1205
+ <div class="description">
1206
+ Speak text with passed in settings
1207
+ </div>
1208
+
1209
+
1210
+
1211
+
1212
+
1213
+
1214
+
1215
+
1216
+
1217
+ <div class="method-member-container flex flex-col w-100 overflow-auto mt-20">
1218
+ <strong>Parameters:</strong>
1219
+
1220
+
1221
+ <table class="params">
1222
+ <thead>
1223
+ <tr>
1224
+
1225
+ <th>Name</th>
1226
+
1227
+
1228
+ <th>Type</th>
1229
+
1230
+
1231
+ <th>Attributes</th>
1232
+
1233
+
1234
+
1235
+ <th>Default</th>
1236
+
1237
+
1238
+ <th class="last">Description</th>
1239
+ </tr>
1240
+ </thead>
1241
+
1242
+ <tbody>
1243
+
1244
+
1245
+ <tr>
1246
+
1247
+ <td class="name"><code>text</code></td>
1248
+
1249
+
1250
+ <td class="type">
1251
+
1252
+
1253
+ <span class="param-type">String</span>
1254
+
1255
+
1256
+
1257
+ </td>
1258
+
1259
+
1260
+ <td class="attributes">
1261
+
1262
+
1263
+
1264
+
1265
+
1266
+ </td>
1267
+
1268
+
1269
+
1270
+ <td class="default">
1271
+
1272
+ </td>
1273
+
1274
+
1275
+ <td class="description last">The text to speak</td>
1276
+ </tr>
1277
+
1278
+
1279
+
1280
+ <tr>
1281
+
1282
+ <td class="name"><code>language</code></td>
1283
+
1284
+
1285
+ <td class="type">
1286
+
1287
+
1288
+ <span class="param-type">String</span>
1289
+
1290
+
1291
+
1292
+ </td>
1293
+
1294
+
1295
+ <td class="attributes">
1296
+
1297
+ &lt;optional><br>
1298
+
1299
+
1300
+
1301
+
1302
+
1303
+ </td>
1304
+
1305
+
1306
+
1307
+ <td class="default">
1308
+
1309
+ </td>
1310
+
1311
+
1312
+ <td class="description last">The language/accent to use (examples: en, it, ru, ja, zh)</td>
1313
+ </tr>
1314
+
1315
+
1316
+
1317
+ <tr>
1318
+
1319
+ <td class="name"><code>volume</code></td>
1320
+
1321
+
1322
+ <td class="type">
1323
+
1324
+
1325
+ <span class="param-type">Number</span>
1326
+
1327
+
1328
+
1329
+ </td>
1330
+
1331
+
1332
+ <td class="attributes">
1333
+
1334
+ &lt;optional><br>
1335
+
1336
+
1337
+
1338
+
1339
+
1340
+ </td>
1341
+
1342
+
1343
+
1344
+ <td class="default">
1345
+
1346
+ 1
1347
+
1348
+ </td>
1349
+
1350
+
1351
+ <td class="description last">How much to scale volume by</td>
1352
+ </tr>
1353
+
1354
+
1355
+
1356
+ <tr>
1357
+
1358
+ <td class="name"><code>rate</code></td>
1359
+
1360
+
1361
+ <td class="type">
1362
+
1363
+
1364
+ <span class="param-type">Number</span>
1365
+
1366
+
1367
+
1368
+ </td>
1369
+
1370
+
1371
+ <td class="attributes">
1372
+
1373
+ &lt;optional><br>
1374
+
1375
+
1376
+
1377
+
1378
+
1379
+ </td>
1380
+
1381
+
1382
+
1383
+ <td class="default">
1384
+
1385
+ 1
1386
+
1387
+ </td>
1388
+
1389
+
1390
+ <td class="description last">How quickly to speak</td>
1391
+ </tr>
1392
+
1393
+
1394
+
1395
+ <tr>
1396
+
1397
+ <td class="name"><code>pitch</code></td>
1398
+
1399
+
1400
+ <td class="type">
1401
+
1402
+
1403
+ <span class="param-type">Number</span>
1404
+
1405
+
1406
+
1407
+ </td>
1408
+
1409
+
1410
+ <td class="attributes">
1411
+
1412
+ &lt;optional><br>
1413
+
1414
+
1415
+
1416
+
1417
+
1418
+ </td>
1419
+
1420
+
1421
+
1422
+ <td class="default">
1423
+
1424
+ 1
1425
+
1426
+ </td>
1427
+
1428
+
1429
+ <td class="description last">How much to change the pitch by</td>
1430
+ </tr>
1431
+
1432
+
1433
+ </tbody>
1434
+ </table>
1435
+
1436
+ </div>
1437
+
1438
+
1439
+
1440
+
1441
+
1442
+
1443
+
1444
+ <dl class="details">
1445
+
1446
+
1447
+
1448
+
1449
+
1450
+
1451
+
1452
+
1453
+
1454
+
1455
+
1456
+
1457
+
1458
+
1459
+
1460
+
1461
+
1462
+
1463
+
1464
+
1465
+
1466
+
1467
+
1468
+
1469
+
1470
+
1471
+ <div class="details-item-container">
1472
+ <dt class="tag-source">Source:</dt>
1473
+ <dd class="tag-source"><ul class="dummy"><li>
1474
+ <a href="engineAudio.js.html">engineAudio.js</a>, <a href="engineAudio.js.html#line176">line 176</a>
1475
+ </li></ul></dd>
1476
+ </div>
1477
+
1478
+
1479
+
1480
+
1481
+
1482
+
1483
+
1484
+ </dl>
1485
+
1486
+
1487
+
1488
+
1489
+
1490
+
1491
+
1492
+
1493
+
1494
+
1495
+
1496
+
1497
+
1498
+
1499
+
1500
+ <div class="method-member-container mt-20">
1501
+ <strong>Returns:</strong>
1502
+
1503
+
1504
+ <div class="param-desc">
1505
+ - The utterance that was spoken
1506
+ </div>
1507
+
1508
+
1509
+
1510
+ <dl class="param-type">
1511
+ <dt>
1512
+ Type
1513
+ </dt>
1514
+ <dd>
1515
+
1516
+ <span class="param-type">SpeechSynthesisUtterance</span>
1517
+
1518
+
1519
+ </dd>
1520
+ </dl>
1521
+
1522
+
1523
+ </div>
1524
+
1525
+
1526
+
1527
+
1528
+
1529
+
1530
+
1531
+
1532
+
1533
+ <h4 class="name" id=".stopSpeech">
1534
+ <a href="#.stopSpeech">#</a>
1535
+ <span class="type-signature">(static) </span>stopSpeech<span class="signature">()</span><span class="type-signature"></span>
1536
+ </h4>
1537
+
1538
+
1539
+
1540
+
1541
+
1542
+ <div class="description">
1543
+ Stop all queued speech
1544
+ </div>
1545
+
1546
+
1547
+
1548
+
1549
+
1550
+
1551
+
1552
+
1553
+
1554
+
1555
+
1556
+
1557
+
1558
+
1559
+
1560
+ <dl class="details">
1561
+
1562
+
1563
+
1564
+
1565
+
1566
+
1567
+
1568
+
1569
+
1570
+
1571
+
1572
+
1573
+
1574
+
1575
+
1576
+
1577
+
1578
+
1579
+
1580
+
1581
+
1582
+
1583
+
1584
+
1585
+
1586
+
1587
+ <div class="details-item-container">
1588
+ <dt class="tag-source">Source:</dt>
1589
+ <dd class="tag-source"><ul class="dummy"><li>
1590
+ <a href="engineAudio.js.html">engineAudio.js</a>, <a href="engineAudio.js.html#line196">line 196</a>
1591
+ </li></ul></dd>
1592
+ </div>
1593
+
1594
+
1595
+
1596
+
1597
+
1598
+
1599
+
1600
+ </dl>
1601
+
1602
+
1603
+
1604
+
1605
+
1606
+
1607
+
1608
+
1609
+
1610
+
1611
+
1612
+
1613
+
1614
+
1615
+
1616
+
1617
+
1618
+
1619
+
1620
+
1621
+
1622
+
1623
+
1624
+ <h4 class="name" id=".zzfx">
1625
+ <a href="#.zzfx">#</a>
1626
+ <span class="type-signature">(static) </span>zzfx<span class="signature">(&hellip;zzfxSound)</span><span class="type-signature"> &rarr; {Array}</span>
1627
+ </h4>
1628
+
1629
+
1630
+
1631
+
1632
+
1633
+ <div class="description">
1634
+ Generate and play a ZzFX sound
1635
+ </div>
1636
+
1637
+
1638
+
1639
+
1640
+
1641
+
1642
+
1643
+
1644
+
1645
+ <div class="method-member-container flex flex-col w-100 overflow-auto mt-20">
1646
+ <strong>Parameters:</strong>
1647
+
1648
+
1649
+ <table class="params">
1650
+ <thead>
1651
+ <tr>
1652
+
1653
+ <th>Name</th>
1654
+
1655
+
1656
+ <th>Type</th>
1657
+
1658
+
1659
+ <th>Attributes</th>
1660
+
1661
+
1662
+
1663
+
1664
+ <th class="last">Description</th>
1665
+ </tr>
1666
+ </thead>
1667
+
1668
+ <tbody>
1669
+
1670
+
1671
+ <tr>
1672
+
1673
+ <td class="name"><code>zzfxSound</code></td>
1674
+
1675
+
1676
+ <td class="type">
1677
+
1678
+
1679
+ <span class="param-type">Array</span>
1680
+
1681
+
1682
+
1683
+ </td>
1684
+
1685
+
1686
+ <td class="attributes">
1687
+
1688
+
1689
+
1690
+
1691
+
1692
+ &lt;repeatable><br>
1693
+
1694
+ </td>
1695
+
1696
+
1697
+
1698
+
1699
+ <td class="description last">Array of ZzFX parameters, ex. [.5,.5]</td>
1700
+ </tr>
1701
+
1702
+
1703
+ </tbody>
1704
+ </table>
1705
+
1706
+ </div>
1707
+
1708
+
1709
+
1710
+
1711
+
1712
+
1713
+
1714
+ <dl class="details">
1715
+
1716
+
1717
+
1718
+
1719
+
1720
+
1721
+
1722
+
1723
+
1724
+
1725
+
1726
+
1727
+
1728
+
1729
+
1730
+
1731
+
1732
+
1733
+
1734
+
1735
+
1736
+
1737
+
1738
+
1739
+
1740
+
1741
+ <div class="details-item-container">
1742
+ <dt class="tag-source">Source:</dt>
1743
+ <dd class="tag-source"><ul class="dummy"><li>
1744
+ <a href="engineAudio.js.html">engineAudio.js</a>, <a href="engineAudio.js.html#line255">line 255</a>
1745
+ </li></ul></dd>
1746
+ </div>
1747
+
1748
+
1749
+
1750
+
1751
+
1752
+
1753
+
1754
+ </dl>
1755
+
1756
+
1757
+
1758
+
1759
+
1760
+
1761
+
1762
+
1763
+
1764
+
1765
+
1766
+
1767
+
1768
+
1769
+
1770
+ <div class="method-member-container mt-20">
1771
+ <strong>Returns:</strong>
1772
+
1773
+
1774
+ <div class="param-desc">
1775
+ - Array of audio samples
1776
+ </div>
1777
+
1778
+
1779
+
1780
+ <dl class="param-type">
1781
+ <dt>
1782
+ Type
1783
+ </dt>
1784
+ <dd>
1785
+
1786
+ <span class="param-type">Array</span>
1787
+
1788
+
1789
+ </dd>
1790
+ </dl>
1791
+
1792
+
1793
+ </div>
1794
+
1795
+
1796
+
1797
+
1798
+
1799
+
1800
+
1801
+
1802
+
1803
+ <h4 class="name" id=".zzfxG">
1804
+ <a href="#.zzfxG">#</a>
1805
+ <span class="type-signature">(static) </span>zzfxG<span class="signature">(volume)</span><span class="type-signature"></span>
1806
+ </h4>
1807
+
1808
+
1809
+
1810
+
1811
+
1812
+ <div class="description">
1813
+ Generate samples for a ZzFX sound
1814
+ </div>
1815
+
1816
+
1817
+
1818
+
1819
+
1820
+
1821
+
1822
+
1823
+
1824
+ <div class="method-member-container flex flex-col w-100 overflow-auto mt-20">
1825
+ <strong>Parameters:</strong>
1826
+
1827
+
1828
+ <table class="params">
1829
+ <thead>
1830
+ <tr>
1831
+
1832
+ <th>Name</th>
1833
+
1834
+
1835
+ <th>Type</th>
1836
+
1837
+
1838
+
1839
+
1840
+
1841
+ <th class="last">Description</th>
1842
+ </tr>
1843
+ </thead>
1844
+
1845
+ <tbody>
1846
+
1847
+
1848
+ <tr>
1849
+
1850
+ <td class="name"><code>volume</code></td>
1851
+
1852
+
1853
+ <td class="type">
1854
+
1855
+ </td>
1856
+
1857
+
1858
+
1859
+
1860
+
1861
+ <td class="description last"></td>
1862
+ </tr>
1863
+
1864
+
1865
+ </tbody>
1866
+ </table>
1867
+
1868
+ </div>
1869
+
1870
+
1871
+
1872
+
1873
+
1874
+
1875
+
1876
+ <dl class="details">
1877
+
1878
+
1879
+
1880
+
1881
+
1882
+
1883
+
1884
+
1885
+
1886
+
1887
+
1888
+
1889
+
1890
+
1891
+
1892
+
1893
+
1894
+
1895
+
1896
+
1897
+
1898
+
1899
+
1900
+
1901
+
1902
+
1903
+ <div class="details-item-container">
1904
+ <dt class="tag-source">Source:</dt>
1905
+ <dd class="tag-source"><ul class="dummy"><li>
1906
+ <a href="engineAudio.js.html">engineAudio.js</a>, <a href="engineAudio.js.html#line264">line 264</a>
1907
+ </li></ul></dd>
1908
+ </div>
1909
+
1910
+
1911
+
1912
+
1913
+
1914
+
1915
+
1916
+ </dl>
1917
+
1918
+
1919
+
1920
+
1921
+
1922
+
1923
+
1924
+
1925
+
1926
+
1927
+
1928
+
1929
+
1930
+
1931
+
1932
+
1933
+
1934
+
1935
+
1936
+
1937
+
1938
+
1939
+
1940
+ <h4 class="name" id=".zzfxM">
1941
+ <a href="#.zzfxM">#</a>
1942
+ <span class="type-signature">(static) </span>zzfxM<span class="signature">(instruments, patterns, sequence, BPM<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {Array}</span>
1943
+ </h4>
1944
+
1945
+
1946
+
1947
+
1948
+
1949
+ <div class="description">
1950
+ Generate samples for a ZzFM song with given parameters
1951
+ </div>
1952
+
1953
+
1954
+
1955
+
1956
+
1957
+
1958
+
1959
+
1960
+
1961
+ <div class="method-member-container flex flex-col w-100 overflow-auto mt-20">
1962
+ <strong>Parameters:</strong>
1963
+
1964
+
1965
+ <table class="params">
1966
+ <thead>
1967
+ <tr>
1968
+
1969
+ <th>Name</th>
1970
+
1971
+
1972
+ <th>Type</th>
1973
+
1974
+
1975
+ <th>Attributes</th>
1976
+
1977
+
1978
+
1979
+ <th>Default</th>
1980
+
1981
+
1982
+ <th class="last">Description</th>
1983
+ </tr>
1984
+ </thead>
1985
+
1986
+ <tbody>
1987
+
1988
+
1989
+ <tr>
1990
+
1991
+ <td class="name"><code>instruments</code></td>
1992
+
1993
+
1994
+ <td class="type">
1995
+
1996
+
1997
+ <span class="param-type">Array</span>
1998
+
1999
+
2000
+
2001
+ </td>
2002
+
2003
+
2004
+ <td class="attributes">
2005
+
2006
+
2007
+
2008
+
2009
+
2010
+ </td>
2011
+
2012
+
2013
+
2014
+ <td class="default">
2015
+
2016
+ </td>
2017
+
2018
+
2019
+ <td class="description last">Array of ZzFX sound paramaters</td>
2020
+ </tr>
2021
+
2022
+
2023
+
2024
+ <tr>
2025
+
2026
+ <td class="name"><code>patterns</code></td>
2027
+
2028
+
2029
+ <td class="type">
2030
+
2031
+
2032
+ <span class="param-type">Array</span>
2033
+
2034
+
2035
+
2036
+ </td>
2037
+
2038
+
2039
+ <td class="attributes">
2040
+
2041
+
2042
+
2043
+
2044
+
2045
+ </td>
2046
+
2047
+
2048
+
2049
+ <td class="default">
2050
+
2051
+ </td>
2052
+
2053
+
2054
+ <td class="description last">Array of pattern data</td>
2055
+ </tr>
2056
+
2057
+
2058
+
2059
+ <tr>
2060
+
2061
+ <td class="name"><code>sequence</code></td>
2062
+
2063
+
2064
+ <td class="type">
2065
+
2066
+
2067
+ <span class="param-type">Array</span>
2068
+
2069
+
2070
+
2071
+ </td>
2072
+
2073
+
2074
+ <td class="attributes">
2075
+
2076
+
2077
+
2078
+
2079
+
2080
+ </td>
2081
+
2082
+
2083
+
2084
+ <td class="default">
2085
+
2086
+ </td>
2087
+
2088
+
2089
+ <td class="description last">Array of pattern indexes</td>
2090
+ </tr>
2091
+
2092
+
2093
+
2094
+ <tr>
2095
+
2096
+ <td class="name"><code>BPM</code></td>
2097
+
2098
+
2099
+ <td class="type">
2100
+
2101
+
2102
+ <span class="param-type">Number</span>
2103
+
2104
+
2105
+
2106
+ </td>
2107
+
2108
+
2109
+ <td class="attributes">
2110
+
2111
+ &lt;optional><br>
2112
+
2113
+
2114
+
2115
+
2116
+
2117
+ </td>
2118
+
2119
+
2120
+
2121
+ <td class="default">
2122
+
2123
+ 125
2124
+
2125
+ </td>
2126
+
2127
+
2128
+ <td class="description last">Playback speed of the song in BPM</td>
2129
+ </tr>
2130
+
2131
+
2132
+ </tbody>
2133
+ </table>
2134
+
2135
+ </div>
2136
+
2137
+
2138
+
2139
+
2140
+
2141
+
2142
+
2143
+ <dl class="details">
2144
+
2145
+
2146
+
2147
+
2148
+
2149
+
2150
+
2151
+
2152
+
2153
+
2154
+
2155
+
2156
+
2157
+
2158
+
2159
+
2160
+
2161
+
2162
+
2163
+
2164
+
2165
+
2166
+
2167
+
2168
+
2169
+
2170
+ <div class="details-item-container">
2171
+ <dt class="tag-source">Source:</dt>
2172
+ <dd class="tag-source"><ul class="dummy"><li>
2173
+ <a href="engineAudio.js.html">engineAudio.js</a>, <a href="engineAudio.js.html#line356">line 356</a>
2174
+ </li></ul></dd>
2175
+ </div>
2176
+
2177
+
2178
+
2179
+
2180
+
2181
+
2182
+
2183
+ </dl>
2184
+
2185
+
2186
+
2187
+
2188
+
2189
+
2190
+
2191
+
2192
+
2193
+
2194
+
2195
+
2196
+
2197
+
2198
+
2199
+ <div class="method-member-container mt-20">
2200
+ <strong>Returns:</strong>
2201
+
2202
+
2203
+ <div class="param-desc">
2204
+ - Left and right channel sample data
2205
+ </div>
2206
+
2207
+
2208
+
2209
+ <dl class="param-type">
2210
+ <dt>
2211
+ Type
2212
+ </dt>
2213
+ <dd>
2214
+
2215
+ <span class="param-type">Array</span>
2216
+
2217
+
2218
+ </dd>
2219
+ </dl>
2220
+
2221
+
2222
+ </div>
2223
+
2224
+
2225
+
2226
+
2227
+
2228
+
2229
+
2230
+
2231
+
2232
+
2233
+ </article>
2234
+
2235
+ </section>
2236
+
2237
+
2238
+
2239
+
2240
+ </div>
2241
+
2242
+ <footer class="footer" id="footer">
2243
+ <a href=https://github.com/KilledByAPixel/LittleJS>LittleJS - MIT License - Copyright 2021 Frank Force</a>
2244
+ </footer>
2245
+
2246
+ <script src="scripts/third-party/prettify.js"></script>
2247
+ <script src="scripts/third-party/lang-css.js"></script>
2248
+ <script type="text/javascript" src="scripts/misc.js"></script>
2249
+
2250
+ <script>prettyPrint();</script>
2251
+ <script src="scripts/linenumber.js"></script>
2252
+ <script src="scripts/fix-code-block.js"></script>
2253
+ <script src="scripts/fix-navbar.js"></script>
2254
+
2255
+ <script src="scripts/search.js"></script>
2256
+ <script src="scripts/third-party/fuse.js"></script>
2257
+ <script>
2258
+ var list = [{"title":"Color","link":"<a href=\"Color.html\">Color</a>"},{"title":"Color#add","link":"<a href=\"Color.html#add\">Color &rtrif; add</a>"},{"title":"Color#clamp","link":"<a href=\"Color.html#clamp\">Color &rtrif; clamp</a>"},{"title":"Color#copy","link":"<a href=\"Color.html#copy\">Color &rtrif; copy</a>"},{"title":"Color#divide","link":"<a href=\"Color.html#divide\">Color &rtrif; divide</a>"},{"title":"Color#lerp","link":"<a href=\"Color.html#lerp\">Color &rtrif; lerp</a>"},{"title":"Color#multiply","link":"<a href=\"Color.html#multiply\">Color &rtrif; multiply</a>"},{"title":"Color#mutate","link":"<a href=\"Color.html#mutate\">Color &rtrif; mutate</a>"},{"title":"Color#rgba","link":"<a href=\"Color.html#rgba\">Color &rtrif; rgba</a>"},{"title":"Color#rgbaInt","link":"<a href=\"Color.html#rgbaInt\">Color &rtrif; rgbaInt</a>"},{"title":"Color#scale","link":"<a href=\"Color.html#scale\">Color &rtrif; scale</a>"},{"title":"Color#setHSLA","link":"<a href=\"Color.html#setHSLA\">Color &rtrif; setHSLA</a>"},{"title":"Color#subtract","link":"<a href=\"Color.html#subtract\">Color &rtrif; subtract</a>"},{"title":"EngineObject","link":"<a href=\"EngineObject.html\">EngineObject</a>"},{"title":"EngineObject#addChild","link":"<a href=\"EngineObject.html#addChild\">EngineObject &rtrif; addChild</a>"},{"title":"EngineObject#applyAcceleration","link":"<a href=\"EngineObject.html#applyAcceleration\">EngineObject &rtrif; applyAcceleration</a>"},{"title":"EngineObject#applyForce","link":"<a href=\"EngineObject.html#applyForce\">EngineObject &rtrif; applyForce</a>"},{"title":"EngineObject#collideWithObject","link":"<a href=\"EngineObject.html#collideWithObject\">EngineObject &rtrif; collideWithObject</a>"},{"title":"EngineObject#collideWithTile","link":"<a href=\"EngineObject.html#collideWithTile\">EngineObject &rtrif; collideWithTile</a>"},{"title":"EngineObject#collideWithTileRaycast","link":"<a href=\"EngineObject.html#collideWithTileRaycast\">EngineObject &rtrif; collideWithTileRaycast</a>"},{"title":"EngineObject#destroy","link":"<a href=\"EngineObject.html#destroy\">EngineObject &rtrif; destroy</a>"},{"title":"EngineObject#getAliveTime","link":"<a href=\"EngineObject.html#getAliveTime\">EngineObject &rtrif; getAliveTime</a>"},{"title":"EngineObject#getMirrorSign","link":"<a href=\"EngineObject.html#getMirrorSign\">EngineObject &rtrif; getMirrorSign</a>"},{"title":"EngineObject#removeChild","link":"<a href=\"EngineObject.html#removeChild\">EngineObject &rtrif; removeChild</a>"},{"title":"EngineObject#render","link":"<a href=\"EngineObject.html#render\">EngineObject &rtrif; render</a>"},{"title":"EngineObject#setCollision","link":"<a href=\"EngineObject.html#setCollision\">EngineObject &rtrif; setCollision</a>"},{"title":"EngineObject#update","link":"<a href=\"EngineObject.html#update\">EngineObject &rtrif; update</a>"},{"title":"Medal","link":"<a href=\"Medal.html\">Medal</a>"},{"title":"Medal#render","link":"<a href=\"Medal.html#render\">Medal &rtrif; render</a>"},{"title":"Medal#renderIcon","link":"<a href=\"Medal.html#renderIcon\">Medal &rtrif; renderIcon</a>"},{"title":"Medal#unlock","link":"<a href=\"Medal.html#unlock\">Medal &rtrif; unlock</a>"},{"title":"Music","link":"<a href=\"Music.html\">Music</a>"},{"title":"Music#play","link":"<a href=\"Music.html#play\">Music &rtrif; play</a>"},{"title":"Newgrounds","link":"<a href=\"Newgrounds.html\">Newgrounds</a>"},{"title":"Newgrounds#call","link":"<a href=\"Newgrounds.html#call\">Newgrounds &rtrif; call</a>"},{"title":"Newgrounds#getScores","link":"<a href=\"Newgrounds.html#getScores\">Newgrounds &rtrif; getScores</a>"},{"title":"Newgrounds#logView","link":"<a href=\"Newgrounds.html#logView\">Newgrounds &rtrif; logView</a>"},{"title":"Newgrounds#postScore","link":"<a href=\"Newgrounds.html#postScore\">Newgrounds &rtrif; postScore</a>"},{"title":"Newgrounds#unlockMedal","link":"<a href=\"Newgrounds.html#unlockMedal\">Newgrounds &rtrif; unlockMedal</a>"},{"title":"Particle","link":"<a href=\"Particle.html\">Particle</a>"},{"title":"Particle#addChild","link":"<a href=\"Particle.html#addChild\">Particle &rtrif; addChild</a>"},{"title":"Particle#applyAcceleration","link":"<a href=\"Particle.html#applyAcceleration\">Particle &rtrif; applyAcceleration</a>"},{"title":"Particle#applyForce","link":"<a href=\"Particle.html#applyForce\">Particle &rtrif; applyForce</a>"},{"title":"Particle#collideWithObject","link":"<a href=\"Particle.html#collideWithObject\">Particle &rtrif; collideWithObject</a>"},{"title":"Particle#collideWithTile","link":"<a href=\"Particle.html#collideWithTile\">Particle &rtrif; collideWithTile</a>"},{"title":"Particle#collideWithTileRaycast","link":"<a href=\"Particle.html#collideWithTileRaycast\">Particle &rtrif; collideWithTileRaycast</a>"},{"title":"Particle#destroy","link":"<a href=\"Particle.html#destroy\">Particle &rtrif; destroy</a>"},{"title":"Particle#getAliveTime","link":"<a href=\"Particle.html#getAliveTime\">Particle &rtrif; getAliveTime</a>"},{"title":"Particle#getMirrorSign","link":"<a href=\"Particle.html#getMirrorSign\">Particle &rtrif; getMirrorSign</a>"},{"title":"Particle#removeChild","link":"<a href=\"Particle.html#removeChild\">Particle &rtrif; removeChild</a>"},{"title":"Particle#render","link":"<a href=\"Particle.html#render\">Particle &rtrif; render</a>"},{"title":"Particle#setCollision","link":"<a href=\"Particle.html#setCollision\">Particle &rtrif; setCollision</a>"},{"title":"Particle#update","link":"<a href=\"Particle.html#update\">Particle &rtrif; update</a>"},{"title":"ParticleEmitter","link":"<a href=\"ParticleEmitter.html\">ParticleEmitter</a>"},{"title":"ParticleEmitter#addChild","link":"<a href=\"ParticleEmitter.html#addChild\">ParticleEmitter &rtrif; addChild</a>"},{"title":"ParticleEmitter#applyAcceleration","link":"<a href=\"ParticleEmitter.html#applyAcceleration\">ParticleEmitter &rtrif; applyAcceleration</a>"},{"title":"ParticleEmitter#applyForce","link":"<a href=\"ParticleEmitter.html#applyForce\">ParticleEmitter &rtrif; applyForce</a>"},{"title":"ParticleEmitter#collideWithObject","link":"<a href=\"ParticleEmitter.html#collideWithObject\">ParticleEmitter &rtrif; collideWithObject</a>"},{"title":"ParticleEmitter#collideWithTile","link":"<a href=\"ParticleEmitter.html#collideWithTile\">ParticleEmitter &rtrif; collideWithTile</a>"},{"title":"ParticleEmitter#collideWithTileRaycast","link":"<a href=\"ParticleEmitter.html#collideWithTileRaycast\">ParticleEmitter &rtrif; collideWithTileRaycast</a>"},{"title":"ParticleEmitter#destroy","link":"<a href=\"ParticleEmitter.html#destroy\">ParticleEmitter &rtrif; destroy</a>"},{"title":"ParticleEmitter#emitParticle","link":"<a href=\"ParticleEmitter.html#emitParticle\">ParticleEmitter &rtrif; emitParticle</a>"},{"title":"ParticleEmitter#getAliveTime","link":"<a href=\"ParticleEmitter.html#getAliveTime\">ParticleEmitter &rtrif; getAliveTime</a>"},{"title":"ParticleEmitter#getMirrorSign","link":"<a href=\"ParticleEmitter.html#getMirrorSign\">ParticleEmitter &rtrif; getMirrorSign</a>"},{"title":"ParticleEmitter#removeChild","link":"<a href=\"ParticleEmitter.html#removeChild\">ParticleEmitter &rtrif; removeChild</a>"},{"title":"ParticleEmitter#render","link":"<a href=\"ParticleEmitter.html#render\">ParticleEmitter &rtrif; render</a>"},{"title":"ParticleEmitter#setCollision","link":"<a href=\"ParticleEmitter.html#setCollision\">ParticleEmitter &rtrif; setCollision</a>"},{"title":"ParticleEmitter#update","link":"<a href=\"ParticleEmitter.html#update\">ParticleEmitter &rtrif; update</a>"},{"title":"Sound","link":"<a href=\"Sound.html\">Sound</a>"},{"title":"Sound#play","link":"<a href=\"Sound.html#play\">Sound &rtrif; play</a>"},{"title":"Sound#playNote","link":"<a href=\"Sound.html#playNote\">Sound &rtrif; playNote</a>"},{"title":"TileLayer","link":"<a href=\"TileLayer.html\">TileLayer</a>"},{"title":"TileLayer#addChild","link":"<a href=\"TileLayer.html#addChild\">TileLayer &rtrif; addChild</a>"},{"title":"TileLayer#applyAcceleration","link":"<a href=\"TileLayer.html#applyAcceleration\">TileLayer &rtrif; applyAcceleration</a>"},{"title":"TileLayer#applyForce","link":"<a href=\"TileLayer.html#applyForce\">TileLayer &rtrif; applyForce</a>"},{"title":"TileLayer#collideWithObject","link":"<a href=\"TileLayer.html#collideWithObject\">TileLayer &rtrif; collideWithObject</a>"},{"title":"TileLayer#collideWithTile","link":"<a href=\"TileLayer.html#collideWithTile\">TileLayer &rtrif; collideWithTile</a>"},{"title":"TileLayer#collideWithTileRaycast","link":"<a href=\"TileLayer.html#collideWithTileRaycast\">TileLayer &rtrif; collideWithTileRaycast</a>"},{"title":"TileLayer#destroy","link":"<a href=\"TileLayer.html#destroy\">TileLayer &rtrif; destroy</a>"},{"title":"TileLayer#drawAllTileData","link":"<a href=\"TileLayer.html#drawAllTileData\">TileLayer &rtrif; drawAllTileData</a>"},{"title":"TileLayer#drawCanvas2D","link":"<a href=\"TileLayer.html#drawCanvas2D\">TileLayer &rtrif; drawCanvas2D</a>"},{"title":"TileLayer#drawRect","link":"<a href=\"TileLayer.html#drawRect\">TileLayer &rtrif; drawRect</a>"},{"title":"TileLayer#drawTile","link":"<a href=\"TileLayer.html#drawTile\">TileLayer &rtrif; drawTile</a>"},{"title":"TileLayer#drawTileData","link":"<a href=\"TileLayer.html#drawTileData\">TileLayer &rtrif; drawTileData</a>"},{"title":"TileLayer#getAliveTime","link":"<a href=\"TileLayer.html#getAliveTime\">TileLayer &rtrif; getAliveTime</a>"},{"title":"TileLayer#getData","link":"<a href=\"TileLayer.html#getData\">TileLayer &rtrif; getData</a>"},{"title":"TileLayer#getMirrorSign","link":"<a href=\"TileLayer.html#getMirrorSign\">TileLayer &rtrif; getMirrorSign</a>"},{"title":"TileLayer#redraw","link":"<a href=\"TileLayer.html#redraw\">TileLayer &rtrif; redraw</a>"},{"title":"TileLayer#redrawEnd","link":"<a href=\"TileLayer.html#redrawEnd\">TileLayer &rtrif; redrawEnd</a>"},{"title":"TileLayer#redrawStart","link":"<a href=\"TileLayer.html#redrawStart\">TileLayer &rtrif; redrawStart</a>"},{"title":"TileLayer#removeChild","link":"<a href=\"TileLayer.html#removeChild\">TileLayer &rtrif; removeChild</a>"},{"title":"TileLayer#render","link":"<a href=\"TileLayer.html#render\">TileLayer &rtrif; render</a>"},{"title":"TileLayer#setCollision","link":"<a href=\"TileLayer.html#setCollision\">TileLayer &rtrif; setCollision</a>"},{"title":"TileLayer#setData","link":"<a href=\"TileLayer.html#setData\">TileLayer &rtrif; setData</a>"},{"title":"TileLayer#update","link":"<a href=\"TileLayer.html#update\">TileLayer &rtrif; update</a>"},{"title":"TileLayerData","link":"<a href=\"TileLayerData.html\">TileLayerData</a>"},{"title":"TileLayerData#clear","link":"<a href=\"TileLayerData.html#clear\">TileLayerData &rtrif; clear</a>"},{"title":"Timer","link":"<a href=\"Timer.html\">Timer</a>"},{"title":"Timer#active","link":"<a href=\"Timer.html#active\">Timer &rtrif; active</a>"},{"title":"Timer#elapsed","link":"<a href=\"Timer.html#elapsed\">Timer &rtrif; elapsed</a>"},{"title":"Timer#get","link":"<a href=\"Timer.html#get\">Timer &rtrif; get</a>"},{"title":"Timer#getPercent","link":"<a href=\"Timer.html#getPercent\">Timer &rtrif; getPercent</a>"},{"title":"Timer#isSet","link":"<a href=\"Timer.html#isSet\">Timer &rtrif; isSet</a>"},{"title":"Timer#set","link":"<a href=\"Timer.html#set\">Timer &rtrif; set</a>"},{"title":"Timer#unset","link":"<a href=\"Timer.html#unset\">Timer &rtrif; unset</a>"},{"title":"Vector2","link":"<a href=\"Vector2.html\">Vector2</a>"},{"title":"Vector2#add","link":"<a href=\"Vector2.html#add\">Vector2 &rtrif; add</a>"},{"title":"Vector2#angle","link":"<a href=\"Vector2.html#angle\">Vector2 &rtrif; angle</a>"},{"title":"Vector2#area","link":"<a href=\"Vector2.html#area\">Vector2 &rtrif; area</a>"},{"title":"Vector2#arrayCheck","link":"<a href=\"Vector2.html#arrayCheck\">Vector2 &rtrif; arrayCheck</a>"},{"title":"Vector2#clampLength","link":"<a href=\"Vector2.html#clampLength\">Vector2 &rtrif; clampLength</a>"},{"title":"Vector2#copy","link":"<a href=\"Vector2.html#copy\">Vector2 &rtrif; copy</a>"},{"title":"Vector2#cross","link":"<a href=\"Vector2.html#cross\">Vector2 &rtrif; cross</a>"},{"title":"Vector2#direction","link":"<a href=\"Vector2.html#direction\">Vector2 &rtrif; direction</a>"},{"title":"Vector2#distance","link":"<a href=\"Vector2.html#distance\">Vector2 &rtrif; distance</a>"},{"title":"Vector2#distanceSquared","link":"<a href=\"Vector2.html#distanceSquared\">Vector2 &rtrif; distanceSquared</a>"},{"title":"Vector2#divide","link":"<a href=\"Vector2.html#divide\">Vector2 &rtrif; divide</a>"},{"title":"Vector2#dot","link":"<a href=\"Vector2.html#dot\">Vector2 &rtrif; dot</a>"},{"title":"Vector2#floor","link":"<a href=\"Vector2.html#floor\">Vector2 &rtrif; floor</a>"},{"title":"Vector2#invert","link":"<a href=\"Vector2.html#invert\">Vector2 &rtrif; invert</a>"},{"title":"Vector2#length","link":"<a href=\"Vector2.html#length\">Vector2 &rtrif; length</a>"},{"title":"Vector2#lengthSquared","link":"<a href=\"Vector2.html#lengthSquared\">Vector2 &rtrif; lengthSquared</a>"},{"title":"Vector2#lerp","link":"<a href=\"Vector2.html#lerp\">Vector2 &rtrif; lerp</a>"},{"title":"Vector2#multiply","link":"<a href=\"Vector2.html#multiply\">Vector2 &rtrif; multiply</a>"},{"title":"Vector2#normalize","link":"<a href=\"Vector2.html#normalize\">Vector2 &rtrif; normalize</a>"},{"title":"Vector2#rotate","link":"<a href=\"Vector2.html#rotate\">Vector2 &rtrif; rotate</a>"},{"title":"Vector2#scale","link":"<a href=\"Vector2.html#scale\">Vector2 &rtrif; scale</a>"},{"title":"Vector2#setAngle","link":"<a href=\"Vector2.html#setAngle\">Vector2 &rtrif; setAngle</a>"},{"title":"Vector2#subtract","link":"<a href=\"Vector2.html#subtract\">Vector2 &rtrif; subtract</a>"},{"title":"Audio","link":"<a href=\"Audio.html\">Audio</a>"},{"title":"Audio.getNoteFrequency","link":"<a href=\"Audio.html#.getNoteFrequency\">Audio.getNoteFrequency &rtrif; undefined</a>"},{"title":"Audio.playAudioFile","link":"<a href=\"Audio.html#.playAudioFile\">Audio.playAudioFile &rtrif; undefined</a>"},{"title":"Audio.playSamples","link":"<a href=\"Audio.html#.playSamples\">Audio.playSamples &rtrif; undefined</a>"},{"title":"Audio.speak","link":"<a href=\"Audio.html#.speak\">Audio.speak &rtrif; undefined</a>"},{"title":"Audio.stopSpeech","link":"<a href=\"Audio.html#.stopSpeech\">Audio.stopSpeech &rtrif; undefined</a>"},{"title":"Audio.zzfx","link":"<a href=\"Audio.html#.zzfx\">Audio.zzfx &rtrif; undefined</a>"},{"title":"Audio.zzfxG","link":"<a href=\"Audio.html#.zzfxG\">Audio.zzfxG &rtrif; undefined</a>"},{"title":"Audio.zzfxM","link":"<a href=\"Audio.html#.zzfxM\">Audio.zzfxM &rtrif; undefined</a>"},{"title":"Debug","link":"<a href=\"Debug.html\">Debug</a>"},{"title":"Debug.debugAABB","link":"<a href=\"Debug.html#.debugAABB\">Debug.debugAABB &rtrif; undefined</a>"},{"title":"Debug.debugCircle","link":"<a href=\"Debug.html#.debugCircle\">Debug.debugCircle &rtrif; undefined</a>"},{"title":"Debug.debugClear","link":"<a href=\"Debug.html#.debugClear\">Debug.debugClear &rtrif; undefined</a>"},{"title":"Debug.debugLine","link":"<a href=\"Debug.html#.debugLine\">Debug.debugLine &rtrif; undefined</a>"},{"title":"Debug.debugPoint","link":"<a href=\"Debug.html#.debugPoint\">Debug.debugPoint &rtrif; undefined</a>"},{"title":"Debug.debugRect","link":"<a href=\"Debug.html#.debugRect\">Debug.debugRect &rtrif; undefined</a>"},{"title":"Debug.debugSaveCanvas","link":"<a href=\"Debug.html#.debugSaveCanvas\">Debug.debugSaveCanvas &rtrif; undefined</a>"},{"title":"Debug.debugText","link":"<a href=\"Debug.html#.debugText\">Debug.debugText &rtrif; undefined</a>"},{"title":"Draw","link":"<a href=\"Draw.html\">Draw</a>"},{"title":"Draw.drawCanvas2D","link":"<a href=\"Draw.html#.drawCanvas2D\">Draw.drawCanvas2D &rtrif; undefined</a>"},{"title":"Draw.drawLine","link":"<a href=\"Draw.html#.drawLine\">Draw.drawLine &rtrif; undefined</a>"},{"title":"Draw.drawRect","link":"<a href=\"Draw.html#.drawRect\">Draw.drawRect &rtrif; undefined</a>"},{"title":"Draw.drawRectScreenSpace","link":"<a href=\"Draw.html#.drawRectScreenSpace\">Draw.drawRectScreenSpace &rtrif; undefined</a>"},{"title":"Draw.drawText","link":"<a href=\"Draw.html#.drawText\">Draw.drawText &rtrif; undefined</a>"},{"title":"Draw.drawTile","link":"<a href=\"Draw.html#.drawTile\">Draw.drawTile &rtrif; undefined</a>"},{"title":"Draw.drawTileScreenSpace","link":"<a href=\"Draw.html#.drawTileScreenSpace\">Draw.drawTileScreenSpace &rtrif; undefined</a>"},{"title":"Draw.isFullscreen","link":"<a href=\"Draw.html#.isFullscreen\">Draw.isFullscreen &rtrif; undefined</a>"},{"title":"Draw.screenToWorld","link":"<a href=\"Draw.html#.screenToWorld\">Draw.screenToWorld &rtrif; undefined</a>"},{"title":"Draw.setBlendMode","link":"<a href=\"Draw.html#.setBlendMode\">Draw.setBlendMode &rtrif; undefined</a>"},{"title":"Draw.toggleFullscreen","link":"<a href=\"Draw.html#.toggleFullscreen\">Draw.toggleFullscreen &rtrif; undefined</a>"},{"title":"Draw.worldToScreen","link":"<a href=\"Draw.html#.worldToScreen\">Draw.worldToScreen &rtrif; undefined</a>"},{"title":"Input","link":"<a href=\"Input.html\">Input</a>"},{"title":"Input.clearInput","link":"<a href=\"Input.html#.clearInput\">Input.clearInput &rtrif; undefined</a>"},{"title":"Input.gamepadIsDown","link":"<a href=\"Input.html#.gamepadIsDown\">Input.gamepadIsDown &rtrif; undefined</a>"},{"title":"Input.gamepadStick","link":"<a href=\"Input.html#.gamepadStick\">Input.gamepadStick &rtrif; undefined</a>"},{"title":"Input.gamepadWasPressed","link":"<a href=\"Input.html#.gamepadWasPressed\">Input.gamepadWasPressed &rtrif; undefined</a>"},{"title":"Input.gamepadWasReleased","link":"<a href=\"Input.html#.gamepadWasReleased\">Input.gamepadWasReleased &rtrif; undefined</a>"},{"title":"Input.keyIsDown","link":"<a href=\"Input.html#.keyIsDown\">Input.keyIsDown &rtrif; undefined</a>"},{"title":"Input.keyWasPressed","link":"<a href=\"Input.html#.keyWasPressed\">Input.keyWasPressed &rtrif; undefined</a>"},{"title":"Input.keyWasReleased","link":"<a href=\"Input.html#.keyWasReleased\">Input.keyWasReleased &rtrif; undefined</a>"},{"title":"Medals","link":"<a href=\"Medals.html\">Medals</a>"},{"title":"Medals.medalsInit","link":"<a href=\"Medals.html#.medalsInit\">Medals.medalsInit &rtrif; undefined</a>"},{"title":"Random","link":"<a href=\"Random.html\">Random</a>"},{"title":"Random.rand","link":"<a href=\"Random.html#.rand\">Random.rand &rtrif; undefined</a>"},{"title":"Random.randColor","link":"<a href=\"Random.html#.randColor\">Random.randColor &rtrif; undefined</a>"},{"title":"Random.randInCircle","link":"<a href=\"Random.html#.randInCircle\">Random.randInCircle &rtrif; undefined</a>"},{"title":"Random.randInt","link":"<a href=\"Random.html#.randInt\">Random.randInt &rtrif; undefined</a>"},{"title":"Random.randSeeded","link":"<a href=\"Random.html#.randSeeded\">Random.randSeeded &rtrif; undefined</a>"},{"title":"Random.randSign","link":"<a href=\"Random.html#.randSign\">Random.randSign &rtrif; undefined</a>"},{"title":"Random.randVector","link":"<a href=\"Random.html#.randVector\">Random.randVector &rtrif; undefined</a>"},{"title":"Settings","link":"<a href=\"Settings.html\">Settings</a>"},{"title":"TileCollision","link":"<a href=\"TileCollision.html\">TileCollision</a>"},{"title":"TileCollision.getTileCollisionData","link":"<a href=\"TileCollision.html#.getTileCollisionData\">TileCollision.getTileCollisionData &rtrif; undefined</a>"},{"title":"TileCollision.initTileCollision","link":"<a href=\"TileCollision.html#.initTileCollision\">TileCollision.initTileCollision &rtrif; undefined</a>"},{"title":"TileCollision.setTileCollisionData","link":"<a href=\"TileCollision.html#.setTileCollisionData\">TileCollision.setTileCollisionData &rtrif; undefined</a>"},{"title":"TileCollision.tileCollisionRaycast","link":"<a href=\"TileCollision.html#.tileCollisionRaycast\">TileCollision.tileCollisionRaycast &rtrif; undefined</a>"},{"title":"TileCollision.tileCollisionTest","link":"<a href=\"TileCollision.html#.tileCollisionTest\">TileCollision.tileCollisionTest &rtrif; undefined</a>"},{"title":"Utilities","link":"<a href=\"Utilities.html\">Utilities</a>"},{"title":"Utilities.abs","link":"<a href=\"Utilities.html#.abs\">Utilities.abs &rtrif; undefined</a>"},{"title":"Utilities.clamp","link":"<a href=\"Utilities.html#.clamp\">Utilities.clamp &rtrif; undefined</a>"},{"title":"Utilities.formatTime","link":"<a href=\"Utilities.html#.formatTime\">Utilities.formatTime &rtrif; undefined</a>"},{"title":"Utilities.isOverlapping","link":"<a href=\"Utilities.html#.isOverlapping\">Utilities.isOverlapping &rtrif; undefined</a>"},{"title":"Utilities.lerp","link":"<a href=\"Utilities.html#.lerp\">Utilities.lerp &rtrif; undefined</a>"},{"title":"Utilities.max","link":"<a href=\"Utilities.html#.max\">Utilities.max &rtrif; undefined</a>"},{"title":"Utilities.min","link":"<a href=\"Utilities.html#.min\">Utilities.min &rtrif; undefined</a>"},{"title":"Utilities.mod","link":"<a href=\"Utilities.html#.mod\">Utilities.mod &rtrif; undefined</a>"},{"title":"Utilities.nearestPowerOfTwo","link":"<a href=\"Utilities.html#.nearestPowerOfTwo\">Utilities.nearestPowerOfTwo &rtrif; undefined</a>"},{"title":"Utilities.percent","link":"<a href=\"Utilities.html#.percent\">Utilities.percent &rtrif; undefined</a>"},{"title":"Utilities.sign","link":"<a href=\"Utilities.html#.sign\">Utilities.sign &rtrif; undefined</a>"},{"title":"Utilities.smoothStep","link":"<a href=\"Utilities.html#.smoothStep\">Utilities.smoothStep &rtrif; undefined</a>"},{"title":"Utilities.vec2","link":"<a href=\"Utilities.html#.vec2\">Utilities.vec2 &rtrif; undefined</a>"},{"title":"Utilities.wave","link":"<a href=\"Utilities.html#.wave\">Utilities.wave &rtrif; undefined</a>"},{"title":"WebGL","link":"<a href=\"WebGL.html\">WebGL</a>"},{"title":"WebGL.glCompileShader","link":"<a href=\"WebGL.html#.glCompileShader\">WebGL.glCompileShader &rtrif; undefined</a>"},{"title":"WebGL.glCopyToContext","link":"<a href=\"WebGL.html#.glCopyToContext\">WebGL.glCopyToContext &rtrif; undefined</a>"},{"title":"WebGL.glCreateBuffer","link":"<a href=\"WebGL.html#.glCreateBuffer\">WebGL.glCreateBuffer &rtrif; undefined</a>"},{"title":"WebGL.glCreateProgram","link":"<a href=\"WebGL.html#.glCreateProgram\">WebGL.glCreateProgram &rtrif; undefined</a>"},{"title":"WebGL.glCreateTexture","link":"<a href=\"WebGL.html#.glCreateTexture\">WebGL.glCreateTexture &rtrif; undefined</a>"},{"title":"WebGL.glDraw","link":"<a href=\"WebGL.html#.glDraw\">WebGL.glDraw &rtrif; undefined</a>"},{"title":"WebGL.glFlush","link":"<a href=\"WebGL.html#.glFlush\">WebGL.glFlush &rtrif; undefined</a>"},{"title":"WebGL.glSetBlendMode","link":"<a href=\"WebGL.html#.glSetBlendMode\">WebGL.glSetBlendMode &rtrif; undefined</a>"},{"title":"WebGL.glSetTexture","link":"<a href=\"WebGL.html#.glSetTexture\">WebGL.glSetTexture &rtrif; undefined</a>"},{"title":"engineCollideObjects","link":"<a href=\"global.html#engineCollideObjects\">engineCollideObjects</a>"},{"title":"engineInit","link":"<a href=\"global.html#engineInit\">engineInit</a>"},{"title":"engineName","link":"<a href=\"global.html#engineName\">engineName</a>"},{"title":"engineObjects","link":"<a href=\"global.html#engineObjects\">engineObjects</a>"},{"title":"engineObjectsCallback","link":"<a href=\"global.html#engineObjectsCallback\">engineObjectsCallback</a>"},{"title":"engineObjectsDestroy","link":"<a href=\"global.html#engineObjectsDestroy\">engineObjectsDestroy</a>"},{"title":"engineObjectsUpdate","link":"<a href=\"global.html#engineObjectsUpdate\">engineObjectsUpdate</a>"},{"title":"engineVersion","link":"<a href=\"global.html#engineVersion\">engineVersion</a>"},{"title":"FPS","link":"<a href=\"global.html#FPS\">FPS</a>"},{"title":"frame","link":"<a href=\"global.html#frame\">frame</a>"},{"title":"paused","link":"<a href=\"global.html#paused\">paused</a>"},{"title":"time","link":"<a href=\"global.html#time\">time</a>"},{"title":"timeDelta","link":"<a href=\"global.html#timeDelta\">timeDelta</a>"},{"title":"timeReal","link":"<a href=\"global.html#timeReal\">timeReal</a>"}];
2259
+ var options =
2260
+ setupSearch(list, options)
2261
+ </script>
2262
+
2263
+
2264
+
2265
+
2266
+
2267
+
2268
+
2269
+
2270
+
2271
+
2272
+
2273
+ </body>
2274
+
2275
+ </html>