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,2806 @@
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
+ Input
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="3563688" > <h3 class="accordion-heading">Classes<svg><use xlink:href="#down-icon"></use></svg></h3><ul class="accordion-content"><li class="accordion collapsed child" id=7746959><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#getHSLA">getHSLA</a></li><li data-type='method'><a href="Color.html#hex">hex</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#rgbaInt">rgbaInt</a></li><li data-type='method'><a href="Color.html#scale">scale</a></li><li data-type='method'><a href="Color.html#setHex">setHex</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><li data-type='method'><a href="Color.html#toString">toString</a></li></ul></li><li class="accordion collapsed child" id=6307330><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=8508237><div class="accordion-heading child"><a href="FontImage.html">FontImage</a><svg><use xlink:href="#down-icon"></use></svg></div><ul class='methods accordion-content'><li data-type='method'><a href="FontImage.html#drawText">drawText</a></li><li data-type='method'><a href="FontImage.html#drawTextScreen">drawTextScreen</a></li></ul></li><li class="accordion collapsed child" id=2613323><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=5931143><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=7102537><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=4104404><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=8166593><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=1946205><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=2790513><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=8451372><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=1385312><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#toString">toString</a></li><li data-type='method'><a href="Timer.html#unset">unset</a></li></ul></li><li class="accordion collapsed child" id=5094252><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><li data-type='method'><a href="Vector2.html#toString">toString</a></li></ul></li></ul> </div><div class="accordion collapsed" id="9985463" > <h3 class="accordion-heading">Namespaces<svg><use xlink:href="#down-icon"></use></svg></h3><ul class="accordion-content"><li class="accordion collapsed child" id=1451135><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=3748274><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#.drawTextScreen">drawTextScreen</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=1641359><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><li data-type='method'><a href="Input.html#.vibrate">vibrate</a></li><li data-type='method'><a href="Input.html#.vibrateStop">vibrateStop</a></li></ul></li><li class="accordion collapsed child" id=9832293><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=219095><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=2884620><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=9516194><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=228864><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="4889956" > <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#engineFontImage">engineFontImage</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#engineObjectsCollide">engineObjectsCollide</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#frame">frame</a></li><li class="accordion-list" id=""><a href="global.html#frameRate">frameRate</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
+ Input
108
+ </h1>
109
+
110
+
111
+
112
+
113
+
114
+
115
+
116
+ <section>
117
+
118
+
119
+ <header>
120
+
121
+
122
+ <h2>
123
+
124
+ Input
125
+
126
+ </h2>
127
+
128
+
129
+
130
+ </header>
131
+
132
+
133
+ <article>
134
+ <div class="container-overview">
135
+
136
+
137
+ <div class="description">LittleJS Input System
138
+
139
+
140
+
141
+
142
+
143
+
144
+
145
+ <dl class="details">
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
+ <div class="details-item-container">
173
+ <dt class="tag-source">Source:</dt>
174
+ <dd class="tag-source"><ul class="dummy"><li>
175
+ <a href="engineInput.js.html">engineInput.js</a>, <a href="engineInput.js.html#line1">line 1</a>
176
+ </li></ul></dd>
177
+ </div>
178
+
179
+
180
+
181
+
182
+
183
+
184
+
185
+ </dl>
186
+
187
+
188
+
189
+
190
+
191
+
192
+ </div>
193
+
194
+
195
+
196
+
197
+
198
+
199
+
200
+
201
+
202
+
203
+
204
+
205
+ <h3 class="subsection-title">Members</h3>
206
+
207
+
208
+
209
+ <h4 class="name" id=".isTouchDevice">
210
+ <a href="#.isTouchDevice">#</a>
211
+ <span class="type-signature">(static, constant) </span>isTouchDevice<span class="type-signature"> :boolean</span>
212
+ </h4>
213
+
214
+
215
+
216
+
217
+ <div class="description">
218
+ True if a touch device has been detected
219
+ </div>
220
+
221
+
222
+
223
+ <div class="member-item-container flex">
224
+ <strong>Type: </strong>
225
+ <ul>
226
+ <li>
227
+
228
+ <span class="param-type">boolean</span>
229
+
230
+
231
+ </li>
232
+ </ul>
233
+ </div>
234
+
235
+
236
+
237
+
238
+
239
+
240
+
241
+ <dl class="details">
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
+ <div class="details-item-container">
269
+ <dt class="tag-source">Source:</dt>
270
+ <dd class="tag-source"><ul class="dummy"><li>
271
+ <a href="engineInput.js.html">engineInput.js</a>, <a href="engineInput.js.html#line251">line 251</a>
272
+ </li></ul></dd>
273
+ </div>
274
+
275
+
276
+
277
+
278
+
279
+
280
+
281
+ </dl>
282
+
283
+
284
+
285
+
286
+
287
+
288
+
289
+
290
+
291
+
292
+ <h4 class="name" id=".isUsingGamepad">
293
+ <a href="#.isUsingGamepad">#</a>
294
+ <span class="type-signature">(static) </span>isUsingGamepad<span class="type-signature"></span>
295
+ </h4>
296
+
297
+
298
+
299
+
300
+ <div class="description">
301
+ Returns true if user is using gamepad (has more recently pressed a gamepad button)
302
+ </div>
303
+
304
+
305
+
306
+
307
+
308
+
309
+
310
+
311
+
312
+ <dl class="details">
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
+ <div class="details-item-container">
340
+ <dt class="tag-source">Source:</dt>
341
+ <dd class="tag-source"><ul class="dummy"><li>
342
+ <a href="engineInput.js.html">engineInput.js</a>, <a href="engineInput.js.html#line71">line 71</a>
343
+ </li></ul></dd>
344
+ </div>
345
+
346
+
347
+
348
+
349
+
350
+
351
+
352
+ </dl>
353
+
354
+
355
+
356
+
357
+
358
+
359
+
360
+
361
+
362
+
363
+ <h4 class="name" id=".mouseIsDown">
364
+ <a href="#.mouseIsDown">#</a>
365
+ <span class="type-signature">(static, constant) </span>mouseIsDown<span class="type-signature"></span>
366
+ </h4>
367
+
368
+
369
+
370
+
371
+ <div class="description">
372
+ Returns true if mouse button is down
373
+ </div>
374
+
375
+
376
+
377
+
378
+
379
+
380
+
381
+
382
+
383
+ <dl class="details">
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
+ <div class="details-item-container">
411
+ <dt class="tag-source">Source:</dt>
412
+ <dd class="tag-source"><ul class="dummy"><li>
413
+ <a href="engineInput.js.html">engineInput.js</a>, <a href="engineInput.js.html#line41">line 41</a>
414
+ </li></ul></dd>
415
+ </div>
416
+
417
+
418
+
419
+
420
+
421
+
422
+
423
+ </dl>
424
+
425
+
426
+
427
+
428
+
429
+
430
+
431
+
432
+
433
+
434
+ <h4 class="name" id=".mousePos">
435
+ <a href="#.mousePos">#</a>
436
+ <span class="type-signature">(static) </span>mousePos<span class="type-signature"> :<a href="Vector2.html">Vector2</a></span>
437
+ </h4>
438
+
439
+
440
+
441
+
442
+ <div class="description">
443
+ Mouse pos in world space
444
+ </div>
445
+
446
+
447
+
448
+ <div class="member-item-container flex">
449
+ <strong>Type: </strong>
450
+ <ul>
451
+ <li>
452
+
453
+ <span class="param-type"><a href="Vector2.html">Vector2</a></span>
454
+
455
+
456
+ </li>
457
+ </ul>
458
+ </div>
459
+
460
+
461
+
462
+
463
+
464
+
465
+
466
+ <dl class="details">
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
+ <div class="details-item-container">
494
+ <dt class="tag-source">Source:</dt>
495
+ <dd class="tag-source"><ul class="dummy"><li>
496
+ <a href="engineInput.js.html">engineInput.js</a>, <a href="engineInput.js.html#line58">line 58</a>
497
+ </li></ul></dd>
498
+ </div>
499
+
500
+
501
+
502
+
503
+
504
+
505
+
506
+ </dl>
507
+
508
+
509
+
510
+
511
+
512
+
513
+
514
+
515
+
516
+
517
+ <h4 class="name" id=".mousePosScreen">
518
+ <a href="#.mousePosScreen">#</a>
519
+ <span class="type-signature">(static) </span>mousePosScreen<span class="type-signature"> :<a href="Vector2.html">Vector2</a></span>
520
+ </h4>
521
+
522
+
523
+
524
+
525
+ <div class="description">
526
+ Mouse pos in screen space
527
+ </div>
528
+
529
+
530
+
531
+ <div class="member-item-container flex">
532
+ <strong>Type: </strong>
533
+ <ul>
534
+ <li>
535
+
536
+ <span class="param-type"><a href="Vector2.html">Vector2</a></span>
537
+
538
+
539
+ </li>
540
+ </ul>
541
+ </div>
542
+
543
+
544
+
545
+
546
+
547
+
548
+
549
+ <dl class="details">
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
+ <div class="details-item-container">
577
+ <dt class="tag-source">Source:</dt>
578
+ <dd class="tag-source"><ul class="dummy"><li>
579
+ <a href="engineInput.js.html">engineInput.js</a>, <a href="engineInput.js.html#line63">line 63</a>
580
+ </li></ul></dd>
581
+ </div>
582
+
583
+
584
+
585
+
586
+
587
+
588
+
589
+ </dl>
590
+
591
+
592
+
593
+
594
+
595
+
596
+
597
+
598
+
599
+
600
+ <h4 class="name" id=".mouseWasPressed">
601
+ <a href="#.mouseWasPressed">#</a>
602
+ <span class="type-signature">(static, constant) </span>mouseWasPressed<span class="type-signature"></span>
603
+ </h4>
604
+
605
+
606
+
607
+
608
+ <div class="description">
609
+ Returns true if mouse button was pressed
610
+ </div>
611
+
612
+
613
+
614
+
615
+
616
+
617
+
618
+
619
+
620
+ <dl class="details">
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
+ <div class="details-item-container">
648
+ <dt class="tag-source">Source:</dt>
649
+ <dd class="tag-source"><ul class="dummy"><li>
650
+ <a href="engineInput.js.html">engineInput.js</a>, <a href="engineInput.js.html#line47">line 47</a>
651
+ </li></ul></dd>
652
+ </div>
653
+
654
+
655
+
656
+
657
+
658
+
659
+
660
+ </dl>
661
+
662
+
663
+
664
+
665
+
666
+
667
+
668
+
669
+
670
+
671
+ <h4 class="name" id=".mouseWasReleased">
672
+ <a href="#.mouseWasReleased">#</a>
673
+ <span class="type-signature">(static, constant) </span>mouseWasReleased<span class="type-signature"></span>
674
+ </h4>
675
+
676
+
677
+
678
+
679
+ <div class="description">
680
+ Returns true if mouse button was released
681
+ </div>
682
+
683
+
684
+
685
+
686
+
687
+
688
+
689
+
690
+
691
+ <dl class="details">
692
+
693
+
694
+
695
+
696
+
697
+
698
+
699
+
700
+
701
+
702
+
703
+
704
+
705
+
706
+
707
+
708
+
709
+
710
+
711
+
712
+
713
+
714
+
715
+
716
+
717
+
718
+ <div class="details-item-container">
719
+ <dt class="tag-source">Source:</dt>
720
+ <dd class="tag-source"><ul class="dummy"><li>
721
+ <a href="engineInput.js.html">engineInput.js</a>, <a href="engineInput.js.html#line53">line 53</a>
722
+ </li></ul></dd>
723
+ </div>
724
+
725
+
726
+
727
+
728
+
729
+
730
+
731
+ </dl>
732
+
733
+
734
+
735
+
736
+
737
+
738
+
739
+
740
+
741
+
742
+ <h4 class="name" id=".mouseWheel">
743
+ <a href="#.mouseWheel">#</a>
744
+ <span class="type-signature">(static) </span>mouseWheel<span class="type-signature"></span>
745
+ </h4>
746
+
747
+
748
+
749
+
750
+ <div class="description">
751
+ Mouse wheel delta this frame
752
+ </div>
753
+
754
+
755
+
756
+
757
+
758
+
759
+
760
+
761
+
762
+ <dl class="details">
763
+
764
+
765
+
766
+
767
+
768
+
769
+
770
+
771
+
772
+
773
+
774
+
775
+
776
+
777
+
778
+
779
+
780
+
781
+
782
+
783
+
784
+
785
+
786
+
787
+
788
+
789
+ <div class="details-item-container">
790
+ <dt class="tag-source">Source:</dt>
791
+ <dd class="tag-source"><ul class="dummy"><li>
792
+ <a href="engineInput.js.html">engineInput.js</a>, <a href="engineInput.js.html#line67">line 67</a>
793
+ </li></ul></dd>
794
+ </div>
795
+
796
+
797
+
798
+
799
+
800
+
801
+
802
+ </dl>
803
+
804
+
805
+
806
+
807
+
808
+
809
+
810
+
811
+
812
+
813
+ <h4 class="name" id=".preventDefaultInput">
814
+ <a href="#.preventDefaultInput">#</a>
815
+ <span class="type-signature">(static) </span>preventDefaultInput<span class="type-signature"></span>
816
+ </h4>
817
+
818
+
819
+
820
+
821
+ <div class="description">
822
+ Prevents input continuing to the default browser handling (false by default)
823
+ </div>
824
+
825
+
826
+
827
+
828
+
829
+
830
+
831
+
832
+
833
+ <dl class="details">
834
+
835
+
836
+
837
+
838
+
839
+
840
+
841
+
842
+
843
+
844
+
845
+
846
+
847
+
848
+
849
+
850
+
851
+
852
+
853
+
854
+
855
+
856
+
857
+
858
+
859
+
860
+ <div class="details-item-container">
861
+ <dt class="tag-source">Source:</dt>
862
+ <dd class="tag-source"><ul class="dummy"><li>
863
+ <a href="engineInput.js.html">engineInput.js</a>, <a href="engineInput.js.html#line75">line 75</a>
864
+ </li></ul></dd>
865
+ </div>
866
+
867
+
868
+
869
+
870
+
871
+
872
+
873
+ </dl>
874
+
875
+
876
+
877
+
878
+
879
+
880
+
881
+
882
+
883
+
884
+
885
+
886
+ <h3 class="subsection-title">Methods</h3>
887
+
888
+
889
+
890
+
891
+
892
+
893
+ <h4 class="name" id=".clearInput">
894
+ <a href="#.clearInput">#</a>
895
+ <span class="type-signature">(static) </span>clearInput<span class="signature">()</span><span class="type-signature"></span>
896
+ </h4>
897
+
898
+
899
+
900
+
901
+
902
+ <div class="description">
903
+ Clears all input
904
+ </div>
905
+
906
+
907
+
908
+
909
+
910
+
911
+
912
+
913
+
914
+
915
+
916
+
917
+
918
+
919
+
920
+ <dl class="details">
921
+
922
+
923
+
924
+
925
+
926
+
927
+
928
+
929
+
930
+
931
+
932
+
933
+
934
+
935
+
936
+
937
+
938
+
939
+
940
+
941
+
942
+
943
+
944
+
945
+
946
+
947
+ <div class="details-item-container">
948
+ <dt class="tag-source">Source:</dt>
949
+ <dd class="tag-source"><ul class="dummy"><li>
950
+ <a href="engineInput.js.html">engineInput.js</a>, <a href="engineInput.js.html#line35">line 35</a>
951
+ </li></ul></dd>
952
+ </div>
953
+
954
+
955
+
956
+
957
+
958
+
959
+
960
+ </dl>
961
+
962
+
963
+
964
+
965
+
966
+
967
+
968
+
969
+
970
+
971
+
972
+
973
+
974
+
975
+
976
+
977
+
978
+
979
+
980
+
981
+
982
+
983
+
984
+ <h4 class="name" id=".gamepadIsDown">
985
+ <a href="#.gamepadIsDown">#</a>
986
+ <span class="type-signature">(static) </span>gamepadIsDown<span class="signature">(button, gamepad<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {Boolean}</span>
987
+ </h4>
988
+
989
+
990
+
991
+
992
+
993
+ <div class="description">
994
+ Returns true if gamepad button is down
995
+ </div>
996
+
997
+
998
+
999
+
1000
+
1001
+
1002
+
1003
+
1004
+
1005
+ <div class="method-member-container flex flex-col w-100 overflow-auto mt-20">
1006
+ <strong>Parameters:</strong>
1007
+
1008
+
1009
+ <table class="params">
1010
+ <thead>
1011
+ <tr>
1012
+
1013
+ <th>Name</th>
1014
+
1015
+
1016
+ <th>Type</th>
1017
+
1018
+
1019
+ <th>Attributes</th>
1020
+
1021
+
1022
+
1023
+ <th>Default</th>
1024
+
1025
+
1026
+ <th class="last">Description</th>
1027
+ </tr>
1028
+ </thead>
1029
+
1030
+ <tbody>
1031
+
1032
+
1033
+ <tr>
1034
+
1035
+ <td class="name"><code>button</code></td>
1036
+
1037
+
1038
+ <td class="type">
1039
+
1040
+
1041
+ <span class="param-type">Number</span>
1042
+
1043
+
1044
+
1045
+ </td>
1046
+
1047
+
1048
+ <td class="attributes">
1049
+
1050
+
1051
+
1052
+
1053
+
1054
+ </td>
1055
+
1056
+
1057
+
1058
+ <td class="default">
1059
+
1060
+ </td>
1061
+
1062
+
1063
+ <td class="description last"></td>
1064
+ </tr>
1065
+
1066
+
1067
+
1068
+ <tr>
1069
+
1070
+ <td class="name"><code>gamepad</code></td>
1071
+
1072
+
1073
+ <td class="type">
1074
+
1075
+
1076
+ <span class="param-type">Number</span>
1077
+
1078
+
1079
+
1080
+ </td>
1081
+
1082
+
1083
+ <td class="attributes">
1084
+
1085
+ &lt;optional><br>
1086
+
1087
+
1088
+
1089
+
1090
+
1091
+ </td>
1092
+
1093
+
1094
+
1095
+ <td class="default">
1096
+
1097
+ 0
1098
+
1099
+ </td>
1100
+
1101
+
1102
+ <td class="description last"></td>
1103
+ </tr>
1104
+
1105
+
1106
+ </tbody>
1107
+ </table>
1108
+
1109
+ </div>
1110
+
1111
+
1112
+
1113
+
1114
+
1115
+
1116
+
1117
+ <dl class="details">
1118
+
1119
+
1120
+
1121
+
1122
+
1123
+
1124
+
1125
+
1126
+
1127
+
1128
+
1129
+
1130
+
1131
+
1132
+
1133
+
1134
+
1135
+
1136
+
1137
+
1138
+
1139
+
1140
+
1141
+
1142
+
1143
+
1144
+ <div class="details-item-container">
1145
+ <dt class="tag-source">Source:</dt>
1146
+ <dd class="tag-source"><ul class="dummy"><li>
1147
+ <a href="engineInput.js.html">engineInput.js</a>, <a href="engineInput.js.html#line82">line 82</a>
1148
+ </li></ul></dd>
1149
+ </div>
1150
+
1151
+
1152
+
1153
+
1154
+
1155
+
1156
+
1157
+ </dl>
1158
+
1159
+
1160
+
1161
+
1162
+
1163
+
1164
+
1165
+
1166
+
1167
+
1168
+
1169
+
1170
+
1171
+
1172
+
1173
+ <div class="method-member-container mt-20">
1174
+ <strong>Returns:</strong>
1175
+
1176
+
1177
+
1178
+
1179
+ <dl class="param-type">
1180
+ <dt>
1181
+ Type
1182
+ </dt>
1183
+ <dd>
1184
+
1185
+ <span class="param-type">Boolean</span>
1186
+
1187
+
1188
+ </dd>
1189
+ </dl>
1190
+
1191
+
1192
+ </div>
1193
+
1194
+
1195
+
1196
+
1197
+
1198
+
1199
+
1200
+
1201
+
1202
+ <h4 class="name" id=".gamepadStick">
1203
+ <a href="#.gamepadStick">#</a>
1204
+ <span class="type-signature">(static) </span>gamepadStick<span class="signature">(stick, gamepad<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {<a href="Vector2.html">Vector2</a>}</span>
1205
+ </h4>
1206
+
1207
+
1208
+
1209
+
1210
+
1211
+ <div class="description">
1212
+ Returns gamepad stick value
1213
+ </div>
1214
+
1215
+
1216
+
1217
+
1218
+
1219
+
1220
+
1221
+
1222
+
1223
+ <div class="method-member-container flex flex-col w-100 overflow-auto mt-20">
1224
+ <strong>Parameters:</strong>
1225
+
1226
+
1227
+ <table class="params">
1228
+ <thead>
1229
+ <tr>
1230
+
1231
+ <th>Name</th>
1232
+
1233
+
1234
+ <th>Type</th>
1235
+
1236
+
1237
+ <th>Attributes</th>
1238
+
1239
+
1240
+
1241
+ <th>Default</th>
1242
+
1243
+
1244
+ <th class="last">Description</th>
1245
+ </tr>
1246
+ </thead>
1247
+
1248
+ <tbody>
1249
+
1250
+
1251
+ <tr>
1252
+
1253
+ <td class="name"><code>stick</code></td>
1254
+
1255
+
1256
+ <td class="type">
1257
+
1258
+
1259
+ <span class="param-type">Number</span>
1260
+
1261
+
1262
+
1263
+ </td>
1264
+
1265
+
1266
+ <td class="attributes">
1267
+
1268
+
1269
+
1270
+
1271
+
1272
+ </td>
1273
+
1274
+
1275
+
1276
+ <td class="default">
1277
+
1278
+ </td>
1279
+
1280
+
1281
+ <td class="description last"></td>
1282
+ </tr>
1283
+
1284
+
1285
+
1286
+ <tr>
1287
+
1288
+ <td class="name"><code>gamepad</code></td>
1289
+
1290
+
1291
+ <td class="type">
1292
+
1293
+
1294
+ <span class="param-type">Number</span>
1295
+
1296
+
1297
+
1298
+ </td>
1299
+
1300
+
1301
+ <td class="attributes">
1302
+
1303
+ &lt;optional><br>
1304
+
1305
+
1306
+
1307
+
1308
+
1309
+ </td>
1310
+
1311
+
1312
+
1313
+ <td class="default">
1314
+
1315
+ 0
1316
+
1317
+ </td>
1318
+
1319
+
1320
+ <td class="description last"></td>
1321
+ </tr>
1322
+
1323
+
1324
+ </tbody>
1325
+ </table>
1326
+
1327
+ </div>
1328
+
1329
+
1330
+
1331
+
1332
+
1333
+
1334
+
1335
+ <dl class="details">
1336
+
1337
+
1338
+
1339
+
1340
+
1341
+
1342
+
1343
+
1344
+
1345
+
1346
+
1347
+
1348
+
1349
+
1350
+
1351
+
1352
+
1353
+
1354
+
1355
+
1356
+
1357
+
1358
+
1359
+
1360
+
1361
+
1362
+ <div class="details-item-container">
1363
+ <dt class="tag-source">Source:</dt>
1364
+ <dd class="tag-source"><ul class="dummy"><li>
1365
+ <a href="engineInput.js.html">engineInput.js</a>, <a href="engineInput.js.html#line103">line 103</a>
1366
+ </li></ul></dd>
1367
+ </div>
1368
+
1369
+
1370
+
1371
+
1372
+
1373
+
1374
+
1375
+ </dl>
1376
+
1377
+
1378
+
1379
+
1380
+
1381
+
1382
+
1383
+
1384
+
1385
+
1386
+
1387
+
1388
+
1389
+
1390
+
1391
+ <div class="method-member-container mt-20">
1392
+ <strong>Returns:</strong>
1393
+
1394
+
1395
+
1396
+
1397
+ <dl class="param-type">
1398
+ <dt>
1399
+ Type
1400
+ </dt>
1401
+ <dd>
1402
+
1403
+ <span class="param-type"><a href="Vector2.html">Vector2</a></span>
1404
+
1405
+
1406
+ </dd>
1407
+ </dl>
1408
+
1409
+
1410
+ </div>
1411
+
1412
+
1413
+
1414
+
1415
+
1416
+
1417
+
1418
+
1419
+
1420
+ <h4 class="name" id=".gamepadWasPressed">
1421
+ <a href="#.gamepadWasPressed">#</a>
1422
+ <span class="type-signature">(static) </span>gamepadWasPressed<span class="signature">(button, gamepad<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {Boolean}</span>
1423
+ </h4>
1424
+
1425
+
1426
+
1427
+
1428
+
1429
+ <div class="description">
1430
+ Returns true if gamepad button was pressed
1431
+ </div>
1432
+
1433
+
1434
+
1435
+
1436
+
1437
+
1438
+
1439
+
1440
+
1441
+ <div class="method-member-container flex flex-col w-100 overflow-auto mt-20">
1442
+ <strong>Parameters:</strong>
1443
+
1444
+
1445
+ <table class="params">
1446
+ <thead>
1447
+ <tr>
1448
+
1449
+ <th>Name</th>
1450
+
1451
+
1452
+ <th>Type</th>
1453
+
1454
+
1455
+ <th>Attributes</th>
1456
+
1457
+
1458
+
1459
+ <th>Default</th>
1460
+
1461
+
1462
+ <th class="last">Description</th>
1463
+ </tr>
1464
+ </thead>
1465
+
1466
+ <tbody>
1467
+
1468
+
1469
+ <tr>
1470
+
1471
+ <td class="name"><code>button</code></td>
1472
+
1473
+
1474
+ <td class="type">
1475
+
1476
+
1477
+ <span class="param-type">Number</span>
1478
+
1479
+
1480
+
1481
+ </td>
1482
+
1483
+
1484
+ <td class="attributes">
1485
+
1486
+
1487
+
1488
+
1489
+
1490
+ </td>
1491
+
1492
+
1493
+
1494
+ <td class="default">
1495
+
1496
+ </td>
1497
+
1498
+
1499
+ <td class="description last"></td>
1500
+ </tr>
1501
+
1502
+
1503
+
1504
+ <tr>
1505
+
1506
+ <td class="name"><code>gamepad</code></td>
1507
+
1508
+
1509
+ <td class="type">
1510
+
1511
+
1512
+ <span class="param-type">Number</span>
1513
+
1514
+
1515
+
1516
+ </td>
1517
+
1518
+
1519
+ <td class="attributes">
1520
+
1521
+ &lt;optional><br>
1522
+
1523
+
1524
+
1525
+
1526
+
1527
+ </td>
1528
+
1529
+
1530
+
1531
+ <td class="default">
1532
+
1533
+ 0
1534
+
1535
+ </td>
1536
+
1537
+
1538
+ <td class="description last"></td>
1539
+ </tr>
1540
+
1541
+
1542
+ </tbody>
1543
+ </table>
1544
+
1545
+ </div>
1546
+
1547
+
1548
+
1549
+
1550
+
1551
+
1552
+
1553
+ <dl class="details">
1554
+
1555
+
1556
+
1557
+
1558
+
1559
+
1560
+
1561
+
1562
+
1563
+
1564
+
1565
+
1566
+
1567
+
1568
+
1569
+
1570
+
1571
+
1572
+
1573
+
1574
+
1575
+
1576
+
1577
+
1578
+
1579
+
1580
+ <div class="details-item-container">
1581
+ <dt class="tag-source">Source:</dt>
1582
+ <dd class="tag-source"><ul class="dummy"><li>
1583
+ <a href="engineInput.js.html">engineInput.js</a>, <a href="engineInput.js.html#line89">line 89</a>
1584
+ </li></ul></dd>
1585
+ </div>
1586
+
1587
+
1588
+
1589
+
1590
+
1591
+
1592
+
1593
+ </dl>
1594
+
1595
+
1596
+
1597
+
1598
+
1599
+
1600
+
1601
+
1602
+
1603
+
1604
+
1605
+
1606
+
1607
+
1608
+
1609
+ <div class="method-member-container mt-20">
1610
+ <strong>Returns:</strong>
1611
+
1612
+
1613
+
1614
+
1615
+ <dl class="param-type">
1616
+ <dt>
1617
+ Type
1618
+ </dt>
1619
+ <dd>
1620
+
1621
+ <span class="param-type">Boolean</span>
1622
+
1623
+
1624
+ </dd>
1625
+ </dl>
1626
+
1627
+
1628
+ </div>
1629
+
1630
+
1631
+
1632
+
1633
+
1634
+
1635
+
1636
+
1637
+
1638
+ <h4 class="name" id=".gamepadWasReleased">
1639
+ <a href="#.gamepadWasReleased">#</a>
1640
+ <span class="type-signature">(static) </span>gamepadWasReleased<span class="signature">(button, gamepad<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {Boolean}</span>
1641
+ </h4>
1642
+
1643
+
1644
+
1645
+
1646
+
1647
+ <div class="description">
1648
+ Returns true if gamepad button was released
1649
+ </div>
1650
+
1651
+
1652
+
1653
+
1654
+
1655
+
1656
+
1657
+
1658
+
1659
+ <div class="method-member-container flex flex-col w-100 overflow-auto mt-20">
1660
+ <strong>Parameters:</strong>
1661
+
1662
+
1663
+ <table class="params">
1664
+ <thead>
1665
+ <tr>
1666
+
1667
+ <th>Name</th>
1668
+
1669
+
1670
+ <th>Type</th>
1671
+
1672
+
1673
+ <th>Attributes</th>
1674
+
1675
+
1676
+
1677
+ <th>Default</th>
1678
+
1679
+
1680
+ <th class="last">Description</th>
1681
+ </tr>
1682
+ </thead>
1683
+
1684
+ <tbody>
1685
+
1686
+
1687
+ <tr>
1688
+
1689
+ <td class="name"><code>button</code></td>
1690
+
1691
+
1692
+ <td class="type">
1693
+
1694
+
1695
+ <span class="param-type">Number</span>
1696
+
1697
+
1698
+
1699
+ </td>
1700
+
1701
+
1702
+ <td class="attributes">
1703
+
1704
+
1705
+
1706
+
1707
+
1708
+ </td>
1709
+
1710
+
1711
+
1712
+ <td class="default">
1713
+
1714
+ </td>
1715
+
1716
+
1717
+ <td class="description last"></td>
1718
+ </tr>
1719
+
1720
+
1721
+
1722
+ <tr>
1723
+
1724
+ <td class="name"><code>gamepad</code></td>
1725
+
1726
+
1727
+ <td class="type">
1728
+
1729
+
1730
+ <span class="param-type">Number</span>
1731
+
1732
+
1733
+
1734
+ </td>
1735
+
1736
+
1737
+ <td class="attributes">
1738
+
1739
+ &lt;optional><br>
1740
+
1741
+
1742
+
1743
+
1744
+
1745
+ </td>
1746
+
1747
+
1748
+
1749
+ <td class="default">
1750
+
1751
+ 0
1752
+
1753
+ </td>
1754
+
1755
+
1756
+ <td class="description last"></td>
1757
+ </tr>
1758
+
1759
+
1760
+ </tbody>
1761
+ </table>
1762
+
1763
+ </div>
1764
+
1765
+
1766
+
1767
+
1768
+
1769
+
1770
+
1771
+ <dl class="details">
1772
+
1773
+
1774
+
1775
+
1776
+
1777
+
1778
+
1779
+
1780
+
1781
+
1782
+
1783
+
1784
+
1785
+
1786
+
1787
+
1788
+
1789
+
1790
+
1791
+
1792
+
1793
+
1794
+
1795
+
1796
+
1797
+
1798
+ <div class="details-item-container">
1799
+ <dt class="tag-source">Source:</dt>
1800
+ <dd class="tag-source"><ul class="dummy"><li>
1801
+ <a href="engineInput.js.html">engineInput.js</a>, <a href="engineInput.js.html#line96">line 96</a>
1802
+ </li></ul></dd>
1803
+ </div>
1804
+
1805
+
1806
+
1807
+
1808
+
1809
+
1810
+
1811
+ </dl>
1812
+
1813
+
1814
+
1815
+
1816
+
1817
+
1818
+
1819
+
1820
+
1821
+
1822
+
1823
+
1824
+
1825
+
1826
+
1827
+ <div class="method-member-container mt-20">
1828
+ <strong>Returns:</strong>
1829
+
1830
+
1831
+
1832
+
1833
+ <dl class="param-type">
1834
+ <dt>
1835
+ Type
1836
+ </dt>
1837
+ <dd>
1838
+
1839
+ <span class="param-type">Boolean</span>
1840
+
1841
+
1842
+ </dd>
1843
+ </dl>
1844
+
1845
+
1846
+ </div>
1847
+
1848
+
1849
+
1850
+
1851
+
1852
+
1853
+
1854
+
1855
+
1856
+ <h4 class="name" id=".keyIsDown">
1857
+ <a href="#.keyIsDown">#</a>
1858
+ <span class="type-signature">(static) </span>keyIsDown<span class="signature">(key, device<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {Boolean}</span>
1859
+ </h4>
1860
+
1861
+
1862
+
1863
+
1864
+
1865
+ <div class="description">
1866
+ Returns true if device key is down
1867
+ </div>
1868
+
1869
+
1870
+
1871
+
1872
+
1873
+
1874
+
1875
+
1876
+
1877
+ <div class="method-member-container flex flex-col w-100 overflow-auto mt-20">
1878
+ <strong>Parameters:</strong>
1879
+
1880
+
1881
+ <table class="params">
1882
+ <thead>
1883
+ <tr>
1884
+
1885
+ <th>Name</th>
1886
+
1887
+
1888
+ <th>Type</th>
1889
+
1890
+
1891
+ <th>Attributes</th>
1892
+
1893
+
1894
+
1895
+ <th>Default</th>
1896
+
1897
+
1898
+ <th class="last">Description</th>
1899
+ </tr>
1900
+ </thead>
1901
+
1902
+ <tbody>
1903
+
1904
+
1905
+ <tr>
1906
+
1907
+ <td class="name"><code>key</code></td>
1908
+
1909
+
1910
+ <td class="type">
1911
+
1912
+
1913
+ <span class="param-type">Number</span>
1914
+
1915
+
1916
+
1917
+ </td>
1918
+
1919
+
1920
+ <td class="attributes">
1921
+
1922
+
1923
+
1924
+
1925
+
1926
+ </td>
1927
+
1928
+
1929
+
1930
+ <td class="default">
1931
+
1932
+ </td>
1933
+
1934
+
1935
+ <td class="description last"></td>
1936
+ </tr>
1937
+
1938
+
1939
+
1940
+ <tr>
1941
+
1942
+ <td class="name"><code>device</code></td>
1943
+
1944
+
1945
+ <td class="type">
1946
+
1947
+
1948
+ <span class="param-type">Number</span>
1949
+
1950
+
1951
+
1952
+ </td>
1953
+
1954
+
1955
+ <td class="attributes">
1956
+
1957
+ &lt;optional><br>
1958
+
1959
+
1960
+
1961
+
1962
+
1963
+ </td>
1964
+
1965
+
1966
+
1967
+ <td class="default">
1968
+
1969
+ 0
1970
+
1971
+ </td>
1972
+
1973
+
1974
+ <td class="description last"></td>
1975
+ </tr>
1976
+
1977
+
1978
+ </tbody>
1979
+ </table>
1980
+
1981
+ </div>
1982
+
1983
+
1984
+
1985
+
1986
+
1987
+
1988
+
1989
+ <dl class="details">
1990
+
1991
+
1992
+
1993
+
1994
+
1995
+
1996
+
1997
+
1998
+
1999
+
2000
+
2001
+
2002
+
2003
+
2004
+
2005
+
2006
+
2007
+
2008
+
2009
+
2010
+
2011
+
2012
+
2013
+
2014
+
2015
+
2016
+ <div class="details-item-container">
2017
+ <dt class="tag-source">Source:</dt>
2018
+ <dd class="tag-source"><ul class="dummy"><li>
2019
+ <a href="engineInput.js.html">engineInput.js</a>, <a href="engineInput.js.html#line17">line 17</a>
2020
+ </li></ul></dd>
2021
+ </div>
2022
+
2023
+
2024
+
2025
+
2026
+
2027
+
2028
+
2029
+ </dl>
2030
+
2031
+
2032
+
2033
+
2034
+
2035
+
2036
+
2037
+
2038
+
2039
+
2040
+
2041
+
2042
+
2043
+
2044
+
2045
+ <div class="method-member-container mt-20">
2046
+ <strong>Returns:</strong>
2047
+
2048
+
2049
+
2050
+
2051
+ <dl class="param-type">
2052
+ <dt>
2053
+ Type
2054
+ </dt>
2055
+ <dd>
2056
+
2057
+ <span class="param-type">Boolean</span>
2058
+
2059
+
2060
+ </dd>
2061
+ </dl>
2062
+
2063
+
2064
+ </div>
2065
+
2066
+
2067
+
2068
+
2069
+
2070
+
2071
+
2072
+
2073
+
2074
+ <h4 class="name" id=".keyWasPressed">
2075
+ <a href="#.keyWasPressed">#</a>
2076
+ <span class="type-signature">(static) </span>keyWasPressed<span class="signature">(key, device<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {Boolean}</span>
2077
+ </h4>
2078
+
2079
+
2080
+
2081
+
2082
+
2083
+ <div class="description">
2084
+ Returns true if device key was pressed this frame
2085
+ </div>
2086
+
2087
+
2088
+
2089
+
2090
+
2091
+
2092
+
2093
+
2094
+
2095
+ <div class="method-member-container flex flex-col w-100 overflow-auto mt-20">
2096
+ <strong>Parameters:</strong>
2097
+
2098
+
2099
+ <table class="params">
2100
+ <thead>
2101
+ <tr>
2102
+
2103
+ <th>Name</th>
2104
+
2105
+
2106
+ <th>Type</th>
2107
+
2108
+
2109
+ <th>Attributes</th>
2110
+
2111
+
2112
+
2113
+ <th>Default</th>
2114
+
2115
+
2116
+ <th class="last">Description</th>
2117
+ </tr>
2118
+ </thead>
2119
+
2120
+ <tbody>
2121
+
2122
+
2123
+ <tr>
2124
+
2125
+ <td class="name"><code>key</code></td>
2126
+
2127
+
2128
+ <td class="type">
2129
+
2130
+
2131
+ <span class="param-type">Number</span>
2132
+
2133
+
2134
+
2135
+ </td>
2136
+
2137
+
2138
+ <td class="attributes">
2139
+
2140
+
2141
+
2142
+
2143
+
2144
+ </td>
2145
+
2146
+
2147
+
2148
+ <td class="default">
2149
+
2150
+ </td>
2151
+
2152
+
2153
+ <td class="description last"></td>
2154
+ </tr>
2155
+
2156
+
2157
+
2158
+ <tr>
2159
+
2160
+ <td class="name"><code>device</code></td>
2161
+
2162
+
2163
+ <td class="type">
2164
+
2165
+
2166
+ <span class="param-type">Number</span>
2167
+
2168
+
2169
+
2170
+ </td>
2171
+
2172
+
2173
+ <td class="attributes">
2174
+
2175
+ &lt;optional><br>
2176
+
2177
+
2178
+
2179
+
2180
+
2181
+ </td>
2182
+
2183
+
2184
+
2185
+ <td class="default">
2186
+
2187
+ 0
2188
+
2189
+ </td>
2190
+
2191
+
2192
+ <td class="description last"></td>
2193
+ </tr>
2194
+
2195
+
2196
+ </tbody>
2197
+ </table>
2198
+
2199
+ </div>
2200
+
2201
+
2202
+
2203
+
2204
+
2205
+
2206
+
2207
+ <dl class="details">
2208
+
2209
+
2210
+
2211
+
2212
+
2213
+
2214
+
2215
+
2216
+
2217
+
2218
+
2219
+
2220
+
2221
+
2222
+
2223
+
2224
+
2225
+
2226
+
2227
+
2228
+
2229
+
2230
+
2231
+
2232
+
2233
+
2234
+ <div class="details-item-container">
2235
+ <dt class="tag-source">Source:</dt>
2236
+ <dd class="tag-source"><ul class="dummy"><li>
2237
+ <a href="engineInput.js.html">engineInput.js</a>, <a href="engineInput.js.html#line24">line 24</a>
2238
+ </li></ul></dd>
2239
+ </div>
2240
+
2241
+
2242
+
2243
+
2244
+
2245
+
2246
+
2247
+ </dl>
2248
+
2249
+
2250
+
2251
+
2252
+
2253
+
2254
+
2255
+
2256
+
2257
+
2258
+
2259
+
2260
+
2261
+
2262
+
2263
+ <div class="method-member-container mt-20">
2264
+ <strong>Returns:</strong>
2265
+
2266
+
2267
+
2268
+
2269
+ <dl class="param-type">
2270
+ <dt>
2271
+ Type
2272
+ </dt>
2273
+ <dd>
2274
+
2275
+ <span class="param-type">Boolean</span>
2276
+
2277
+
2278
+ </dd>
2279
+ </dl>
2280
+
2281
+
2282
+ </div>
2283
+
2284
+
2285
+
2286
+
2287
+
2288
+
2289
+
2290
+
2291
+
2292
+ <h4 class="name" id=".keyWasReleased">
2293
+ <a href="#.keyWasReleased">#</a>
2294
+ <span class="type-signature">(static) </span>keyWasReleased<span class="signature">(key, device<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {Boolean}</span>
2295
+ </h4>
2296
+
2297
+
2298
+
2299
+
2300
+
2301
+ <div class="description">
2302
+ Returns true if device key was released this frame
2303
+ </div>
2304
+
2305
+
2306
+
2307
+
2308
+
2309
+
2310
+
2311
+
2312
+
2313
+ <div class="method-member-container flex flex-col w-100 overflow-auto mt-20">
2314
+ <strong>Parameters:</strong>
2315
+
2316
+
2317
+ <table class="params">
2318
+ <thead>
2319
+ <tr>
2320
+
2321
+ <th>Name</th>
2322
+
2323
+
2324
+ <th>Type</th>
2325
+
2326
+
2327
+ <th>Attributes</th>
2328
+
2329
+
2330
+
2331
+ <th>Default</th>
2332
+
2333
+
2334
+ <th class="last">Description</th>
2335
+ </tr>
2336
+ </thead>
2337
+
2338
+ <tbody>
2339
+
2340
+
2341
+ <tr>
2342
+
2343
+ <td class="name"><code>key</code></td>
2344
+
2345
+
2346
+ <td class="type">
2347
+
2348
+
2349
+ <span class="param-type">Number</span>
2350
+
2351
+
2352
+
2353
+ </td>
2354
+
2355
+
2356
+ <td class="attributes">
2357
+
2358
+
2359
+
2360
+
2361
+
2362
+ </td>
2363
+
2364
+
2365
+
2366
+ <td class="default">
2367
+
2368
+ </td>
2369
+
2370
+
2371
+ <td class="description last"></td>
2372
+ </tr>
2373
+
2374
+
2375
+
2376
+ <tr>
2377
+
2378
+ <td class="name"><code>device</code></td>
2379
+
2380
+
2381
+ <td class="type">
2382
+
2383
+
2384
+ <span class="param-type">Number</span>
2385
+
2386
+
2387
+
2388
+ </td>
2389
+
2390
+
2391
+ <td class="attributes">
2392
+
2393
+ &lt;optional><br>
2394
+
2395
+
2396
+
2397
+
2398
+
2399
+ </td>
2400
+
2401
+
2402
+
2403
+ <td class="default">
2404
+
2405
+ 0
2406
+
2407
+ </td>
2408
+
2409
+
2410
+ <td class="description last"></td>
2411
+ </tr>
2412
+
2413
+
2414
+ </tbody>
2415
+ </table>
2416
+
2417
+ </div>
2418
+
2419
+
2420
+
2421
+
2422
+
2423
+
2424
+
2425
+ <dl class="details">
2426
+
2427
+
2428
+
2429
+
2430
+
2431
+
2432
+
2433
+
2434
+
2435
+
2436
+
2437
+
2438
+
2439
+
2440
+
2441
+
2442
+
2443
+
2444
+
2445
+
2446
+
2447
+
2448
+
2449
+
2450
+
2451
+
2452
+ <div class="details-item-container">
2453
+ <dt class="tag-source">Source:</dt>
2454
+ <dd class="tag-source"><ul class="dummy"><li>
2455
+ <a href="engineInput.js.html">engineInput.js</a>, <a href="engineInput.js.html#line31">line 31</a>
2456
+ </li></ul></dd>
2457
+ </div>
2458
+
2459
+
2460
+
2461
+
2462
+
2463
+
2464
+
2465
+ </dl>
2466
+
2467
+
2468
+
2469
+
2470
+
2471
+
2472
+
2473
+
2474
+
2475
+
2476
+
2477
+
2478
+
2479
+
2480
+
2481
+ <div class="method-member-container mt-20">
2482
+ <strong>Returns:</strong>
2483
+
2484
+
2485
+
2486
+
2487
+ <dl class="param-type">
2488
+ <dt>
2489
+ Type
2490
+ </dt>
2491
+ <dd>
2492
+
2493
+ <span class="param-type">Boolean</span>
2494
+
2495
+
2496
+ </dd>
2497
+ </dl>
2498
+
2499
+
2500
+ </div>
2501
+
2502
+
2503
+
2504
+
2505
+
2506
+
2507
+
2508
+
2509
+
2510
+ <h4 class="name" id=".vibrate">
2511
+ <a href="#.vibrate">#</a>
2512
+ <span class="type-signature">(static) </span>vibrate<span class="signature">(pattern<span class="signature-attributes">opt</span>)</span><span class="type-signature"></span>
2513
+ </h4>
2514
+
2515
+
2516
+
2517
+
2518
+
2519
+ <div class="description">
2520
+ Pulse the vibration hardware if it exists
2521
+ </div>
2522
+
2523
+
2524
+
2525
+
2526
+
2527
+
2528
+
2529
+
2530
+
2531
+ <div class="method-member-container flex flex-col w-100 overflow-auto mt-20">
2532
+ <strong>Parameters:</strong>
2533
+
2534
+
2535
+ <table class="params">
2536
+ <thead>
2537
+ <tr>
2538
+
2539
+ <th>Name</th>
2540
+
2541
+
2542
+ <th>Type</th>
2543
+
2544
+
2545
+ <th>Attributes</th>
2546
+
2547
+
2548
+
2549
+ <th>Default</th>
2550
+
2551
+
2552
+ <th class="last">Description</th>
2553
+ </tr>
2554
+ </thead>
2555
+
2556
+ <tbody>
2557
+
2558
+
2559
+ <tr>
2560
+
2561
+ <td class="name"><code>pattern</code></td>
2562
+
2563
+
2564
+ <td class="type">
2565
+
2566
+
2567
+ <span class="param-type">Number</span>
2568
+
2569
+
2570
+
2571
+ </td>
2572
+
2573
+
2574
+ <td class="attributes">
2575
+
2576
+ &lt;optional><br>
2577
+
2578
+
2579
+
2580
+
2581
+
2582
+ </td>
2583
+
2584
+
2585
+
2586
+ <td class="default">
2587
+
2588
+ 100
2589
+
2590
+ </td>
2591
+
2592
+
2593
+ <td class="description last">a single value in miliseconds or vibration interval array</td>
2594
+ </tr>
2595
+
2596
+
2597
+ </tbody>
2598
+ </table>
2599
+
2600
+ </div>
2601
+
2602
+
2603
+
2604
+
2605
+
2606
+
2607
+
2608
+ <dl class="details">
2609
+
2610
+
2611
+
2612
+
2613
+
2614
+
2615
+
2616
+
2617
+
2618
+
2619
+
2620
+
2621
+
2622
+
2623
+
2624
+
2625
+
2626
+
2627
+
2628
+
2629
+
2630
+
2631
+
2632
+
2633
+
2634
+
2635
+ <div class="details-item-container">
2636
+ <dt class="tag-source">Source:</dt>
2637
+ <dd class="tag-source"><ul class="dummy"><li>
2638
+ <a href="engineInput.js.html">engineInput.js</a>, <a href="engineInput.js.html#line239">line 239</a>
2639
+ </li></ul></dd>
2640
+ </div>
2641
+
2642
+
2643
+
2644
+
2645
+
2646
+
2647
+
2648
+ </dl>
2649
+
2650
+
2651
+
2652
+
2653
+
2654
+
2655
+
2656
+
2657
+
2658
+
2659
+
2660
+
2661
+
2662
+
2663
+
2664
+
2665
+
2666
+
2667
+
2668
+
2669
+
2670
+
2671
+
2672
+ <h4 class="name" id=".vibrateStop">
2673
+ <a href="#.vibrateStop">#</a>
2674
+ <span class="type-signature">(static) </span>vibrateStop<span class="signature">()</span><span class="type-signature"></span>
2675
+ </h4>
2676
+
2677
+
2678
+
2679
+
2680
+
2681
+ <div class="description">
2682
+ Cancel any ongoing vibration
2683
+ </div>
2684
+
2685
+
2686
+
2687
+
2688
+
2689
+
2690
+
2691
+
2692
+
2693
+
2694
+
2695
+
2696
+
2697
+
2698
+
2699
+ <dl class="details">
2700
+
2701
+
2702
+
2703
+
2704
+
2705
+
2706
+
2707
+
2708
+
2709
+
2710
+
2711
+
2712
+
2713
+
2714
+
2715
+
2716
+
2717
+
2718
+
2719
+
2720
+
2721
+
2722
+
2723
+
2724
+
2725
+
2726
+ <div class="details-item-container">
2727
+ <dt class="tag-source">Source:</dt>
2728
+ <dd class="tag-source"><ul class="dummy"><li>
2729
+ <a href="engineInput.js.html">engineInput.js</a>, <a href="engineInput.js.html#line243">line 243</a>
2730
+ </li></ul></dd>
2731
+ </div>
2732
+
2733
+
2734
+
2735
+
2736
+
2737
+
2738
+
2739
+ </dl>
2740
+
2741
+
2742
+
2743
+
2744
+
2745
+
2746
+
2747
+
2748
+
2749
+
2750
+
2751
+
2752
+
2753
+
2754
+
2755
+
2756
+
2757
+
2758
+
2759
+
2760
+
2761
+
2762
+
2763
+
2764
+ </article>
2765
+
2766
+ </section>
2767
+
2768
+
2769
+
2770
+
2771
+ </div>
2772
+
2773
+ <footer class="footer" id="footer">
2774
+ <a href=https://github.com/KilledByAPixel/LittleJS>LittleJS - MIT License - Copyright 2021 Frank Force</a>
2775
+ </footer>
2776
+
2777
+ <script src="scripts/third-party/prettify.js"></script>
2778
+ <script src="scripts/third-party/lang-css.js"></script>
2779
+ <script type="text/javascript" src="scripts/misc.js"></script>
2780
+
2781
+ <script>prettyPrint();</script>
2782
+ <script src="scripts/linenumber.js"></script>
2783
+ <script src="scripts/fix-code-block.js"></script>
2784
+ <script src="scripts/fix-navbar.js"></script>
2785
+
2786
+ <script src="scripts/search.js"></script>
2787
+ <script src="scripts/third-party/fuse.js"></script>
2788
+ <script>
2789
+ 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#getHSLA","link":"<a href=\"Color.html#getHSLA\">Color &rtrif; getHSLA</a>"},{"title":"Color#hex","link":"<a href=\"Color.html#hex\">Color &rtrif; hex</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#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#setHex","link":"<a href=\"Color.html#setHex\">Color &rtrif; setHex</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":"Color#toString","link":"<a href=\"Color.html#toString\">Color &rtrif; toString</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":"FontImage","link":"<a href=\"FontImage.html\">FontImage</a>"},{"title":"FontImage#drawText","link":"<a href=\"FontImage.html#drawText\">FontImage &rtrif; drawText</a>"},{"title":"FontImage#drawTextScreen","link":"<a href=\"FontImage.html#drawTextScreen\">FontImage &rtrif; drawTextScreen</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#toString","link":"<a href=\"Timer.html#toString\">Timer &rtrif; toString</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":"Vector2#toString","link":"<a href=\"Vector2.html#toString\">Vector2 &rtrif; toString</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.drawTextScreen","link":"<a href=\"Draw.html#.drawTextScreen\">Draw.drawTextScreen &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":"Input.vibrate","link":"<a href=\"Input.html#.vibrate\">Input.vibrate &rtrif; undefined</a>"},{"title":"Input.vibrateStop","link":"<a href=\"Input.html#.vibrateStop\">Input.vibrateStop &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":"engineFontImage","link":"<a href=\"global.html#engineFontImage\">engineFontImage</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":"engineObjectsCollide","link":"<a href=\"global.html#engineObjectsCollide\">engineObjectsCollide</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":"frame","link":"<a href=\"global.html#frame\">frame</a>"},{"title":"frameRate","link":"<a href=\"global.html#frameRate\">frameRate</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>"}];
2790
+ var options =
2791
+ setupSearch(list, options)
2792
+ </script>
2793
+
2794
+
2795
+
2796
+
2797
+
2798
+
2799
+
2800
+
2801
+
2802
+
2803
+
2804
+ </body>
2805
+
2806
+ </html>