├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── no-response.yml └── workflows │ └── lock-comments.yml ├── .gitignore ├── .gitpod.yml ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── CITATION.cff ├── LICENSE.md ├── README.md ├── changelog ├── 3.1.1 │ └── CHANGELOG-v3.1.1.md ├── 3.1.2 │ └── CHANGELOG-v3.1.2.md ├── 3.1 │ └── CHANGELOG-v3.1.md ├── 3.10.1 │ └── CHANGELOG-v3.10.1.md ├── 3.10 │ └── CHANGELOG-v3.10.md ├── 3.11 │ └── CHANGELOG-v3.11.md ├── 3.12 │ └── CHANGELOG-v3.12.md ├── 3.13 │ └── CHANGELOG-v3.13.md ├── 3.14 │ └── CHANGELOG-v3.14.md ├── 3.15.1 │ └── CHANGELOG-v3.15.1.md ├── 3.15 │ └── CHANGELOG-v3.15.md ├── 3.16.2 │ └── CHANGELOG-v3.16.2.md ├── 3.16 │ └── CHANGELOG-v3.16.md ├── 3.17 │ └── CHANGELOG-v3.17.md ├── 3.18.1 │ └── CHANGELOG-v3.18.1.md ├── 3.18 │ └── CHANGELOG-v3.18.md ├── 3.19 │ └── CHANGELOG-v3.19.md ├── 3.2.1 │ └── CHANGELOG-v3.2.1.md ├── 3.2 │ └── CHANGELOG-v3.2.md ├── 3.20.1 │ └── CHANGELOG-v3.20.1.md ├── 3.20 │ └── CHANGELOG-v3.20.md ├── 3.21 │ └── CHANGELOG-v3.21.md ├── 3.22 │ └── CHANGELOG-v3.22.md ├── 3.23 │ └── CHANGELOG-v3.23.md ├── 3.24.1 │ └── CHANGELOG-v3.24.1.md ├── 3.24 │ └── CHANGELOG-v3.24.md ├── 3.3 │ └── CHANGELOG-v3.3.md ├── 3.4 │ └── CHANGELOG-v3.4.md ├── 3.5.1 │ └── CHANGELOG-v3.5.1.md ├── 3.5 │ └── CHANGELOG-v3.5.md ├── 3.50.1 │ └── CHANGELOG-v3.50.1.md ├── 3.50 │ └── CHANGELOG-v3.50.md ├── 3.51 │ └── CHANGELOG-v3.51.md ├── 3.52 │ └── CHANGELOG-v3.52.md ├── 3.53.1 │ └── CHANGELOG-v3.53.1.md ├── 3.53 │ └── CHANGELOG-v3.53.md ├── 3.54 │ └── CHANGELOG-v3.54.md ├── 3.55.1 │ └── CHANGELOG-v3.55.1.md ├── 3.55.2 │ └── CHANGELOG-v3.55.2.md ├── 3.55 │ └── CHANGELOG-v3.55.md ├── 3.6 │ └── CHANGELOG-v3.6.md ├── 3.60 │ ├── Animation.md │ ├── ArcadePhysics.md │ ├── BitmapTextGameObject.md │ ├── Build.md │ ├── CHANGELOG-v3.60.md │ ├── Camera.md │ ├── CanvasRenderer.md │ ├── Colors.md │ ├── CompressedTextures.md │ ├── Container.md │ ├── DynamicTextures.md │ ├── ESMSupport.md │ ├── FX.md │ ├── Game.md │ ├── GameObject.md │ ├── Geometry.md │ ├── GraphicsGameObject.md │ ├── Input.md │ ├── Loader.md │ ├── Masks.md │ ├── MatterPhysics.md │ ├── Mesh.md │ ├── MobilePerformance.md │ ├── NineSliceGameObject.md │ ├── ParticleEmitter.md │ ├── PlaneGameObject.md │ ├── ScaleManager.md │ ├── Scene.md │ ├── Sound.md │ ├── SpatialSound.md │ ├── Spector.md │ ├── Spine3.md │ ├── Spine4.md │ ├── TextGameObject.md │ ├── TextureManager.md │ ├── Tilemap.md │ ├── Timeline.md │ ├── Timestep.md │ ├── TweenManager.md │ ├── Utils.md │ ├── VideoGameObject.md │ ├── WebGLRenderer.md │ └── images │ │ ├── dynamictextures.png │ │ ├── fx.png │ │ ├── masks.png │ │ ├── matter.png │ │ ├── nineslice.png │ │ ├── particles1.png │ │ ├── particles2.png │ │ ├── perf1.png │ │ ├── perf2.png │ │ ├── phaser10banner.png │ │ ├── plane.png │ │ ├── spectorjs.png │ │ ├── spine4.png │ │ ├── timeline.png │ │ ├── tweens.png │ │ └── videogameobject.png ├── 3.7.1 │ └── CHANGELOG-v3.7.1.md ├── 3.7 │ └── CHANGELOG-v3.7.md ├── 3.70 │ └── CHANGELOG-v3.70.md ├── 3.8 │ └── CHANGELOG-v3.8.md ├── 3.80.1 │ └── CHANGELOG-v3.80.1.md ├── 3.80 │ ├── CHANGELOG-v3.80.md │ └── WebGLContextRestore.md ├── 3.85.2 │ └── CHANGELOG-v3.85.2.md ├── 3.85 │ ├── CHANGELOG-v3.85.md │ ├── MatterAttractor.md │ ├── MatterCollisionEvents.md │ ├── MatterJS.md │ ├── MatterWorldUpdate.md │ └── MatterWrapBounds.md ├── 3.86 │ └── CHANGELOG-v3.86.md ├── 3.87 │ └── CHANGELOG-v3.87.md ├── 3.88.1 │ └── CHANGELOG-v3.88.1.md ├── 3.88.2 │ └── CHANGELOG-v3.88.2.md ├── 3.88 │ └── CHANGELOG-v3.88.md ├── 3.9 │ └── CHANGELOG-v3.9.md ├── 3.90 │ └── CHANGELOG-v3.90.md └── assets │ └── phaser-banner.png ├── config ├── webpack-nospector.config.js ├── webpack.config.js ├── webpack.dist.config.js ├── webpack.fb.config.js └── webpack.fb.dist.config.js ├── dist ├── phaser-arcade-physics.js ├── phaser-arcade-physics.min.js ├── phaser-ie9.js ├── phaser-ie9.min.js ├── phaser.esm.js ├── phaser.esm.min.js ├── phaser.js └── phaser.min.js ├── package.json ├── plugins ├── camera3d │ ├── copy-to-examples.js │ ├── dist │ │ ├── camera3d.js │ │ └── camera3d.min.js │ ├── readme.md │ ├── src │ │ ├── Camera.js │ │ ├── Camera3DPlugin.js │ │ ├── CameraManager.js │ │ ├── OrthographicCamera.js │ │ ├── PerspectiveCamera.js │ │ ├── index.js │ │ └── sprite3d │ │ │ ├── Sprite3D.js │ │ │ ├── Sprite3DCreator.js │ │ │ └── Sprite3DFactory.js │ └── webpack.config.js ├── fbinstant │ ├── readme.md │ └── src │ │ ├── AdInstance.js │ │ ├── FacebookInstantGamesPlugin.js │ │ ├── Leaderboard.js │ │ ├── LeaderboardScore.js │ │ ├── Product.js │ │ └── Purchase.js ├── impact │ ├── Body.js │ ├── COLLIDES.js │ ├── CollisionMap.js │ ├── DefaultDefs.js │ ├── Factory.js │ ├── GetVelocity.js │ ├── ImpactBody.js │ ├── ImpactImage.js │ ├── ImpactPhysics.js │ ├── ImpactSprite.js │ ├── SeparateX.js │ ├── SeparateY.js │ ├── Solver.js │ ├── TYPE.js │ ├── UpdateMotion.js │ ├── World.js │ ├── components │ │ ├── Acceleration.js │ │ ├── BodyScale.js │ │ ├── BodyType.js │ │ ├── Bounce.js │ │ ├── CheckAgainst.js │ │ ├── Collides.js │ │ ├── Debug.js │ │ ├── Friction.js │ │ ├── Gravity.js │ │ ├── Offset.js │ │ ├── SetGameObject.js │ │ ├── Velocity.js │ │ └── index.js │ ├── events │ │ ├── COLLIDE_EVENT.js │ │ ├── PAUSE_EVENT.js │ │ ├── RESUME_EVENT.js │ │ └── index.js │ ├── index.js │ └── typedefs │ │ ├── CollisionOptions.js │ │ ├── JSONImpactBody.js │ │ ├── WorldConfig.js │ │ ├── WorldDefaults.js │ │ ├── WorldWalls.js │ │ └── index.js ├── layer3d │ ├── Layer3D.js │ ├── Layer3DCamera.js │ ├── Layer3DCanvasRenderer.js │ ├── Layer3DCreator.js │ ├── Layer3DFactory.js │ ├── Layer3DLight.js │ ├── Layer3DRender.js │ ├── Layer3DWebGLRenderer.js │ └── MeshPipeline.js ├── spine │ ├── README.md │ ├── copy-to-examples.js │ ├── dist │ │ ├── SpineCanvasPlugin.js │ │ ├── SpineCanvasPlugin.min.js │ │ ├── SpineCanvasPluginDebug.js │ │ ├── SpineCanvasPluginDebug.js.map │ │ ├── SpinePlugin.js │ │ ├── SpinePlugin.min.js │ │ ├── SpinePluginDebug.js │ │ ├── SpinePluginDebug.js.map │ │ ├── SpineWebGLPlugin.js │ │ ├── SpineWebGLPlugin.min.js │ │ ├── SpineWebGLPluginDebug.js │ │ └── SpineWebGLPluginDebug.js.map │ ├── src │ │ ├── SpineFile.js │ │ ├── SpinePlugin.js │ │ ├── container │ │ │ ├── SpineContainer.js │ │ │ ├── SpineContainerCanvasRenderer.js │ │ │ ├── SpineContainerRender.js │ │ │ └── SpineContainerWebGLRenderer.js │ │ ├── events │ │ │ ├── COMPLETE_EVENT.js │ │ │ ├── DISPOSE_EVENT.js │ │ │ ├── END_EVENT.js │ │ │ ├── EVENT_EVENT.js │ │ │ ├── INTERRUPTED_EVENT.js │ │ │ ├── START_EVENT.js │ │ │ └── index.js │ │ ├── gameobject │ │ │ ├── SpineGameObject.js │ │ │ ├── SpineGameObjectCanvasRenderer.js │ │ │ ├── SpineGameObjectRender.js │ │ │ ├── SpineGameObjectWebGLDirect.js │ │ │ └── SpineGameObjectWebGLRenderer.js │ │ └── runtimes │ │ │ ├── LICENSE │ │ │ ├── spine-both.d.ts │ │ │ ├── spine-both.js │ │ │ ├── spine-both.js.map │ │ │ ├── spine-canvas.d.ts │ │ │ ├── spine-canvas.js │ │ │ ├── spine-canvas.js.map │ │ │ ├── spine-webgl.d.ts │ │ │ ├── spine-webgl.js │ │ │ └── spine-webgl.js.map │ ├── tsconfig.both.json │ ├── tsconfig.canvas.json │ ├── tsconfig.webgl.json │ ├── webpack.auto.config.js │ ├── webpack.auto.dist.config.js │ ├── webpack.canvas.config.js │ ├── webpack.canvas.dist.config.js │ ├── webpack.webgl.config.js │ └── webpack.webgl.dist.config.js └── spine4.1 │ ├── README.md │ ├── copy-to-examples.js │ ├── dist │ ├── SpineCanvasPlugin.js │ ├── SpineCanvasPlugin.min.js │ ├── SpineCanvasPluginDebug.js │ ├── SpineCanvasPluginDebug.js.map │ ├── SpinePlugin.js │ ├── SpinePlugin.min.js │ ├── SpinePluginDebug.js │ ├── SpinePluginDebug.js.map │ ├── SpineWebGLPlugin.js │ ├── SpineWebGLPlugin.min.js │ ├── SpineWebGLPluginDebug.js │ └── SpineWebGLPluginDebug.js.map │ ├── src │ ├── SpineFile.js │ ├── SpinePlugin.js │ ├── container │ │ ├── SpineContainer.js │ │ ├── SpineContainerCanvasRenderer.js │ │ ├── SpineContainerRender.js │ │ └── SpineContainerWebGLRenderer.js │ ├── events │ │ ├── COMPLETE_EVENT.js │ │ ├── DISPOSE_EVENT.js │ │ ├── END_EVENT.js │ │ ├── EVENT_EVENT.js │ │ ├── INTERRUPTED_EVENT.js │ │ ├── START_EVENT.js │ │ └── index.js │ ├── gameobject │ │ ├── SpineGameObject.js │ │ ├── SpineGameObjectCanvasRenderer.js │ │ ├── SpineGameObjectRender.js │ │ ├── SpineGameObjectWebGLDirect.js │ │ └── SpineGameObjectWebGLRenderer.js │ └── runtimes │ │ ├── LICENSE │ │ ├── spine-both.d.ts │ │ ├── spine-both.js │ │ ├── spine-both.js.map │ │ ├── spine-canvas.d.ts │ │ ├── spine-canvas.js │ │ ├── spine-canvas.js.map │ │ ├── spine-webgl.d.ts │ │ ├── spine-webgl.js │ │ └── spine-webgl.js.map │ ├── webpack.auto.config.js │ ├── webpack.auto.dist.config.js │ ├── webpack.canvas.config.js │ ├── webpack.canvas.dist.config.js │ ├── webpack.webgl.config.js │ └── webpack.webgl.dist.config.js ├── scripts ├── bundle-shaders.js ├── copy-esm-to-examples-watch.js ├── copy-to-examples-fb.js ├── copy-to-examples-watch.js ├── copy-to-examples.js ├── help.js ├── support.js └── tsgen │ ├── README.md │ ├── bin │ ├── Parser.js │ ├── Parser.js.map │ ├── publish.js │ └── publish.js.map │ ├── jsdoc-plugins │ ├── this.js │ └── typedef.js │ ├── jsdoc-tsd.conf.json │ ├── src │ ├── Parser.ts │ └── publish.ts │ ├── test │ ├── bin │ │ ├── game.js │ │ └── game.js.map │ ├── output.txt │ ├── src │ │ └── game.ts │ └── tsconfig.json │ └── tsconfig.json ├── src ├── actions │ ├── AlignTo.js │ ├── Angle.js │ ├── Call.js │ ├── GetFirst.js │ ├── GetLast.js │ ├── GridAlign.js │ ├── IncAlpha.js │ ├── IncX.js │ ├── IncXY.js │ ├── IncY.js │ ├── PlaceOnCircle.js │ ├── PlaceOnEllipse.js │ ├── PlaceOnLine.js │ ├── PlaceOnRectangle.js │ ├── PlaceOnTriangle.js │ ├── PlayAnimation.js │ ├── PropertyValueInc.js │ ├── PropertyValueSet.js │ ├── RandomCircle.js │ ├── RandomEllipse.js │ ├── RandomLine.js │ ├── RandomRectangle.js │ ├── RandomTriangle.js │ ├── Rotate.js │ ├── RotateAround.js │ ├── RotateAroundDistance.js │ ├── ScaleX.js │ ├── ScaleXY.js │ ├── ScaleY.js │ ├── SetAlpha.js │ ├── SetBlendMode.js │ ├── SetDepth.js │ ├── SetHitArea.js │ ├── SetOrigin.js │ ├── SetRotation.js │ ├── SetScale.js │ ├── SetScaleX.js │ ├── SetScaleY.js │ ├── SetScrollFactor.js │ ├── SetScrollFactorX.js │ ├── SetScrollFactorY.js │ ├── SetTint.js │ ├── SetVisible.js │ ├── SetX.js │ ├── SetXY.js │ ├── SetY.js │ ├── ShiftPosition.js │ ├── Shuffle.js │ ├── SmoothStep.js │ ├── SmootherStep.js │ ├── Spread.js │ ├── ToggleVisible.js │ ├── WrapInRectangle.js │ ├── index.js │ └── typedefs │ │ ├── CallCallback.js │ │ ├── GridAlignConfig.js │ │ └── index.js ├── animations │ ├── Animation.js │ ├── AnimationFrame.js │ ├── AnimationManager.js │ ├── AnimationState.js │ ├── events │ │ ├── ADD_ANIMATION_EVENT.js │ │ ├── ANIMATION_COMPLETE_EVENT.js │ │ ├── ANIMATION_COMPLETE_KEY_EVENT.js │ │ ├── ANIMATION_REPEAT_EVENT.js │ │ ├── ANIMATION_RESTART_EVENT.js │ │ ├── ANIMATION_START_EVENT.js │ │ ├── ANIMATION_STOP_EVENT.js │ │ ├── ANIMATION_UPDATE_EVENT.js │ │ ├── PAUSE_ALL_EVENT.js │ │ ├── REMOVE_ANIMATION_EVENT.js │ │ ├── RESUME_ALL_EVENT.js │ │ └── index.js │ ├── index.js │ └── typedefs │ │ ├── Animation.js │ │ ├── AnimationFrame.js │ │ ├── GenerateFrameNames.js │ │ ├── GenerateFrameNumbers.js │ │ ├── JSONAnimation.js │ │ ├── JSONAnimationFrame.js │ │ ├── JSONAnimations.js │ │ ├── PlayAnimationConfig.js │ │ └── index.js ├── cache │ ├── BaseCache.js │ ├── CacheManager.js │ ├── events │ │ ├── ADD_EVENT.js │ │ ├── REMOVE_EVENT.js │ │ └── index.js │ └── index.js ├── cameras │ ├── 2d │ │ ├── BaseCamera.js │ │ ├── Camera.js │ │ ├── CameraManager.js │ │ ├── effects │ │ │ ├── Fade.js │ │ │ ├── Flash.js │ │ │ ├── Pan.js │ │ │ ├── RotateTo.js │ │ │ ├── Shake.js │ │ │ ├── Zoom.js │ │ │ └── index.js │ │ ├── events │ │ │ ├── DESTROY_EVENT.js │ │ │ ├── FADE_IN_COMPLETE_EVENT.js │ │ │ ├── FADE_IN_START_EVENT.js │ │ │ ├── FADE_OUT_COMPLETE_EVENT.js │ │ │ ├── FADE_OUT_START_EVENT.js │ │ │ ├── FLASH_COMPLETE_EVENT.js │ │ │ ├── FLASH_START_EVENT.js │ │ │ ├── FOLLOW_UPDATE_EVENT.js │ │ │ ├── PAN_COMPLETE_EVENT.js │ │ │ ├── PAN_START_EVENT.js │ │ │ ├── POST_RENDER_EVENT.js │ │ │ ├── PRE_RENDER_EVENT.js │ │ │ ├── ROTATE_COMPLETE_EVENT.js │ │ │ ├── ROTATE_START_EVENT.js │ │ │ ├── SHAKE_COMPLETE_EVENT.js │ │ │ ├── SHAKE_START_EVENT.js │ │ │ ├── ZOOM_COMPLETE_EVENT.js │ │ │ ├── ZOOM_START_EVENT.js │ │ │ └── index.js │ │ ├── index.js │ │ └── typedefs │ │ │ ├── CameraConfig.js │ │ │ ├── CameraFadeCallback.js │ │ │ ├── CameraFlashCallback.js │ │ │ ├── CameraPanCallback.js │ │ │ ├── CameraShakeCallback.js │ │ │ ├── CameraZoomCallback.js │ │ │ ├── JSONCamera.js │ │ │ ├── JSONCameraBounds.js │ │ │ └── index.js │ ├── controls │ │ ├── FixedKeyControl.js │ │ ├── SmoothedKeyControl.js │ │ ├── index.js │ │ └── typedefs │ │ │ ├── FixedKeyControlConfig.js │ │ │ ├── SmoothedKeyControlConfig.js │ │ │ └── index.js │ └── index.js ├── const.js ├── core │ ├── Config.js │ ├── CreateRenderer.js │ ├── DebugHeader.js │ ├── Game.js │ ├── TimeStep.js │ ├── VisibilityHandler.js │ ├── events │ │ ├── BLUR_EVENT.js │ │ ├── BOOT_EVENT.js │ │ ├── CONTEXT_LOST_EVENT.js │ │ ├── DESTROY_EVENT.js │ │ ├── FOCUS_EVENT.js │ │ ├── HIDDEN_EVENT.js │ │ ├── PAUSE_EVENT.js │ │ ├── POST_RENDER_EVENT.js │ │ ├── POST_STEP_EVENT.js │ │ ├── PRE_RENDER_EVENT.js │ │ ├── PRE_STEP_EVENT.js │ │ ├── READY_EVENT.js │ │ ├── RESUME_EVENT.js │ │ ├── STEP_EVENT.js │ │ ├── SYSTEM_READY_EVENT.js │ │ ├── VISIBLE_EVENT.js │ │ └── index.js │ ├── index.js │ └── typedefs │ │ ├── AudioConfig.js │ │ ├── BannerConfig.js │ │ ├── BootCallback.js │ │ ├── CallbacksConfig.js │ │ ├── DOMContainerConfig.js │ │ ├── FPSConfig.js │ │ ├── GameConfig.js │ │ ├── GamepadInputConfig.js │ │ ├── ImagesConfig.js │ │ ├── InputConfig.js │ │ ├── KeyboardInputConfig.js │ │ ├── LoaderConfig.js │ │ ├── MouseInputConfig.js │ │ ├── NOOP.js │ │ ├── PhysicsConfig.js │ │ ├── PipelineConfig.js │ │ ├── PluginObject.js │ │ ├── PluginObjectItem.js │ │ ├── RenderConfig.js │ │ ├── ScaleConfig.js │ │ ├── TimeStepCallback.js │ │ ├── TouchInputConfig.js │ │ ├── WidthHeight.js │ │ └── index.js ├── create │ ├── GenerateTexture.js │ ├── index.js │ ├── palettes │ │ ├── Arne16.js │ │ ├── C64.js │ │ ├── CGA.js │ │ ├── JMP.js │ │ ├── MSX.js │ │ └── index.js │ └── typedefs │ │ ├── GenerateTextureConfig.js │ │ ├── Palette.js │ │ └── index.js ├── curves │ ├── CubicBezierCurve.js │ ├── Curve.js │ ├── EllipseCurve.js │ ├── LineCurve.js │ ├── QuadraticBezierCurve.js │ ├── SplineCurve.js │ ├── index.js │ ├── path │ │ ├── MoveTo.js │ │ └── Path.js │ └── typedefs │ │ ├── EllipseCurveConfig.js │ │ ├── JSONCurve.js │ │ ├── JSONEllipseCurve.js │ │ ├── JSONPath.js │ │ └── index.js ├── data │ ├── DataManager.js │ ├── DataManagerPlugin.js │ ├── events │ │ ├── CHANGE_DATA_EVENT.js │ │ ├── CHANGE_DATA_KEY_EVENT.js │ │ ├── DESTROY_EVENT.js │ │ ├── REMOVE_DATA_EVENT.js │ │ ├── SET_DATA_EVENT.js │ │ └── index.js │ └── index.js ├── device │ ├── Audio.js │ ├── Browser.js │ ├── CanvasFeatures.js │ ├── Features.js │ ├── Fullscreen.js │ ├── Input.js │ ├── OS.js │ ├── Video.js │ └── index.js ├── display │ ├── ColorMatrix.js │ ├── RGB.js │ ├── align │ │ ├── const.js │ │ ├── in │ │ │ ├── BottomCenter.js │ │ │ ├── BottomLeft.js │ │ │ ├── BottomRight.js │ │ │ ├── Center.js │ │ │ ├── LeftCenter.js │ │ │ ├── QuickSet.js │ │ │ ├── RightCenter.js │ │ │ ├── TopCenter.js │ │ │ ├── TopLeft.js │ │ │ ├── TopRight.js │ │ │ └── index.js │ │ ├── index.js │ │ └── to │ │ │ ├── BottomCenter.js │ │ │ ├── BottomLeft.js │ │ │ ├── BottomRight.js │ │ │ ├── LeftBottom.js │ │ │ ├── LeftCenter.js │ │ │ ├── LeftTop.js │ │ │ ├── QuickSet.js │ │ │ ├── RightBottom.js │ │ │ ├── RightCenter.js │ │ │ ├── RightTop.js │ │ │ ├── TopCenter.js │ │ │ ├── TopLeft.js │ │ │ ├── TopRight.js │ │ │ └── index.js │ ├── bounds │ │ ├── CenterOn.js │ │ ├── GetBottom.js │ │ ├── GetBounds.js │ │ ├── GetCenterX.js │ │ ├── GetCenterY.js │ │ ├── GetLeft.js │ │ ├── GetOffsetX.js │ │ ├── GetOffsetY.js │ │ ├── GetRight.js │ │ ├── GetTop.js │ │ ├── SetBottom.js │ │ ├── SetCenterX.js │ │ ├── SetCenterY.js │ │ ├── SetLeft.js │ │ ├── SetRight.js │ │ ├── SetTop.js │ │ └── index.js │ ├── canvas │ │ ├── CanvasInterpolation.js │ │ ├── CanvasPool.js │ │ ├── Smoothing.js │ │ ├── TouchAction.js │ │ ├── UserSelect.js │ │ └── index.js │ ├── color │ │ ├── Color.js │ │ ├── ColorSpectrum.js │ │ ├── ColorToRGBA.js │ │ ├── ComponentToHex.js │ │ ├── GetColor.js │ │ ├── GetColor32.js │ │ ├── HSLToColor.js │ │ ├── HSVColorWheel.js │ │ ├── HSVToRGB.js │ │ ├── HexStringToColor.js │ │ ├── HueToComponent.js │ │ ├── IntegerToColor.js │ │ ├── IntegerToRGB.js │ │ ├── Interpolate.js │ │ ├── ObjectToColor.js │ │ ├── RGBStringToColor.js │ │ ├── RGBToHSV.js │ │ ├── RGBToString.js │ │ ├── RandomRGB.js │ │ ├── ValueToColor.js │ │ └── index.js │ ├── index.js │ ├── mask │ │ ├── BitmapMask.js │ │ ├── GeometryMask.js │ │ └── index.js │ ├── shader │ │ └── BaseShader.js │ └── typedefs │ │ ├── ColorObject.js │ │ ├── HSVColorObject.js │ │ ├── InputColorObject.js │ │ └── index.js ├── dom │ ├── AddToDOM.js │ ├── CreateDOMContainer.js │ ├── DOMContentLoaded.js │ ├── GetInnerHeight.js │ ├── GetScreenOrientation.js │ ├── GetTarget.js │ ├── ParseXML.js │ ├── RemoveFromDOM.js │ ├── RequestAnimationFrame.js │ └── index.js ├── events │ ├── EventEmitter.js │ └── index.js ├── fx │ ├── Barrel.js │ ├── Bloom.js │ ├── Blur.js │ ├── Bokeh.js │ ├── Circle.js │ ├── ColorMatrix.js │ ├── Controller.js │ ├── Displacement.js │ ├── Glow.js │ ├── Gradient.js │ ├── Pixelate.js │ ├── Shadow.js │ ├── Shine.js │ ├── Vignette.js │ ├── Wipe.js │ ├── const.js │ └── index.js ├── gameobjects │ ├── BuildGameObject.js │ ├── BuildGameObjectAnimation.js │ ├── DisplayList.js │ ├── GameObject.js │ ├── GameObjectCreator.js │ ├── GameObjectFactory.js │ ├── GetCalcMatrix.js │ ├── UpdateList.js │ ├── bitmaptext │ │ ├── BatchChar.js │ │ ├── GetBitmapTextSize.js │ │ ├── ParseFromAtlas.js │ │ ├── ParseRetroFont.js │ │ ├── ParseXMLBitmapFont.js │ │ ├── RetroFont.js │ │ ├── const.js │ │ ├── dynamic │ │ │ ├── DynamicBitmapText.js │ │ │ ├── DynamicBitmapTextCanvasRenderer.js │ │ │ ├── DynamicBitmapTextCreator.js │ │ │ ├── DynamicBitmapTextFactory.js │ │ │ ├── DynamicBitmapTextRender.js │ │ │ └── DynamicBitmapTextWebGLRenderer.js │ │ ├── static │ │ │ ├── BitmapText.js │ │ │ ├── BitmapTextCanvasRenderer.js │ │ │ ├── BitmapTextCreator.js │ │ │ ├── BitmapTextFactory.js │ │ │ ├── BitmapTextRender.js │ │ │ └── BitmapTextWebGLRenderer.js │ │ └── typedefs │ │ │ ├── BitmapFontCharacterData.js │ │ │ ├── BitmapFontData.js │ │ │ ├── BitmapTextCharacter.js │ │ │ ├── BitmapTextConfig.js │ │ │ ├── BitmapTextLines.js │ │ │ ├── BitmapTextSize.js │ │ │ ├── BitmapTextWord.js │ │ │ ├── DisplayCallbackConfig.js │ │ │ ├── GlobalBitmapTextSize.js │ │ │ ├── JSONBitmapText.js │ │ │ ├── LocalBitmapTextSize.js │ │ │ ├── RetroFontConfig.js │ │ │ ├── TintConfig.js │ │ │ └── index.js │ ├── blitter │ │ ├── Blitter.js │ │ ├── BlitterCanvasRenderer.js │ │ ├── BlitterCreator.js │ │ ├── BlitterFactory.js │ │ ├── BlitterRender.js │ │ ├── BlitterWebGLRenderer.js │ │ └── Bob.js │ ├── components │ │ ├── Alpha.js │ │ ├── AlphaSingle.js │ │ ├── BlendMode.js │ │ ├── ComputedSize.js │ │ ├── Crop.js │ │ ├── Depth.js │ │ ├── FX.js │ │ ├── Flip.js │ │ ├── GetBounds.js │ │ ├── Mask.js │ │ ├── Origin.js │ │ ├── PathFollower.js │ │ ├── Pipeline.js │ │ ├── PostPipeline.js │ │ ├── ScrollFactor.js │ │ ├── Size.js │ │ ├── Texture.js │ │ ├── TextureCrop.js │ │ ├── Tint.js │ │ ├── ToJSON.js │ │ ├── Transform.js │ │ ├── TransformMatrix.js │ │ ├── Visible.js │ │ └── index.js │ ├── container │ │ ├── Container.js │ │ ├── ContainerCanvasRenderer.js │ │ ├── ContainerCreator.js │ │ ├── ContainerFactory.js │ │ ├── ContainerRender.js │ │ ├── ContainerWebGLRenderer.js │ │ └── typedefs │ │ │ ├── ContainerConfig.js │ │ │ └── index.js │ ├── domelement │ │ ├── CSSBlendModes.js │ │ ├── DOMElement.js │ │ ├── DOMElementCSSRenderer.js │ │ ├── DOMElementFactory.js │ │ └── DOMElementRender.js │ ├── events │ │ ├── ADDED_TO_SCENE_EVENT.js │ │ ├── DESTROY_EVENT.js │ │ ├── REMOVED_FROM_SCENE_EVENT.js │ │ ├── VIDEO_COMPLETE_EVENT.js │ │ ├── VIDEO_CREATED_EVENT.js │ │ ├── VIDEO_ERROR_EVENT.js │ │ ├── VIDEO_LOCKED_EVENT.js │ │ ├── VIDEO_LOOP_EVENT.js │ │ ├── VIDEO_METADATA_EVENT.js │ │ ├── VIDEO_PLAYING_EVENT.js │ │ ├── VIDEO_PLAY_EVENT.js │ │ ├── VIDEO_SEEKED_EVENT.js │ │ ├── VIDEO_SEEKING_EVENT.js │ │ ├── VIDEO_STALLED_EVENT.js │ │ ├── VIDEO_STOP_EVENT.js │ │ ├── VIDEO_TEXTURE_EVENT.js │ │ ├── VIDEO_UNLOCKED_EVENT.js │ │ ├── VIDEO_UNSUPPORTED_EVENT.js │ │ └── index.js │ ├── extern │ │ ├── Extern.js │ │ ├── ExternCanvasRenderer.js │ │ ├── ExternFactory.js │ │ ├── ExternRender.js │ │ └── ExternWebGLRenderer.js │ ├── graphics │ │ ├── Commands.js │ │ ├── Graphics.js │ │ ├── GraphicsCanvasRenderer.js │ │ ├── GraphicsCreator.js │ │ ├── GraphicsFactory.js │ │ ├── GraphicsRender.js │ │ ├── GraphicsWebGLRenderer.js │ │ └── typedefs │ │ │ ├── FillStyle.js │ │ │ ├── LineStyle.js │ │ │ ├── Options.js │ │ │ ├── RoundedRectRadius.js │ │ │ ├── Styles.js │ │ │ └── index.js │ ├── group │ │ ├── Group.js │ │ ├── GroupCreator.js │ │ ├── GroupFactory.js │ │ └── typedefs │ │ │ ├── GroupCallback.js │ │ │ ├── GroupClassTypeConstructor.js │ │ │ ├── GroupConfig.js │ │ │ ├── GroupCreateConfig.js │ │ │ ├── GroupMultipleCreateCallback.js │ │ │ └── index.js │ ├── image │ │ ├── Image.js │ │ ├── ImageCanvasRenderer.js │ │ ├── ImageCreator.js │ │ ├── ImageFactory.js │ │ ├── ImageRender.js │ │ └── ImageWebGLRenderer.js │ ├── index.js │ ├── layer │ │ ├── Layer.js │ │ ├── LayerCanvasRenderer.js │ │ ├── LayerCreator.js │ │ ├── LayerFactory.js │ │ ├── LayerRender.js │ │ └── LayerWebGLRenderer.js │ ├── lights │ │ ├── Light.js │ │ ├── LightsManager.js │ │ └── LightsPlugin.js │ ├── mesh │ │ ├── Mesh.js │ │ ├── MeshCanvasRenderer.js │ │ ├── MeshCreator.js │ │ ├── MeshFactory.js │ │ ├── MeshRender.js │ │ ├── MeshWebGLRenderer.js │ │ └── typedefs │ │ │ ├── MeshConfig.js │ │ │ └── index.js │ ├── nineslice │ │ ├── NineSlice.js │ │ ├── NineSliceCreator.js │ │ ├── NineSliceFactory.js │ │ ├── NineSliceRender.js │ │ ├── NineSliceWebGLRenderer.js │ │ └── typedefs │ │ │ ├── NineSliceConfig.js │ │ │ └── index.js │ ├── particles │ │ ├── EmitterColorOp.js │ │ ├── EmitterOp.js │ │ ├── GravityWell.js │ │ ├── Particle.js │ │ ├── ParticleBounds.js │ │ ├── ParticleEmitter.js │ │ ├── ParticleEmitterCanvasRenderer.js │ │ ├── ParticleEmitterCreator.js │ │ ├── ParticleEmitterFactory.js │ │ ├── ParticleEmitterRender.js │ │ ├── ParticleEmitterWebGLRenderer.js │ │ ├── ParticleProcessor.js │ │ ├── events │ │ │ ├── COMPLETE_EVENT.js │ │ │ ├── DEATH_ZONE_EVENT.js │ │ │ ├── EXPLODE_EVENT.js │ │ │ ├── START_EVENT.js │ │ │ ├── STOP_EVENT.js │ │ │ └── index.js │ │ ├── index.js │ │ ├── typedefs │ │ │ ├── DeathZoneObject.js │ │ │ ├── DeathZoneSource.js │ │ │ ├── DeathZoneSourceCallback.js │ │ │ ├── EdgeZoneSource.js │ │ │ ├── EdgeZoneSourceCallback.js │ │ │ ├── EmitZoneData.js │ │ │ ├── EmitZoneObject.js │ │ │ ├── EmitterOpCustomEmitConfig.js │ │ │ ├── EmitterOpCustomUpdateConfig.js │ │ │ ├── EmitterOpEaseConfig.js │ │ │ ├── EmitterOpInterpolationConfig.js │ │ │ ├── EmitterOpOnEmitCallback.js │ │ │ ├── EmitterOpOnEmitType.js │ │ │ ├── EmitterOpOnUpdateCallback.js │ │ │ ├── EmitterOpOnUpdateType.js │ │ │ ├── EmitterOpRandomConfig.js │ │ │ ├── EmitterOpRandomMinMaxConfig.js │ │ │ ├── EmitterOpSteppedConfig.js │ │ │ ├── GravityWellConfig.js │ │ │ ├── ParticleClassConstructor.js │ │ │ ├── ParticleData.js │ │ │ ├── ParticleDataValue.js │ │ │ ├── ParticleDeathCallback.js │ │ │ ├── ParticleEmitterAnimConfig.js │ │ │ ├── ParticleEmitterBounds.js │ │ │ ├── ParticleEmitterBoundsAlt.js │ │ │ ├── ParticleEmitterCallback.js │ │ │ ├── ParticleEmitterConfig.js │ │ │ ├── ParticleEmitterCreatorConfig.js │ │ │ ├── ParticleEmitterDeathZoneConfig.js │ │ │ ├── ParticleEmitterEdgeZoneConfig.js │ │ │ ├── ParticleEmitterFrameConfig.js │ │ │ ├── ParticleEmitterOps.js │ │ │ ├── ParticleEmitterRandomZoneConfig.js │ │ │ ├── ParticleSortCallback.js │ │ │ ├── RandomZoneSource.js │ │ │ ├── RandomZoneSourceCallback.js │ │ │ └── index.js │ │ └── zones │ │ │ ├── DeathZone.js │ │ │ ├── EdgeZone.js │ │ │ ├── RandomZone.js │ │ │ └── index.js │ ├── pathfollower │ │ ├── PathFollower.js │ │ ├── PathFollowerFactory.js │ │ └── typedefs │ │ │ ├── PathConfig.js │ │ │ └── index.js │ ├── plane │ │ ├── Plane.js │ │ ├── PlaneCreator.js │ │ ├── PlaneFactory.js │ │ └── typedefs │ │ │ ├── PlaneCheckerboardConfig.js │ │ │ ├── PlaneConfig.js │ │ │ └── index.js │ ├── pointlight │ │ ├── PointLight.js │ │ ├── PointLightCreator.js │ │ ├── PointLightFactory.js │ │ ├── PointLightRender.js │ │ └── PointLightWebGLRenderer.js │ ├── rendertexture │ │ ├── RenderTexture.js │ │ ├── RenderTextureCreator.js │ │ ├── RenderTextureFactory.js │ │ └── typedefs │ │ │ ├── RenderTextureConfig.js │ │ │ └── index.js │ ├── rope │ │ ├── Rope.js │ │ ├── RopeCanvasRenderer.js │ │ ├── RopeCreator.js │ │ ├── RopeFactory.js │ │ ├── RopeRender.js │ │ ├── RopeWebGLRenderer.js │ │ └── typedefs │ │ │ ├── RopeConfig.js │ │ │ └── index.js │ ├── shader │ │ ├── Shader.js │ │ ├── ShaderCanvasRenderer.js │ │ ├── ShaderCreator.js │ │ ├── ShaderFactory.js │ │ ├── ShaderRender.js │ │ ├── ShaderWebGLRenderer.js │ │ └── typedefs │ │ │ ├── ShaderConfig.js │ │ │ └── index.js │ ├── shape │ │ ├── FillPathWebGL.js │ │ ├── FillStyleCanvas.js │ │ ├── LineStyleCanvas.js │ │ ├── Shape.js │ │ ├── StrokePathWebGL.js │ │ ├── arc │ │ │ ├── Arc.js │ │ │ ├── ArcCanvasRenderer.js │ │ │ ├── ArcFactory.js │ │ │ ├── ArcRender.js │ │ │ └── ArcWebGLRenderer.js │ │ ├── curve │ │ │ ├── Curve.js │ │ │ ├── CurveCanvasRenderer.js │ │ │ ├── CurveFactory.js │ │ │ ├── CurveRender.js │ │ │ └── CurveWebGLRenderer.js │ │ ├── ellipse │ │ │ ├── Ellipse.js │ │ │ ├── EllipseCanvasRenderer.js │ │ │ ├── EllipseFactory.js │ │ │ ├── EllipseRender.js │ │ │ └── EllipseWebGLRenderer.js │ │ ├── grid │ │ │ ├── Grid.js │ │ │ ├── GridCanvasRenderer.js │ │ │ ├── GridFactory.js │ │ │ ├── GridRender.js │ │ │ └── GridWebGLRenderer.js │ │ ├── isobox │ │ │ ├── IsoBox.js │ │ │ ├── IsoBoxCanvasRenderer.js │ │ │ ├── IsoBoxFactory.js │ │ │ ├── IsoBoxRender.js │ │ │ └── IsoBoxWebGLRenderer.js │ │ ├── isotriangle │ │ │ ├── IsoTriangle.js │ │ │ ├── IsoTriangleCanvasRenderer.js │ │ │ ├── IsoTriangleFactory.js │ │ │ ├── IsoTriangleRender.js │ │ │ └── IsoTriangleWebGLRenderer.js │ │ ├── line │ │ │ ├── Line.js │ │ │ ├── LineCanvasRenderer.js │ │ │ ├── LineFactory.js │ │ │ ├── LineRender.js │ │ │ └── LineWebGLRenderer.js │ │ ├── polygon │ │ │ ├── Polygon.js │ │ │ ├── PolygonCanvasRenderer.js │ │ │ ├── PolygonFactory.js │ │ │ ├── PolygonRender.js │ │ │ └── PolygonWebGLRenderer.js │ │ ├── rectangle │ │ │ ├── Rectangle.js │ │ │ ├── RectangleCanvasRenderer.js │ │ │ ├── RectangleFactory.js │ │ │ ├── RectangleRender.js │ │ │ └── RectangleWebGLRenderer.js │ │ ├── star │ │ │ ├── Star.js │ │ │ ├── StarCanvasRenderer.js │ │ │ ├── StarFactory.js │ │ │ ├── StarRender.js │ │ │ └── StarWebGLRenderer.js │ │ └── triangle │ │ │ ├── Triangle.js │ │ │ ├── TriangleCanvasRenderer.js │ │ │ ├── TriangleFactory.js │ │ │ ├── TriangleRender.js │ │ │ └── TriangleWebGLRenderer.js │ ├── sprite │ │ ├── Sprite.js │ │ ├── SpriteCanvasRenderer.js │ │ ├── SpriteCreator.js │ │ ├── SpriteFactory.js │ │ ├── SpriteRender.js │ │ ├── SpriteWebGLRenderer.js │ │ └── typedefs │ │ │ ├── SpriteConfig.js │ │ │ └── index.js │ ├── text │ │ ├── GetTextSize.js │ │ ├── MeasureText.js │ │ ├── Text.js │ │ ├── TextCanvasRenderer.js │ │ ├── TextCreator.js │ │ ├── TextFactory.js │ │ ├── TextRender.js │ │ ├── TextStyle.js │ │ ├── TextWebGLRenderer.js │ │ └── typedefs │ │ │ ├── GetTextSizeObject.js │ │ │ ├── TextConfig.js │ │ │ ├── TextMetrics.js │ │ │ ├── TextPadding.js │ │ │ ├── TextShadow.js │ │ │ ├── TextStyle.js │ │ │ ├── TextWordWrap.js │ │ │ └── index.js │ ├── tilesprite │ │ ├── TileSprite.js │ │ ├── TileSpriteCanvasRenderer.js │ │ ├── TileSpriteCreator.js │ │ ├── TileSpriteFactory.js │ │ ├── TileSpriteRender.js │ │ ├── TileSpriteWebGLRenderer.js │ │ └── typedefs │ │ │ ├── TileSpriteConfig.js │ │ │ └── index.js │ ├── typedefs │ │ ├── DecomposeMatrixResults.js │ │ ├── Face.js │ │ ├── GameObjectConfig.js │ │ ├── GetCalcMatrixResults.js │ │ ├── JSONGameObject.js │ │ ├── Vertex.js │ │ └── index.js │ ├── video │ │ ├── Video.js │ │ ├── VideoCanvasRenderer.js │ │ ├── VideoCreator.js │ │ ├── VideoFactory.js │ │ ├── VideoRender.js │ │ ├── VideoWebGLRenderer.js │ │ └── typedefs │ │ │ ├── VideoConfig.js │ │ │ └── index.js │ └── zone │ │ ├── Zone.js │ │ ├── ZoneCreator.js │ │ ├── ZoneFactory.js │ │ └── typedefs │ │ ├── ZoneConfig.js │ │ └── index.js ├── geom │ ├── circle │ │ ├── Area.js │ │ ├── Circle.js │ │ ├── Circumference.js │ │ ├── CircumferencePoint.js │ │ ├── Clone.js │ │ ├── Contains.js │ │ ├── ContainsPoint.js │ │ ├── ContainsRect.js │ │ ├── CopyFrom.js │ │ ├── Equals.js │ │ ├── GetBounds.js │ │ ├── GetPoint.js │ │ ├── GetPoints.js │ │ ├── Offset.js │ │ ├── OffsetPoint.js │ │ ├── Random.js │ │ └── index.js │ ├── const.js │ ├── ellipse │ │ ├── Area.js │ │ ├── Circumference.js │ │ ├── CircumferencePoint.js │ │ ├── Clone.js │ │ ├── Contains.js │ │ ├── ContainsPoint.js │ │ ├── ContainsRect.js │ │ ├── CopyFrom.js │ │ ├── Ellipse.js │ │ ├── Equals.js │ │ ├── GetBounds.js │ │ ├── GetPoint.js │ │ ├── GetPoints.js │ │ ├── Offset.js │ │ ├── OffsetPoint.js │ │ ├── Random.js │ │ └── index.js │ ├── index.js │ ├── intersects │ │ ├── CircleToCircle.js │ │ ├── CircleToRectangle.js │ │ ├── GetCircleToCircle.js │ │ ├── GetCircleToRectangle.js │ │ ├── GetLineToCircle.js │ │ ├── GetLineToLine.js │ │ ├── GetLineToPoints.js │ │ ├── GetLineToPolygon.js │ │ ├── GetLineToRectangle.js │ │ ├── GetRaysFromPointToPolygon.js │ │ ├── GetRectangleIntersection.js │ │ ├── GetRectangleToRectangle.js │ │ ├── GetRectangleToTriangle.js │ │ ├── GetTriangleToCircle.js │ │ ├── GetTriangleToLine.js │ │ ├── GetTriangleToTriangle.js │ │ ├── LineToCircle.js │ │ ├── LineToLine.js │ │ ├── LineToRectangle.js │ │ ├── PointToLine.js │ │ ├── PointToLineSegment.js │ │ ├── RectangleToRectangle.js │ │ ├── RectangleToTriangle.js │ │ ├── RectangleToValues.js │ │ ├── TriangleToCircle.js │ │ ├── TriangleToLine.js │ │ ├── TriangleToTriangle.js │ │ └── index.js │ ├── line │ │ ├── Angle.js │ │ ├── BresenhamPoints.js │ │ ├── CenterOn.js │ │ ├── Clone.js │ │ ├── CopyFrom.js │ │ ├── Equals.js │ │ ├── Extend.js │ │ ├── GetEasedPoints.js │ │ ├── GetMidPoint.js │ │ ├── GetNearestPoint.js │ │ ├── GetNormal.js │ │ ├── GetPoint.js │ │ ├── GetPoints.js │ │ ├── GetShortestDistance.js │ │ ├── Height.js │ │ ├── Length.js │ │ ├── Line.js │ │ ├── NormalAngle.js │ │ ├── NormalX.js │ │ ├── NormalY.js │ │ ├── Offset.js │ │ ├── PerpSlope.js │ │ ├── Random.js │ │ ├── ReflectAngle.js │ │ ├── Rotate.js │ │ ├── RotateAroundPoint.js │ │ ├── RotateAroundXY.js │ │ ├── SetToAngle.js │ │ ├── Slope.js │ │ ├── Width.js │ │ └── index.js │ ├── mesh │ │ ├── Face.js │ │ ├── GenerateGridVerts.js │ │ ├── GenerateObjVerts.js │ │ ├── GenerateVerts.js │ │ ├── ParseObj.js │ │ ├── ParseObjMaterial.js │ │ ├── RotateFace.js │ │ ├── Vertex.js │ │ ├── index.js │ │ └── typedefs │ │ │ ├── GenerateGridConfig.js │ │ │ ├── GenerateGridVertsResult.js │ │ │ ├── GenerateVertsResult.js │ │ │ ├── OBJData.js │ │ │ ├── OBJFace.js │ │ │ ├── OBJFaceVertice.js │ │ │ ├── OBJModel.js │ │ │ ├── UV.js │ │ │ └── index.js │ ├── point │ │ ├── Ceil.js │ │ ├── Clone.js │ │ ├── CopyFrom.js │ │ ├── Equals.js │ │ ├── Floor.js │ │ ├── GetCentroid.js │ │ ├── GetMagnitude.js │ │ ├── GetMagnitudeSq.js │ │ ├── GetRectangleFromPoints.js │ │ ├── Interpolate.js │ │ ├── Invert.js │ │ ├── Negative.js │ │ ├── Point.js │ │ ├── Project.js │ │ ├── ProjectUnit.js │ │ ├── SetMagnitude.js │ │ └── index.js │ ├── polygon │ │ ├── Clone.js │ │ ├── Contains.js │ │ ├── ContainsPoint.js │ │ ├── Earcut.js │ │ ├── GetAABB.js │ │ ├── GetNumberArray.js │ │ ├── GetPoints.js │ │ ├── Perimeter.js │ │ ├── Polygon.js │ │ ├── Reverse.js │ │ ├── Simplify.js │ │ ├── Smooth.js │ │ ├── Translate.js │ │ └── index.js │ ├── rectangle │ │ ├── Area.js │ │ ├── Ceil.js │ │ ├── CeilAll.js │ │ ├── CenterOn.js │ │ ├── Clone.js │ │ ├── Contains.js │ │ ├── ContainsPoint.js │ │ ├── ContainsRect.js │ │ ├── CopyFrom.js │ │ ├── Decompose.js │ │ ├── Equals.js │ │ ├── FitInside.js │ │ ├── FitOutside.js │ │ ├── Floor.js │ │ ├── FloorAll.js │ │ ├── FromPoints.js │ │ ├── FromXY.js │ │ ├── GetAspectRatio.js │ │ ├── GetCenter.js │ │ ├── GetPoint.js │ │ ├── GetPoints.js │ │ ├── GetSize.js │ │ ├── Inflate.js │ │ ├── Intersection.js │ │ ├── MarchingAnts.js │ │ ├── MergePoints.js │ │ ├── MergeRect.js │ │ ├── MergeXY.js │ │ ├── Offset.js │ │ ├── OffsetPoint.js │ │ ├── Overlaps.js │ │ ├── Perimeter.js │ │ ├── PerimeterPoint.js │ │ ├── Random.js │ │ ├── RandomOutside.js │ │ ├── Rectangle.js │ │ ├── SameDimensions.js │ │ ├── Scale.js │ │ ├── Union.js │ │ └── index.js │ ├── triangle │ │ ├── Area.js │ │ ├── BuildEquilateral.js │ │ ├── BuildFromPolygon.js │ │ ├── BuildRight.js │ │ ├── CenterOn.js │ │ ├── Centroid.js │ │ ├── CircumCenter.js │ │ ├── CircumCircle.js │ │ ├── Clone.js │ │ ├── Contains.js │ │ ├── ContainsArray.js │ │ ├── ContainsPoint.js │ │ ├── CopyFrom.js │ │ ├── Decompose.js │ │ ├── Equals.js │ │ ├── GetPoint.js │ │ ├── GetPoints.js │ │ ├── InCenter.js │ │ ├── Offset.js │ │ ├── Perimeter.js │ │ ├── Random.js │ │ ├── Rotate.js │ │ ├── RotateAroundPoint.js │ │ ├── RotateAroundXY.js │ │ ├── Triangle.js │ │ └── index.js │ └── typedefs │ │ └── index.js ├── input │ ├── CreateInteractiveObject.js │ ├── CreatePixelPerfectHandler.js │ ├── InputManager.js │ ├── InputPlugin.js │ ├── InputPluginCache.js │ ├── Pointer.js │ ├── const.js │ ├── events │ │ ├── BOOT_EVENT.js │ │ ├── DESTROY_EVENT.js │ │ ├── DRAG_END_EVENT.js │ │ ├── DRAG_ENTER_EVENT.js │ │ ├── DRAG_EVENT.js │ │ ├── DRAG_LEAVE_EVENT.js │ │ ├── DRAG_OVER_EVENT.js │ │ ├── DRAG_START_EVENT.js │ │ ├── DROP_EVENT.js │ │ ├── GAMEOBJECT_DOWN_EVENT.js │ │ ├── GAMEOBJECT_DRAG_END_EVENT.js │ │ ├── GAMEOBJECT_DRAG_ENTER_EVENT.js │ │ ├── GAMEOBJECT_DRAG_EVENT.js │ │ ├── GAMEOBJECT_DRAG_LEAVE_EVENT.js │ │ ├── GAMEOBJECT_DRAG_OVER_EVENT.js │ │ ├── GAMEOBJECT_DRAG_START_EVENT.js │ │ ├── GAMEOBJECT_DROP_EVENT.js │ │ ├── GAMEOBJECT_MOVE_EVENT.js │ │ ├── GAMEOBJECT_OUT_EVENT.js │ │ ├── GAMEOBJECT_OVER_EVENT.js │ │ ├── GAMEOBJECT_POINTER_DOWN_EVENT.js │ │ ├── GAMEOBJECT_POINTER_MOVE_EVENT.js │ │ ├── GAMEOBJECT_POINTER_OUT_EVENT.js │ │ ├── GAMEOBJECT_POINTER_OVER_EVENT.js │ │ ├── GAMEOBJECT_POINTER_UP_EVENT.js │ │ ├── GAMEOBJECT_POINTER_WHEEL_EVENT.js │ │ ├── GAMEOBJECT_UP_EVENT.js │ │ ├── GAMEOBJECT_WHEEL_EVENT.js │ │ ├── GAME_OUT_EVENT.js │ │ ├── GAME_OVER_EVENT.js │ │ ├── MANAGER_BOOT_EVENT.js │ │ ├── MANAGER_PROCESS_EVENT.js │ │ ├── MANAGER_UPDATE_EVENT.js │ │ ├── POINTERLOCK_CHANGE_EVENT.js │ │ ├── POINTER_DOWN_EVENT.js │ │ ├── POINTER_DOWN_OUTSIDE_EVENT.js │ │ ├── POINTER_MOVE_EVENT.js │ │ ├── POINTER_OUT_EVENT.js │ │ ├── POINTER_OVER_EVENT.js │ │ ├── POINTER_UP_EVENT.js │ │ ├── POINTER_UP_OUTSIDE_EVENT.js │ │ ├── POINTER_WHEEL_EVENT.js │ │ ├── PRE_UPDATE_EVENT.js │ │ ├── SHUTDOWN_EVENT.js │ │ ├── START_EVENT.js │ │ ├── UPDATE_EVENT.js │ │ └── index.js │ ├── gamepad │ │ ├── Axis.js │ │ ├── Button.js │ │ ├── Gamepad.js │ │ ├── GamepadPlugin.js │ │ ├── configs │ │ │ ├── SNES_USB_Controller.js │ │ │ ├── Sony_PlayStation_DualShock_4.js │ │ │ ├── XBox360_Controller.js │ │ │ └── index.js │ │ ├── events │ │ │ ├── BUTTON_DOWN_EVENT.js │ │ │ ├── BUTTON_UP_EVENT.js │ │ │ ├── CONNECTED_EVENT.js │ │ │ ├── DISCONNECTED_EVENT.js │ │ │ ├── GAMEPAD_BUTTON_DOWN_EVENT.js │ │ │ ├── GAMEPAD_BUTTON_UP_EVENT.js │ │ │ └── index.js │ │ ├── index.js │ │ └── typedefs │ │ │ ├── Pad.js │ │ │ └── index.js │ ├── index.js │ ├── keyboard │ │ ├── KeyboardManager.js │ │ ├── KeyboardPlugin.js │ │ ├── combo │ │ │ ├── AdvanceKeyCombo.js │ │ │ ├── KeyCombo.js │ │ │ ├── ProcessKeyCombo.js │ │ │ └── ResetKeyCombo.js │ │ ├── events │ │ │ ├── ANY_KEY_DOWN_EVENT.js │ │ │ ├── ANY_KEY_UP_EVENT.js │ │ │ ├── COMBO_MATCH_EVENT.js │ │ │ ├── DOWN_EVENT.js │ │ │ ├── KEY_DOWN_EVENT.js │ │ │ ├── KEY_UP_EVENT.js │ │ │ ├── UP_EVENT.js │ │ │ └── index.js │ │ ├── index.js │ │ ├── keys │ │ │ ├── DownDuration.js │ │ │ ├── JustDown.js │ │ │ ├── JustUp.js │ │ │ ├── Key.js │ │ │ ├── KeyCodes.js │ │ │ ├── KeyMap.js │ │ │ └── UpDuration.js │ │ └── typedefs │ │ │ ├── CursorKeys.js │ │ │ ├── KeyComboConfig.js │ │ │ ├── KeyboardKeydownCallback.js │ │ │ └── index.js │ ├── mouse │ │ ├── MouseManager.js │ │ └── index.js │ ├── touch │ │ ├── TouchManager.js │ │ └── index.js │ └── typedefs │ │ ├── EventData.js │ │ ├── HitAreaCallback.js │ │ ├── InputConfiguration.js │ │ ├── InputPluginContainer.js │ │ ├── InteractiveObject.js │ │ └── index.js ├── loader │ ├── File.js │ ├── FileTypesManager.js │ ├── GetURL.js │ ├── LoaderPlugin.js │ ├── MergeXHRSettings.js │ ├── MultiFile.js │ ├── XHRLoader.js │ ├── XHRSettings.js │ ├── const.js │ ├── events │ │ ├── ADD_EVENT.js │ │ ├── COMPLETE_EVENT.js │ │ ├── FILE_COMPLETE_EVENT.js │ │ ├── FILE_KEY_COMPLETE_EVENT.js │ │ ├── FILE_LOAD_ERROR_EVENT.js │ │ ├── FILE_LOAD_EVENT.js │ │ ├── FILE_PROGRESS_EVENT.js │ │ ├── POST_PROCESS_EVENT.js │ │ ├── PROGRESS_EVENT.js │ │ ├── START_EVENT.js │ │ └── index.js │ ├── filetypes │ │ ├── AnimationJSONFile.js │ │ ├── AsepriteFile.js │ │ ├── AtlasJSONFile.js │ │ ├── AtlasXMLFile.js │ │ ├── AudioFile.js │ │ ├── AudioSpriteFile.js │ │ ├── BinaryFile.js │ │ ├── BitmapFontFile.js │ │ ├── CSSFile.js │ │ ├── CompressedTextureFile.js │ │ ├── FontFile.js │ │ ├── GLSLFile.js │ │ ├── HTML5AudioFile.js │ │ ├── HTMLFile.js │ │ ├── HTMLTextureFile.js │ │ ├── ImageFile.js │ │ ├── JSONFile.js │ │ ├── MultiAtlasFile.js │ │ ├── MultiScriptFile.js │ │ ├── OBJFile.js │ │ ├── PackFile.js │ │ ├── PluginFile.js │ │ ├── SVGFile.js │ │ ├── SceneFile.js │ │ ├── ScenePluginFile.js │ │ ├── ScriptFile.js │ │ ├── SpriteSheetFile.js │ │ ├── TextFile.js │ │ ├── TilemapCSVFile.js │ │ ├── TilemapImpactFile.js │ │ ├── TilemapJSONFile.js │ │ ├── UnityAtlasFile.js │ │ ├── VideoFile.js │ │ ├── XMLFile.js │ │ ├── index.js │ │ └── typedefs │ │ │ ├── AsepriteFileConfig.js │ │ │ ├── AtlasJSONFileConfig.js │ │ │ ├── AtlasXMLFileConfig.js │ │ │ ├── AudioFileConfig.js │ │ │ ├── AudioFileURLConfig.js │ │ │ ├── AudioSpriteFileConfig.js │ │ │ ├── BinaryFileConfig.js │ │ │ ├── BitmapFontFileConfig.js │ │ │ ├── CSSFileConfig.js │ │ │ ├── CompressedTextureFileConfig.js │ │ │ ├── FontFileConfig.js │ │ │ ├── GLSLFileConfig.js │ │ │ ├── HTMLFileConfig.js │ │ │ ├── HTMLTextureFileConfig.js │ │ │ ├── ImageFileConfig.js │ │ │ ├── ImageFrameConfig.js │ │ │ ├── JSONFileConfig.js │ │ │ ├── MultiAtlasFileConfig.js │ │ │ ├── MultiScriptFileConfig.js │ │ │ ├── OBJFileConfig.js │ │ │ ├── PackFileConfig.js │ │ │ ├── PackFileSection.js │ │ │ ├── PluginFileConfig.js │ │ │ ├── SVGFileConfig.js │ │ │ ├── SVGSizeConfig.js │ │ │ ├── SceneFileConfig.js │ │ │ ├── ScenePluginFileConfig.js │ │ │ ├── ScriptFileConfig.js │ │ │ ├── SpriteSheetFileConfig.js │ │ │ ├── TextFileConfig.js │ │ │ ├── TilemapCSVFileConfig.js │ │ │ ├── TilemapImpactFileConfig.js │ │ │ ├── TilemapJSONFileConfig.js │ │ │ ├── UnityAtlasFileConfig.js │ │ │ ├── VideoFileConfig.js │ │ │ ├── VideoFileURLConfig.js │ │ │ ├── XMLFileConfig.js │ │ │ └── index.js │ ├── index.js │ └── typedefs │ │ ├── FileConfig.js │ │ ├── XHRSettingsObject.js │ │ └── index.js ├── math │ ├── Average.js │ ├── Bernstein.js │ ├── Between.js │ ├── CatmullRom.js │ ├── CeilTo.js │ ├── Clamp.js │ ├── DegToRad.js │ ├── Difference.js │ ├── Euler.js │ ├── Factorial.js │ ├── FloatBetween.js │ ├── FloorTo.js │ ├── FromPercent.js │ ├── GetSpeed.js │ ├── IsEven.js │ ├── IsEvenStrict.js │ ├── Linear.js │ ├── LinearXY.js │ ├── Matrix3.js │ ├── Matrix4.js │ ├── MaxAdd.js │ ├── Median.js │ ├── MinSub.js │ ├── Percent.js │ ├── Quaternion.js │ ├── RadToDeg.js │ ├── RandomXY.js │ ├── RandomXYZ.js │ ├── RandomXYZW.js │ ├── Rotate.js │ ├── RotateAround.js │ ├── RotateAroundDistance.js │ ├── RotateTo.js │ ├── RotateVec3.js │ ├── RoundAwayFromZero.js │ ├── RoundTo.js │ ├── SinCosTableGenerator.js │ ├── SmoothStep.js │ ├── SmootherStep.js │ ├── ToXY.js │ ├── TransformXY.js │ ├── Vector2.js │ ├── Vector3.js │ ├── Vector4.js │ ├── Within.js │ ├── Wrap.js │ ├── angle │ │ ├── Between.js │ │ ├── BetweenPoints.js │ │ ├── BetweenPointsY.js │ │ ├── BetweenY.js │ │ ├── CounterClockwise.js │ │ ├── GetClockwiseDistance.js │ │ ├── GetCounterClockwiseDistance.js │ │ ├── GetShortestDistance.js │ │ ├── Normalize.js │ │ ├── Random.js │ │ ├── RandomDegrees.js │ │ ├── Reverse.js │ │ ├── RotateTo.js │ │ ├── ShortestBetween.js │ │ ├── Wrap.js │ │ ├── WrapDegrees.js │ │ └── index.js │ ├── const.js │ ├── distance │ │ ├── DistanceBetween.js │ │ ├── DistanceBetweenPoints.js │ │ ├── DistanceBetweenPointsSquared.js │ │ ├── DistanceChebyshev.js │ │ ├── DistancePower.js │ │ ├── DistanceSnake.js │ │ ├── DistanceSquared.js │ │ └── index.js │ ├── easing │ │ ├── EaseMap.js │ │ ├── back │ │ │ ├── In.js │ │ │ ├── InOut.js │ │ │ ├── Out.js │ │ │ └── index.js │ │ ├── bounce │ │ │ ├── In.js │ │ │ ├── InOut.js │ │ │ ├── Out.js │ │ │ └── index.js │ │ ├── circular │ │ │ ├── In.js │ │ │ ├── InOut.js │ │ │ ├── Out.js │ │ │ └── index.js │ │ ├── cubic │ │ │ ├── In.js │ │ │ ├── InOut.js │ │ │ ├── Out.js │ │ │ └── index.js │ │ ├── elastic │ │ │ ├── In.js │ │ │ ├── InOut.js │ │ │ ├── Out.js │ │ │ └── index.js │ │ ├── expo │ │ │ ├── In.js │ │ │ ├── InOut.js │ │ │ ├── Out.js │ │ │ └── index.js │ │ ├── index.js │ │ ├── linear │ │ │ ├── Linear.js │ │ │ └── index.js │ │ ├── quadratic │ │ │ ├── In.js │ │ │ ├── InOut.js │ │ │ ├── Out.js │ │ │ └── index.js │ │ ├── quartic │ │ │ ├── In.js │ │ │ ├── InOut.js │ │ │ ├── Out.js │ │ │ └── index.js │ │ ├── quintic │ │ │ ├── In.js │ │ │ ├── InOut.js │ │ │ ├── Out.js │ │ │ └── index.js │ │ ├── sine │ │ │ ├── In.js │ │ │ ├── InOut.js │ │ │ ├── Out.js │ │ │ └── index.js │ │ └── stepped │ │ │ ├── Stepped.js │ │ │ └── index.js │ ├── fuzzy │ │ ├── Ceil.js │ │ ├── Equal.js │ │ ├── Floor.js │ │ ├── GreaterThan.js │ │ ├── LessThan.js │ │ └── index.js │ ├── index.js │ ├── interpolation │ │ ├── BezierInterpolation.js │ │ ├── CatmullRomInterpolation.js │ │ ├── CubicBezierInterpolation.js │ │ ├── LinearInterpolation.js │ │ ├── QuadraticBezierInterpolation.js │ │ ├── SmoothStepInterpolation.js │ │ ├── SmootherStepInterpolation.js │ │ └── index.js │ ├── pow2 │ │ ├── GetPowerOfTwo.js │ │ ├── IsSizePowerOfTwo.js │ │ ├── IsValuePowerOfTwo.js │ │ └── index.js │ ├── random-data-generator │ │ └── RandomDataGenerator.js │ ├── snap │ │ ├── SnapCeil.js │ │ ├── SnapFloor.js │ │ ├── SnapTo.js │ │ └── index.js │ └── typedefs │ │ ├── RectangleLike.js │ │ ├── SinCosTable.js │ │ ├── Vector2Like.js │ │ ├── Vector3Like.js │ │ ├── Vector4Like.js │ │ └── index.js ├── phaser-arcade-physics.js ├── phaser-core.js ├── phaser-esm.js ├── phaser-ie9.js ├── phaser.js ├── physics │ ├── arcade │ │ ├── ArcadeImage.js │ │ ├── ArcadePhysics.js │ │ ├── ArcadeSprite.js │ │ ├── Body.js │ │ ├── Collider.js │ │ ├── Factory.js │ │ ├── GetCollidesWith.js │ │ ├── GetOverlapX.js │ │ ├── GetOverlapY.js │ │ ├── PhysicsGroup.js │ │ ├── ProcessX.js │ │ ├── ProcessY.js │ │ ├── SeparateX.js │ │ ├── SeparateY.js │ │ ├── SetCollisionObject.js │ │ ├── StaticBody.js │ │ ├── StaticPhysicsGroup.js │ │ ├── World.js │ │ ├── components │ │ │ ├── Acceleration.js │ │ │ ├── Angular.js │ │ │ ├── Bounce.js │ │ │ ├── Collision.js │ │ │ ├── Debug.js │ │ │ ├── Drag.js │ │ │ ├── Enable.js │ │ │ ├── Friction.js │ │ │ ├── Gravity.js │ │ │ ├── Immovable.js │ │ │ ├── Mass.js │ │ │ ├── OverlapCirc.js │ │ │ ├── OverlapRect.js │ │ │ ├── Pushable.js │ │ │ ├── Size.js │ │ │ ├── Velocity.js │ │ │ └── index.js │ │ ├── const.js │ │ ├── events │ │ │ ├── COLLIDE_EVENT.js │ │ │ ├── OVERLAP_EVENT.js │ │ │ ├── PAUSE_EVENT.js │ │ │ ├── RESUME_EVENT.js │ │ │ ├── TILE_COLLIDE_EVENT.js │ │ │ ├── TILE_OVERLAP_EVENT.js │ │ │ ├── WORLD_BOUNDS_EVENT.js │ │ │ ├── WORLD_STEP_EVENT.js │ │ │ └── index.js │ │ ├── index.js │ │ ├── tilemap │ │ │ ├── ProcessTileCallbacks.js │ │ │ ├── ProcessTileSeparationX.js │ │ │ ├── ProcessTileSeparationY.js │ │ │ ├── SeparateTile.js │ │ │ ├── TileCheckX.js │ │ │ ├── TileCheckY.js │ │ │ ├── TileIntersectsBody.js │ │ │ └── index.js │ │ └── typedefs │ │ │ ├── ArcadeBodyBounds.js │ │ │ ├── ArcadeBodyCollision.js │ │ │ ├── ArcadeCollider.js │ │ │ ├── ArcadeColliderType.js │ │ │ ├── ArcadePhysicsCallback.js │ │ │ ├── ArcadeWorldConfig.js │ │ │ ├── ArcadeWorldDefaults.js │ │ │ ├── ArcadeWorldTreeMinMax.js │ │ │ ├── CheckCollisionObject.js │ │ │ ├── GameObjectWithBody.js │ │ │ ├── GameObjectWithDynamicBody.js │ │ │ ├── GameObjectWithStaticBody.js │ │ │ ├── ImageWithDynamicBody.js │ │ │ ├── ImageWithStaticBody.js │ │ │ ├── PhysicsGroupConfig.js │ │ │ ├── PhysicsGroupDefaults.js │ │ │ ├── SpriteWithDynamicBody.js │ │ │ ├── SpriteWithStaticBody.js │ │ │ └── index.js │ ├── index.js │ └── matter-js │ │ ├── BodyBounds.js │ │ ├── CustomMain.js │ │ ├── Factory.js │ │ ├── MatterGameObject.js │ │ ├── MatterImage.js │ │ ├── MatterPhysics.js │ │ ├── MatterSprite.js │ │ ├── MatterTileBody.js │ │ ├── PhysicsEditorParser.js │ │ ├── PhysicsJSONParser.js │ │ ├── PointerConstraint.js │ │ ├── World.js │ │ ├── components │ │ ├── Bounce.js │ │ ├── Collision.js │ │ ├── Force.js │ │ ├── Friction.js │ │ ├── Gravity.js │ │ ├── Mass.js │ │ ├── Sensor.js │ │ ├── SetBody.js │ │ ├── Sleep.js │ │ ├── Static.js │ │ ├── Transform.js │ │ ├── Velocity.js │ │ └── index.js │ │ ├── events │ │ ├── AFTER_ADD_EVENT.js │ │ ├── AFTER_REMOVE_EVENT.js │ │ ├── AFTER_UPDATE_EVENT.js │ │ ├── BEFORE_ADD_EVENT.js │ │ ├── BEFORE_REMOVE_EVENT.js │ │ ├── BEFORE_UPDATE_EVENT.js │ │ ├── COLLISION_ACTIVE_EVENT.js │ │ ├── COLLISION_END_EVENT.js │ │ ├── COLLISION_START_EVENT.js │ │ ├── DRAG_END_EVENT.js │ │ ├── DRAG_EVENT.js │ │ ├── DRAG_START_EVENT.js │ │ ├── PAUSE_EVENT.js │ │ ├── RESUME_EVENT.js │ │ ├── SLEEP_END_EVENT.js │ │ ├── SLEEP_START_EVENT.js │ │ └── index.js │ │ ├── index.js │ │ ├── lib │ │ ├── body │ │ │ ├── Body.js │ │ │ ├── Composite.js │ │ │ └── World.js │ │ ├── collision │ │ │ ├── Collision.js │ │ │ ├── Contact.js │ │ │ ├── Detector.js │ │ │ ├── Pair.js │ │ │ ├── Pairs.js │ │ │ ├── Query.js │ │ │ └── Resolver.js │ │ ├── constraint │ │ │ ├── Constraint.js │ │ │ └── MouseConstraint.js │ │ ├── core │ │ │ ├── Common.js │ │ │ ├── Engine.js │ │ │ ├── Events.js │ │ │ ├── Matter.js │ │ │ ├── Plugin.js │ │ │ ├── Runner.js │ │ │ └── Sleeping.js │ │ ├── factory │ │ │ ├── Bodies.js │ │ │ └── Composites.js │ │ ├── geometry │ │ │ ├── Axes.js │ │ │ ├── Bounds.js │ │ │ ├── Svg.js │ │ │ ├── Vector.js │ │ │ └── Vertices.js │ │ ├── license.js │ │ ├── plugins │ │ │ ├── MatterAttractors.js │ │ │ ├── MatterCollisionEvents.js │ │ │ └── MatterWrap.js │ │ └── render │ │ │ └── Render.js │ │ ├── poly-decomp │ │ └── index.js │ │ └── typedefs │ │ ├── MatterBody.js │ │ ├── MatterBodyConfig.js │ │ ├── MatterBodyRenderConfig.js │ │ ├── MatterBodyTileOptions.js │ │ ├── MatterChamferConfig.js │ │ ├── MatterCollisionData.js │ │ ├── MatterCollisionFilter.js │ │ ├── MatterCollisionPair.js │ │ ├── MatterConstraintConfig.js │ │ ├── MatterConstraintRenderConfig.js │ │ ├── MatterDebugConfig.js │ │ ├── MatterRunnerConfig.js │ │ ├── MatterSetBodyConfig.js │ │ ├── MatterTileOptions.js │ │ ├── MatterWalls.js │ │ ├── MatterWorldConfig.js │ │ └── index.js ├── plugins │ ├── BasePlugin.js │ ├── DefaultPlugins.js │ ├── PluginCache.js │ ├── PluginManager.js │ ├── ScenePlugin.js │ ├── index.js │ └── typedefs │ │ ├── CorePluginContainer.js │ │ ├── CustomPluginContainer.js │ │ ├── GlobalPlugin.js │ │ └── index.js ├── polyfills │ ├── Array.forEach.js │ ├── Array.isArray.js │ ├── AudioContextMonkeyPatch.js │ ├── Math.trunc.js │ ├── Uint32Array.js │ ├── console.js │ ├── index.js │ ├── performance.now.js │ ├── requestAnimationFrame.js │ └── requestVideoFrame.js ├── renderer │ ├── BlendModes.js │ ├── ScaleModes.js │ ├── canvas │ │ ├── CanvasRenderer.js │ │ ├── index.js │ │ └── utils │ │ │ ├── GetBlendModes.js │ │ │ └── SetTransform.js │ ├── events │ │ ├── LOSE_WEBGL_EVENT.js │ │ ├── POST_RENDER_EVENT.js │ │ ├── PRE_RENDER_CLEAR_EVENT.js │ │ ├── PRE_RENDER_EVENT.js │ │ ├── RENDER_EVENT.js │ │ ├── RESIZE_EVENT.js │ │ ├── RESTORE_WEBGL_EVENT.js │ │ └── index.js │ ├── index.js │ ├── snapshot │ │ ├── CanvasSnapshot.js │ │ ├── WebGLSnapshot.js │ │ ├── index.js │ │ └── typedefs │ │ │ ├── SnapshotCallback.js │ │ │ ├── SnapshotState.js │ │ │ └── index.js │ └── webgl │ │ ├── PipelineManager.js │ │ ├── RenderTarget.js │ │ ├── Utils.js │ │ ├── WebGLPipeline.js │ │ ├── WebGLRenderer.js │ │ ├── WebGLShader.js │ │ ├── const.js │ │ ├── index.js │ │ ├── pipelines │ │ ├── BitmapMaskPipeline.js │ │ ├── FXPipeline.js │ │ ├── LightPipeline.js │ │ ├── MobilePipeline.js │ │ ├── MultiPipeline.js │ │ ├── PointLightPipeline.js │ │ ├── PostFXPipeline.js │ │ ├── PreFXPipeline.js │ │ ├── RopePipeline.js │ │ ├── SinglePipeline.js │ │ ├── UtilityPipeline.js │ │ ├── const.js │ │ ├── events │ │ │ ├── AFTER_FLUSH_EVENT.js │ │ │ ├── BEFORE_FLUSH_EVENT.js │ │ │ ├── BIND_EVENT.js │ │ │ ├── BOOT_EVENT.js │ │ │ ├── DESTROY_EVENT.js │ │ │ ├── REBIND_EVENT.js │ │ │ ├── RESIZE_EVENT.js │ │ │ └── index.js │ │ ├── fx │ │ │ ├── BarrelFXPipeline.js │ │ │ ├── BloomFXPipeline.js │ │ │ ├── BlurFXPipeline.js │ │ │ ├── BokehFXPipeline.js │ │ │ ├── CircleFXPipeline.js │ │ │ ├── ColorMatrixFXPipeline.js │ │ │ ├── DisplacementFXPipeline.js │ │ │ ├── GlowFXPipeline.js │ │ │ ├── GradientFXPipeline.js │ │ │ ├── PixelateFXPipeline.js │ │ │ ├── ShadowFXPipeline.js │ │ │ ├── ShineFXPipeline.js │ │ │ ├── VignetteFXPipeline.js │ │ │ ├── WipeFXPipeline.js │ │ │ └── index.js │ │ └── index.js │ │ ├── shaders │ │ ├── AddBlend-frag.js │ │ ├── BitmapMask-frag.js │ │ ├── BitmapMask-vert.js │ │ ├── ColorMatrix-frag.js │ │ ├── Copy-frag.js │ │ ├── FXBarrel-frag.js │ │ ├── FXBloom-frag.js │ │ ├── FXBlurHigh-frag.js │ │ ├── FXBlurLow-frag.js │ │ ├── FXBlurMed-frag.js │ │ ├── FXBokeh-frag.js │ │ ├── FXCircle-frag.js │ │ ├── FXDisplacement-frag.js │ │ ├── FXGlow-frag.js │ │ ├── FXGradient-frag.js │ │ ├── FXPixelate-frag.js │ │ ├── FXShadow-frag.js │ │ ├── FXShine-frag.js │ │ ├── FXVignette-frag.js │ │ ├── FXWipe-frag.js │ │ ├── Light-frag.js │ │ ├── LinearBlend-frag.js │ │ ├── Mesh-frag.js │ │ ├── Mesh-vert.js │ │ ├── Mobile-frag.js │ │ ├── Mobile-vert.js │ │ ├── Multi-frag.js │ │ ├── Multi-vert.js │ │ ├── PointLight-frag.js │ │ ├── PointLight-vert.js │ │ ├── PostFX-frag.js │ │ ├── Quad-vert.js │ │ ├── Single-frag.js │ │ ├── Single-vert.js │ │ ├── index.js │ │ └── src │ │ │ ├── AddBlend.frag │ │ │ ├── BitmapMask.frag │ │ │ ├── BitmapMask.vert │ │ │ ├── ColorMatrix.frag │ │ │ ├── Copy.frag │ │ │ ├── FXBarrel.frag │ │ │ ├── FXBloom.frag │ │ │ ├── FXBlurHigh.frag │ │ │ ├── FXBlurLow.frag │ │ │ ├── FXBlurMed.frag │ │ │ ├── FXBokeh.frag │ │ │ ├── FXCircle.frag │ │ │ ├── FXDisplacement.frag │ │ │ ├── FXGlow.frag │ │ │ ├── FXGradient.frag │ │ │ ├── FXPixelate.frag │ │ │ ├── FXShadow.frag │ │ │ ├── FXShine.frag │ │ │ ├── FXVignette.frag │ │ │ ├── FXWipe.frag │ │ │ ├── Light.frag │ │ │ ├── LinearBlend.frag │ │ │ ├── Mesh.frag │ │ │ ├── Mesh.vert │ │ │ ├── Mobile.frag │ │ │ ├── Mobile.vert │ │ │ ├── Multi.frag │ │ │ ├── Multi.vert │ │ │ ├── PointLight.frag │ │ │ ├── PointLight.vert │ │ │ ├── PostFX.frag │ │ │ ├── Quad.vert │ │ │ ├── Single.frag │ │ │ └── Single.vert │ │ ├── typedefs │ │ ├── RenderTargetConfig.js │ │ ├── WebGLConst.js │ │ ├── WebGLPipelineAttribute.js │ │ ├── WebGLPipelineAttributeConfig.js │ │ ├── WebGLPipelineBatchEntry.js │ │ ├── WebGLPipelineConfig.js │ │ ├── WebGLPipelineShaderConfig.js │ │ ├── WebGLPipelineUniformsConfig.js │ │ ├── WebGLTextureCompression.js │ │ └── index.js │ │ └── wrappers │ │ ├── WebGLAttribLocationWrapper.js │ │ ├── WebGLBufferWrapper.js │ │ ├── WebGLFramebufferWrapper.js │ │ ├── WebGLProgramWrapper.js │ │ ├── WebGLTextureWrapper.js │ │ ├── WebGLUniformLocationWrapper.js │ │ └── index.js ├── scale │ ├── ScaleManager.js │ ├── const │ │ ├── CENTER_CONST.js │ │ ├── ORIENTATION_CONST.js │ │ ├── SCALE_MODE_CONST.js │ │ ├── ZOOM_CONST.js │ │ └── index.js │ ├── events │ │ ├── ENTER_FULLSCREEN_EVENT.js │ │ ├── FULLSCREEN_FAILED_EVENT.js │ │ ├── FULLSCREEN_UNSUPPORTED_EVENT.js │ │ ├── LEAVE_FULLSCREEN_EVENT.js │ │ ├── ORIENTATION_CHANGE_EVENT.js │ │ ├── RESIZE_EVENT.js │ │ └── index.js │ └── index.js ├── scene │ ├── GetPhysicsPlugins.js │ ├── GetScenePlugins.js │ ├── InjectionMap.js │ ├── Scene.js │ ├── SceneManager.js │ ├── ScenePlugin.js │ ├── Settings.js │ ├── Systems.js │ ├── const.js │ ├── events │ │ ├── ADDED_TO_SCENE_EVENT.js │ │ ├── BOOT_EVENT.js │ │ ├── CREATE_EVENT.js │ │ ├── DESTROY_EVENT.js │ │ ├── PAUSE_EVENT.js │ │ ├── POST_UPDATE_EVENT.js │ │ ├── PRE_RENDER_EVENT.js │ │ ├── PRE_UPDATE_EVENT.js │ │ ├── READY_EVENT.js │ │ ├── REMOVED_FROM_SCENE_EVENT.js │ │ ├── RENDER_EVENT.js │ │ ├── RESUME_EVENT.js │ │ ├── SHUTDOWN_EVENT.js │ │ ├── SLEEP_EVENT.js │ │ ├── START_EVENT.js │ │ ├── TRANSITION_COMPLETE_EVENT.js │ │ ├── TRANSITION_INIT_EVENT.js │ │ ├── TRANSITION_OUT_EVENT.js │ │ ├── TRANSITION_START_EVENT.js │ │ ├── TRANSITION_WAKE_EVENT.js │ │ ├── UPDATE_EVENT.js │ │ ├── WAKE_EVENT.js │ │ └── index.js │ ├── index.js │ └── typedefs │ │ ├── CreateSceneFromObjectConfig.js │ │ ├── SceneCreateCallback.js │ │ ├── SceneInitCallback.js │ │ ├── ScenePreloadCallback.js │ │ ├── SceneTransitionConfig.js │ │ ├── SceneTransitionStartCallback.js │ │ ├── SceneType.js │ │ ├── SceneUpdateCallback.js │ │ ├── SettingsConfig.js │ │ ├── SettingsObject.js │ │ └── index.js ├── sound │ ├── BaseSound.js │ ├── BaseSoundManager.js │ ├── SoundManagerCreator.js │ ├── events │ │ ├── COMPLETE_EVENT.js │ │ ├── DECODED_ALL_EVENT.js │ │ ├── DECODED_EVENT.js │ │ ├── DESTROY_EVENT.js │ │ ├── DETUNE_EVENT.js │ │ ├── GLOBAL_DETUNE_EVENT.js │ │ ├── GLOBAL_MUTE_EVENT.js │ │ ├── GLOBAL_RATE_EVENT.js │ │ ├── GLOBAL_VOLUME_EVENT.js │ │ ├── LOOPED_EVENT.js │ │ ├── LOOP_EVENT.js │ │ ├── MUTE_EVENT.js │ │ ├── PAN_EVENT.js │ │ ├── PAUSE_ALL_EVENT.js │ │ ├── PAUSE_EVENT.js │ │ ├── PLAY_EVENT.js │ │ ├── RATE_EVENT.js │ │ ├── RESUME_ALL_EVENT.js │ │ ├── RESUME_EVENT.js │ │ ├── SEEK_EVENT.js │ │ ├── STOP_ALL_EVENT.js │ │ ├── STOP_EVENT.js │ │ ├── UNLOCKED_EVENT.js │ │ ├── VOLUME_EVENT.js │ │ └── index.js │ ├── html5 │ │ ├── HTML5AudioSound.js │ │ └── HTML5AudioSoundManager.js │ ├── index.js │ ├── noaudio │ │ ├── NoAudioSound.js │ │ └── NoAudioSoundManager.js │ ├── typedefs │ │ ├── AudioSpriteSound.js │ │ ├── DecodeAudioConfig.js │ │ ├── EachActiveSoundCallback.js │ │ ├── SoundConfig.js │ │ ├── SoundMarker.js │ │ ├── SpatialSoundConfig.js │ │ ├── WebAudioDecodeEntry.js │ │ └── index.js │ └── webaudio │ │ ├── WebAudioSound.js │ │ └── WebAudioSoundManager.js ├── structs │ ├── List.js │ ├── Map.js │ ├── ProcessQueue.js │ ├── RTree.js │ ├── Set.js │ ├── Size.js │ ├── events │ │ ├── PROCESS_QUEUE_ADD_EVENT.js │ │ ├── PROCESS_QUEUE_REMOVE_EVENT.js │ │ └── index.js │ └── index.js ├── textures │ ├── CanvasTexture.js │ ├── DynamicTexture.js │ ├── Frame.js │ ├── Texture.js │ ├── TextureManager.js │ ├── TextureSource.js │ ├── const.js │ ├── events │ │ ├── ADD_EVENT.js │ │ ├── ADD_KEY_EVENT.js │ │ ├── ERROR_EVENT.js │ │ ├── LOAD_EVENT.js │ │ ├── READY_EVENT.js │ │ ├── REMOVE_EVENT.js │ │ ├── REMOVE_KEY_EVENT.js │ │ └── index.js │ ├── index.js │ ├── parsers │ │ ├── AtlasXML.js │ │ ├── Canvas.js │ │ ├── Image.js │ │ ├── JSONArray.js │ │ ├── JSONHash.js │ │ ├── KTXParser.js │ │ ├── PVRParser.js │ │ ├── SpriteSheet.js │ │ ├── SpriteSheetFromAtlas.js │ │ ├── UnityYAML.js │ │ ├── VerifyCompressedTexture.js │ │ └── index.js │ └── typedefs │ │ ├── CompressedTextureData.js │ │ ├── MipmapType.js │ │ ├── PixelConfig.js │ │ ├── SpriteSheetConfig.js │ │ ├── SpriteSheetFromAtlasConfig.js │ │ ├── StampConfig.js │ │ └── index.js ├── tilemaps │ ├── Formats.js │ ├── ImageCollection.js │ ├── ObjectHelper.js │ ├── ParseToTilemap.js │ ├── Tile.js │ ├── Tilemap.js │ ├── TilemapCreator.js │ ├── TilemapFactory.js │ ├── TilemapLayer.js │ ├── TilemapLayerCanvasRenderer.js │ ├── TilemapLayerRender.js │ ├── TilemapLayerWebGLRenderer.js │ ├── Tileset.js │ ├── components │ │ ├── CalculateFacesAt.js │ │ ├── CalculateFacesWithin.js │ │ ├── CheckIsoBounds.js │ │ ├── Copy.js │ │ ├── CreateFromTiles.js │ │ ├── CullBounds.js │ │ ├── CullTiles.js │ │ ├── Fill.js │ │ ├── FilterTiles.js │ │ ├── FindByIndex.js │ │ ├── FindTile.js │ │ ├── ForEachTile.js │ │ ├── GetCullTilesFunction.js │ │ ├── GetTileAt.js │ │ ├── GetTileAtWorldXY.js │ │ ├── GetTileCorners.js │ │ ├── GetTileCornersFunction.js │ │ ├── GetTileToWorldXFunction.js │ │ ├── GetTileToWorldXYFunction.js │ │ ├── GetTileToWorldYFunction.js │ │ ├── GetTilesWithin.js │ │ ├── GetTilesWithinShape.js │ │ ├── GetTilesWithinWorldXY.js │ │ ├── GetWorldToTileXFunction.js │ │ ├── GetWorldToTileXYFunction.js │ │ ├── GetWorldToTileYFunction.js │ │ ├── HasTileAt.js │ │ ├── HasTileAtWorldXY.js │ │ ├── HexagonalCullBounds.js │ │ ├── HexagonalCullTiles.js │ │ ├── HexagonalGetTileCorners.js │ │ ├── HexagonalTileToWorldXY.js │ │ ├── HexagonalWorldToTileXY.js │ │ ├── IsInLayerBounds.js │ │ ├── IsometricCullTiles.js │ │ ├── IsometricTileToWorldXY.js │ │ ├── IsometricWorldToTileXY.js │ │ ├── PutTileAt.js │ │ ├── PutTileAtWorldXY.js │ │ ├── PutTilesAt.js │ │ ├── Randomize.js │ │ ├── RemoveTileAt.js │ │ ├── RemoveTileAtWorldXY.js │ │ ├── RenderDebug.js │ │ ├── ReplaceByIndex.js │ │ ├── RunCull.js │ │ ├── SetCollision.js │ │ ├── SetCollisionBetween.js │ │ ├── SetCollisionByExclusion.js │ │ ├── SetCollisionByProperty.js │ │ ├── SetCollisionFromCollisionGroup.js │ │ ├── SetLayerCollisionIndex.js │ │ ├── SetTileCollision.js │ │ ├── SetTileIndexCallback.js │ │ ├── SetTileLocationCallback.js │ │ ├── Shuffle.js │ │ ├── StaggeredCullBounds.js │ │ ├── StaggeredCullTiles.js │ │ ├── StaggeredTileToWorldXY.js │ │ ├── StaggeredTileToWorldY.js │ │ ├── StaggeredWorldToTileXY.js │ │ ├── StaggeredWorldToTileY.js │ │ ├── SwapByIndex.js │ │ ├── TileToWorldX.js │ │ ├── TileToWorldXY.js │ │ ├── TileToWorldY.js │ │ ├── WeightedRandomize.js │ │ ├── WorldToTileX.js │ │ ├── WorldToTileXY.js │ │ ├── WorldToTileY.js │ │ └── index.js │ ├── const │ │ ├── ORIENTATION_CONST.js │ │ └── index.js │ ├── index.js │ ├── mapdata │ │ ├── LayerData.js │ │ ├── MapData.js │ │ └── ObjectLayer.js │ ├── parsers │ │ ├── FromOrientationString.js │ │ ├── Parse.js │ │ ├── Parse2DArray.js │ │ ├── ParseCSV.js │ │ ├── impact │ │ │ ├── ParseTileLayers.js │ │ │ ├── ParseTilesets.js │ │ │ ├── ParseWeltmeister.js │ │ │ └── index.js │ │ ├── index.js │ │ └── tiled │ │ │ ├── AssignTileProperties.js │ │ │ ├── Base64Decode.js │ │ │ ├── BuildTilesetIndex.js │ │ │ ├── CreateGroupLayer.js │ │ │ ├── ParseGID.js │ │ │ ├── ParseImageLayers.js │ │ │ ├── ParseJSONTiled.js │ │ │ ├── ParseObject.js │ │ │ ├── ParseObjectLayers.js │ │ │ ├── ParseTileLayers.js │ │ │ ├── ParseTilesets.js │ │ │ ├── ParseWangsets.js │ │ │ └── index.js │ └── typedefs │ │ ├── CreateFromObjectLayerConfig.js │ │ ├── CreateFromObjectsClassTypeConstructor.js │ │ ├── DebugStyleOptions.js │ │ ├── FilteringOptions.js │ │ ├── GIDData.js │ │ ├── LayerDataConfig.js │ │ ├── MapDataConfig.js │ │ ├── ObjectLayerConfig.js │ │ ├── StyleConfig.js │ │ ├── TiledObject.js │ │ ├── TilemapConfig.js │ │ └── index.js ├── time │ ├── Clock.js │ ├── Timeline.js │ ├── TimerEvent.js │ ├── events │ │ ├── COMPLETE_EVENT.js │ │ └── index.js │ ├── index.js │ └── typedefs │ │ ├── TimelineEvent.js │ │ ├── TimelineEventConfig.js │ │ ├── TimerEventConfig.js │ │ └── index.js ├── tweens │ ├── TweenManager.js │ ├── builders │ │ ├── GetBoolean.js │ │ ├── GetEaseFunction.js │ │ ├── GetInterpolationFunction.js │ │ ├── GetNewValue.js │ │ ├── GetProps.js │ │ ├── GetTargets.js │ │ ├── GetValueOp.js │ │ ├── NumberTweenBuilder.js │ │ ├── StaggerBuilder.js │ │ ├── TweenBuilder.js │ │ ├── TweenChainBuilder.js │ │ └── index.js │ ├── events │ │ ├── TWEEN_ACTIVE_EVENT.js │ │ ├── TWEEN_COMPLETE_EVENT.js │ │ ├── TWEEN_LOOP_EVENT.js │ │ ├── TWEEN_PAUSE_EVENT.js │ │ ├── TWEEN_REPEAT_EVENT.js │ │ ├── TWEEN_RESUME_EVENT.js │ │ ├── TWEEN_START_EVENT.js │ │ ├── TWEEN_STOP_EVENT.js │ │ ├── TWEEN_UPDATE_EVENT.js │ │ ├── TWEEN_YOYO_EVENT.js │ │ └── index.js │ ├── index.js │ ├── tween │ │ ├── BaseTween.js │ │ ├── BaseTweenData.js │ │ ├── Defaults.js │ │ ├── ReservedProps.js │ │ ├── Tween.js │ │ ├── TweenChain.js │ │ ├── TweenData.js │ │ ├── TweenFrameData.js │ │ └── const.js │ └── typedefs │ │ ├── Event.js │ │ ├── GetActiveCallback.js │ │ ├── GetEndCallback.js │ │ ├── GetStartCallback.js │ │ ├── NumberTweenBuilderConfig.js │ │ ├── StaggerConfig.js │ │ ├── TweenBuilderConfig.js │ │ ├── TweenCallbackTypes.js │ │ ├── TweenCallbacks.js │ │ ├── TweenChainBuilderConfig.js │ │ ├── TweenDataConfig.js │ │ ├── TweenDataGenConfig.js │ │ ├── TweenFrameDataConfig.js │ │ ├── TweenOnActiveCallback.js │ │ ├── TweenOnCompleteCallback.js │ │ ├── TweenOnLoopCallback.js │ │ ├── TweenOnPauseCallback.js │ │ ├── TweenOnRepeatCallback.js │ │ ├── TweenOnResumeCallback.js │ │ ├── TweenOnStartCallback.js │ │ ├── TweenOnStopCallback.js │ │ ├── TweenOnUpdateCallback.js │ │ ├── TweenOnYoyoCallback.js │ │ ├── TweenPropConfig.js │ │ └── index.js └── utils │ ├── Class.js │ ├── NOOP.js │ ├── NULL.js │ ├── array │ ├── Add.js │ ├── AddAt.js │ ├── BringToTop.js │ ├── CountAllMatching.js │ ├── Each.js │ ├── EachInRange.js │ ├── FindClosestInSorted.js │ ├── Flatten.js │ ├── GetAll.js │ ├── GetFirst.js │ ├── GetRandom.js │ ├── MoveAbove.js │ ├── MoveBelow.js │ ├── MoveDown.js │ ├── MoveTo.js │ ├── MoveUp.js │ ├── NumberArray.js │ ├── NumberArrayStep.js │ ├── QuickSelect.js │ ├── Range.js │ ├── Remove.js │ ├── RemoveAt.js │ ├── RemoveBetween.js │ ├── RemoveRandomElement.js │ ├── Replace.js │ ├── RotateLeft.js │ ├── RotateRight.js │ ├── SafeRange.js │ ├── SendToBack.js │ ├── SetAll.js │ ├── Shuffle.js │ ├── SortByDigits.js │ ├── SpliceOne.js │ ├── StableSort.js │ ├── Swap.js │ ├── index.js │ └── matrix │ │ ├── CheckMatrix.js │ │ ├── MatrixToString.js │ │ ├── ReverseColumns.js │ │ ├── ReverseRows.js │ │ ├── Rotate180.js │ │ ├── RotateLeft.js │ │ ├── RotateMatrix.js │ │ ├── RotateRight.js │ │ ├── TranslateMatrix.js │ │ ├── TransposeMatrix.js │ │ └── index.js │ ├── base64 │ ├── ArrayBufferToBase64.js │ ├── Base64ToArrayBuffer.js │ └── index.js │ ├── index.js │ ├── object │ ├── Clone.js │ ├── DeepCopy.js │ ├── Extend.js │ ├── GetAdvancedValue.js │ ├── GetFastValue.js │ ├── GetMinMaxValue.js │ ├── GetValue.js │ ├── HasAll.js │ ├── HasAny.js │ ├── HasValue.js │ ├── IsPlainObject.js │ ├── Merge.js │ ├── MergeRight.js │ ├── Pick.js │ ├── SetValue.js │ └── index.js │ └── string │ ├── Format.js │ ├── Pad.js │ ├── RemoveAt.js │ ├── Reverse.js │ ├── UUID.js │ ├── UppercaseFirst.js │ └── index.js └── types ├── SpineContainer.d.ts ├── SpineFile.d.ts ├── SpineGameObject.d.ts ├── SpinePlugin.d.ts ├── index.d.ts ├── matter.d.ts ├── phaser.d.ts ├── phaser.json ├── spine-canvas.d.ts ├── spine-webgl.d.ts └── spine.d.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/.github/no-response.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/README.md -------------------------------------------------------------------------------- /changelog/3.1/CHANGELOG-v3.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.1/CHANGELOG-v3.1.md -------------------------------------------------------------------------------- /changelog/3.10/CHANGELOG-v3.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.10/CHANGELOG-v3.10.md -------------------------------------------------------------------------------- /changelog/3.11/CHANGELOG-v3.11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.11/CHANGELOG-v3.11.md -------------------------------------------------------------------------------- /changelog/3.12/CHANGELOG-v3.12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.12/CHANGELOG-v3.12.md -------------------------------------------------------------------------------- /changelog/3.13/CHANGELOG-v3.13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.13/CHANGELOG-v3.13.md -------------------------------------------------------------------------------- /changelog/3.14/CHANGELOG-v3.14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.14/CHANGELOG-v3.14.md -------------------------------------------------------------------------------- /changelog/3.15/CHANGELOG-v3.15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.15/CHANGELOG-v3.15.md -------------------------------------------------------------------------------- /changelog/3.16/CHANGELOG-v3.16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.16/CHANGELOG-v3.16.md -------------------------------------------------------------------------------- /changelog/3.17/CHANGELOG-v3.17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.17/CHANGELOG-v3.17.md -------------------------------------------------------------------------------- /changelog/3.18/CHANGELOG-v3.18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.18/CHANGELOG-v3.18.md -------------------------------------------------------------------------------- /changelog/3.19/CHANGELOG-v3.19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.19/CHANGELOG-v3.19.md -------------------------------------------------------------------------------- /changelog/3.2/CHANGELOG-v3.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.2/CHANGELOG-v3.2.md -------------------------------------------------------------------------------- /changelog/3.20/CHANGELOG-v3.20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.20/CHANGELOG-v3.20.md -------------------------------------------------------------------------------- /changelog/3.21/CHANGELOG-v3.21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.21/CHANGELOG-v3.21.md -------------------------------------------------------------------------------- /changelog/3.22/CHANGELOG-v3.22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.22/CHANGELOG-v3.22.md -------------------------------------------------------------------------------- /changelog/3.23/CHANGELOG-v3.23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.23/CHANGELOG-v3.23.md -------------------------------------------------------------------------------- /changelog/3.24/CHANGELOG-v3.24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.24/CHANGELOG-v3.24.md -------------------------------------------------------------------------------- /changelog/3.3/CHANGELOG-v3.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.3/CHANGELOG-v3.3.md -------------------------------------------------------------------------------- /changelog/3.4/CHANGELOG-v3.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.4/CHANGELOG-v3.4.md -------------------------------------------------------------------------------- /changelog/3.5/CHANGELOG-v3.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.5/CHANGELOG-v3.5.md -------------------------------------------------------------------------------- /changelog/3.50/CHANGELOG-v3.50.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.50/CHANGELOG-v3.50.md -------------------------------------------------------------------------------- /changelog/3.51/CHANGELOG-v3.51.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.51/CHANGELOG-v3.51.md -------------------------------------------------------------------------------- /changelog/3.52/CHANGELOG-v3.52.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.52/CHANGELOG-v3.52.md -------------------------------------------------------------------------------- /changelog/3.53/CHANGELOG-v3.53.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.53/CHANGELOG-v3.53.md -------------------------------------------------------------------------------- /changelog/3.54/CHANGELOG-v3.54.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.54/CHANGELOG-v3.54.md -------------------------------------------------------------------------------- /changelog/3.55/CHANGELOG-v3.55.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.55/CHANGELOG-v3.55.md -------------------------------------------------------------------------------- /changelog/3.6/CHANGELOG-v3.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.6/CHANGELOG-v3.6.md -------------------------------------------------------------------------------- /changelog/3.60/Animation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/Animation.md -------------------------------------------------------------------------------- /changelog/3.60/ArcadePhysics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/ArcadePhysics.md -------------------------------------------------------------------------------- /changelog/3.60/Build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/Build.md -------------------------------------------------------------------------------- /changelog/3.60/CHANGELOG-v3.60.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/CHANGELOG-v3.60.md -------------------------------------------------------------------------------- /changelog/3.60/Camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/Camera.md -------------------------------------------------------------------------------- /changelog/3.60/CanvasRenderer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/CanvasRenderer.md -------------------------------------------------------------------------------- /changelog/3.60/Colors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/Colors.md -------------------------------------------------------------------------------- /changelog/3.60/Container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/Container.md -------------------------------------------------------------------------------- /changelog/3.60/DynamicTextures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/DynamicTextures.md -------------------------------------------------------------------------------- /changelog/3.60/ESMSupport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/ESMSupport.md -------------------------------------------------------------------------------- /changelog/3.60/FX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/FX.md -------------------------------------------------------------------------------- /changelog/3.60/Game.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/Game.md -------------------------------------------------------------------------------- /changelog/3.60/GameObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/GameObject.md -------------------------------------------------------------------------------- /changelog/3.60/Geometry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/Geometry.md -------------------------------------------------------------------------------- /changelog/3.60/Input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/Input.md -------------------------------------------------------------------------------- /changelog/3.60/Loader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/Loader.md -------------------------------------------------------------------------------- /changelog/3.60/Masks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/Masks.md -------------------------------------------------------------------------------- /changelog/3.60/MatterPhysics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/MatterPhysics.md -------------------------------------------------------------------------------- /changelog/3.60/Mesh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/Mesh.md -------------------------------------------------------------------------------- /changelog/3.60/ParticleEmitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/ParticleEmitter.md -------------------------------------------------------------------------------- /changelog/3.60/PlaneGameObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/PlaneGameObject.md -------------------------------------------------------------------------------- /changelog/3.60/ScaleManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/ScaleManager.md -------------------------------------------------------------------------------- /changelog/3.60/Scene.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/Scene.md -------------------------------------------------------------------------------- /changelog/3.60/Sound.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/Sound.md -------------------------------------------------------------------------------- /changelog/3.60/SpatialSound.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/SpatialSound.md -------------------------------------------------------------------------------- /changelog/3.60/Spector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/Spector.md -------------------------------------------------------------------------------- /changelog/3.60/Spine3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/Spine3.md -------------------------------------------------------------------------------- /changelog/3.60/Spine4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/Spine4.md -------------------------------------------------------------------------------- /changelog/3.60/TextGameObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/TextGameObject.md -------------------------------------------------------------------------------- /changelog/3.60/TextureManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/TextureManager.md -------------------------------------------------------------------------------- /changelog/3.60/Tilemap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/Tilemap.md -------------------------------------------------------------------------------- /changelog/3.60/Timeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/Timeline.md -------------------------------------------------------------------------------- /changelog/3.60/Timestep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/Timestep.md -------------------------------------------------------------------------------- /changelog/3.60/TweenManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/TweenManager.md -------------------------------------------------------------------------------- /changelog/3.60/Utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/Utils.md -------------------------------------------------------------------------------- /changelog/3.60/VideoGameObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/VideoGameObject.md -------------------------------------------------------------------------------- /changelog/3.60/WebGLRenderer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/WebGLRenderer.md -------------------------------------------------------------------------------- /changelog/3.60/images/fx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/images/fx.png -------------------------------------------------------------------------------- /changelog/3.60/images/masks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/images/masks.png -------------------------------------------------------------------------------- /changelog/3.60/images/matter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/images/matter.png -------------------------------------------------------------------------------- /changelog/3.60/images/perf1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/images/perf1.png -------------------------------------------------------------------------------- /changelog/3.60/images/perf2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/images/perf2.png -------------------------------------------------------------------------------- /changelog/3.60/images/plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/images/plane.png -------------------------------------------------------------------------------- /changelog/3.60/images/spine4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/images/spine4.png -------------------------------------------------------------------------------- /changelog/3.60/images/tweens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.60/images/tweens.png -------------------------------------------------------------------------------- /changelog/3.7/CHANGELOG-v3.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.7/CHANGELOG-v3.7.md -------------------------------------------------------------------------------- /changelog/3.70/CHANGELOG-v3.70.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.70/CHANGELOG-v3.70.md -------------------------------------------------------------------------------- /changelog/3.8/CHANGELOG-v3.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.8/CHANGELOG-v3.8.md -------------------------------------------------------------------------------- /changelog/3.80/CHANGELOG-v3.80.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.80/CHANGELOG-v3.80.md -------------------------------------------------------------------------------- /changelog/3.85/CHANGELOG-v3.85.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.85/CHANGELOG-v3.85.md -------------------------------------------------------------------------------- /changelog/3.85/MatterAttractor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.85/MatterAttractor.md -------------------------------------------------------------------------------- /changelog/3.85/MatterJS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.85/MatterJS.md -------------------------------------------------------------------------------- /changelog/3.86/CHANGELOG-v3.86.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.86/CHANGELOG-v3.86.md -------------------------------------------------------------------------------- /changelog/3.87/CHANGELOG-v3.87.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.87/CHANGELOG-v3.87.md -------------------------------------------------------------------------------- /changelog/3.88/CHANGELOG-v3.88.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.88/CHANGELOG-v3.88.md -------------------------------------------------------------------------------- /changelog/3.9/CHANGELOG-v3.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.9/CHANGELOG-v3.9.md -------------------------------------------------------------------------------- /changelog/3.90/CHANGELOG-v3.90.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/changelog/3.90/CHANGELOG-v3.90.md -------------------------------------------------------------------------------- /config/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/config/webpack.config.js -------------------------------------------------------------------------------- /config/webpack.dist.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/config/webpack.dist.config.js -------------------------------------------------------------------------------- /config/webpack.fb.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/config/webpack.fb.config.js -------------------------------------------------------------------------------- /config/webpack.fb.dist.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/config/webpack.fb.dist.config.js -------------------------------------------------------------------------------- /dist/phaser-arcade-physics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/dist/phaser-arcade-physics.js -------------------------------------------------------------------------------- /dist/phaser-arcade-physics.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/dist/phaser-arcade-physics.min.js -------------------------------------------------------------------------------- /dist/phaser-ie9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/dist/phaser-ie9.js -------------------------------------------------------------------------------- /dist/phaser-ie9.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/dist/phaser-ie9.min.js -------------------------------------------------------------------------------- /dist/phaser.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/dist/phaser.esm.js -------------------------------------------------------------------------------- /dist/phaser.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/dist/phaser.esm.min.js -------------------------------------------------------------------------------- /dist/phaser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/dist/phaser.js -------------------------------------------------------------------------------- /dist/phaser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/dist/phaser.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/package.json -------------------------------------------------------------------------------- /plugins/camera3d/dist/camera3d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/camera3d/dist/camera3d.js -------------------------------------------------------------------------------- /plugins/camera3d/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/camera3d/readme.md -------------------------------------------------------------------------------- /plugins/camera3d/src/Camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/camera3d/src/Camera.js -------------------------------------------------------------------------------- /plugins/camera3d/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/camera3d/src/index.js -------------------------------------------------------------------------------- /plugins/fbinstant/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/fbinstant/readme.md -------------------------------------------------------------------------------- /plugins/fbinstant/src/Product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/fbinstant/src/Product.js -------------------------------------------------------------------------------- /plugins/fbinstant/src/Purchase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/fbinstant/src/Purchase.js -------------------------------------------------------------------------------- /plugins/impact/Body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/impact/Body.js -------------------------------------------------------------------------------- /plugins/impact/COLLIDES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/impact/COLLIDES.js -------------------------------------------------------------------------------- /plugins/impact/CollisionMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/impact/CollisionMap.js -------------------------------------------------------------------------------- /plugins/impact/DefaultDefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/impact/DefaultDefs.js -------------------------------------------------------------------------------- /plugins/impact/Factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/impact/Factory.js -------------------------------------------------------------------------------- /plugins/impact/GetVelocity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/impact/GetVelocity.js -------------------------------------------------------------------------------- /plugins/impact/ImpactBody.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/impact/ImpactBody.js -------------------------------------------------------------------------------- /plugins/impact/ImpactImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/impact/ImpactImage.js -------------------------------------------------------------------------------- /plugins/impact/ImpactPhysics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/impact/ImpactPhysics.js -------------------------------------------------------------------------------- /plugins/impact/ImpactSprite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/impact/ImpactSprite.js -------------------------------------------------------------------------------- /plugins/impact/SeparateX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/impact/SeparateX.js -------------------------------------------------------------------------------- /plugins/impact/SeparateY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/impact/SeparateY.js -------------------------------------------------------------------------------- /plugins/impact/Solver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/impact/Solver.js -------------------------------------------------------------------------------- /plugins/impact/TYPE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/impact/TYPE.js -------------------------------------------------------------------------------- /plugins/impact/UpdateMotion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/impact/UpdateMotion.js -------------------------------------------------------------------------------- /plugins/impact/World.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/impact/World.js -------------------------------------------------------------------------------- /plugins/impact/events/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/impact/events/index.js -------------------------------------------------------------------------------- /plugins/impact/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/impact/index.js -------------------------------------------------------------------------------- /plugins/impact/typedefs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/impact/typedefs/index.js -------------------------------------------------------------------------------- /plugins/layer3d/Layer3D.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/layer3d/Layer3D.js -------------------------------------------------------------------------------- /plugins/layer3d/Layer3DCamera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/layer3d/Layer3DCamera.js -------------------------------------------------------------------------------- /plugins/layer3d/Layer3DCreator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/layer3d/Layer3DCreator.js -------------------------------------------------------------------------------- /plugins/layer3d/Layer3DFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/layer3d/Layer3DFactory.js -------------------------------------------------------------------------------- /plugins/layer3d/Layer3DLight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/layer3d/Layer3DLight.js -------------------------------------------------------------------------------- /plugins/layer3d/Layer3DRender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/layer3d/Layer3DRender.js -------------------------------------------------------------------------------- /plugins/layer3d/MeshPipeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/layer3d/MeshPipeline.js -------------------------------------------------------------------------------- /plugins/spine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/spine/README.md -------------------------------------------------------------------------------- /plugins/spine/copy-to-examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/spine/copy-to-examples.js -------------------------------------------------------------------------------- /plugins/spine/dist/SpinePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/spine/dist/SpinePlugin.js -------------------------------------------------------------------------------- /plugins/spine/src/SpineFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/spine/src/SpineFile.js -------------------------------------------------------------------------------- /plugins/spine/src/SpinePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/spine/src/SpinePlugin.js -------------------------------------------------------------------------------- /plugins/spine/src/events/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/spine/src/events/index.js -------------------------------------------------------------------------------- /plugins/spine/tsconfig.both.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/spine/tsconfig.both.json -------------------------------------------------------------------------------- /plugins/spine/tsconfig.webgl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/spine/tsconfig.webgl.json -------------------------------------------------------------------------------- /plugins/spine4.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/spine4.1/README.md -------------------------------------------------------------------------------- /plugins/spine4.1/src/SpineFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/plugins/spine4.1/src/SpineFile.js -------------------------------------------------------------------------------- /scripts/bundle-shaders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/scripts/bundle-shaders.js -------------------------------------------------------------------------------- /scripts/copy-to-examples-fb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/scripts/copy-to-examples-fb.js -------------------------------------------------------------------------------- /scripts/copy-to-examples-watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/scripts/copy-to-examples-watch.js -------------------------------------------------------------------------------- /scripts/copy-to-examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/scripts/copy-to-examples.js -------------------------------------------------------------------------------- /scripts/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/scripts/help.js -------------------------------------------------------------------------------- /scripts/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/scripts/support.js -------------------------------------------------------------------------------- /scripts/tsgen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/scripts/tsgen/README.md -------------------------------------------------------------------------------- /scripts/tsgen/bin/Parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/scripts/tsgen/bin/Parser.js -------------------------------------------------------------------------------- /scripts/tsgen/bin/Parser.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/scripts/tsgen/bin/Parser.js.map -------------------------------------------------------------------------------- /scripts/tsgen/bin/publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/scripts/tsgen/bin/publish.js -------------------------------------------------------------------------------- /scripts/tsgen/bin/publish.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/scripts/tsgen/bin/publish.js.map -------------------------------------------------------------------------------- /scripts/tsgen/jsdoc-tsd.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/scripts/tsgen/jsdoc-tsd.conf.json -------------------------------------------------------------------------------- /scripts/tsgen/src/Parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/scripts/tsgen/src/Parser.ts -------------------------------------------------------------------------------- /scripts/tsgen/src/publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/scripts/tsgen/src/publish.ts -------------------------------------------------------------------------------- /scripts/tsgen/test/bin/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/scripts/tsgen/test/bin/game.js -------------------------------------------------------------------------------- /scripts/tsgen/test/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/tsgen/test/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/scripts/tsgen/test/src/game.ts -------------------------------------------------------------------------------- /scripts/tsgen/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/scripts/tsgen/test/tsconfig.json -------------------------------------------------------------------------------- /scripts/tsgen/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/scripts/tsgen/tsconfig.json -------------------------------------------------------------------------------- /src/actions/AlignTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/AlignTo.js -------------------------------------------------------------------------------- /src/actions/Angle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/Angle.js -------------------------------------------------------------------------------- /src/actions/Call.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/Call.js -------------------------------------------------------------------------------- /src/actions/GetFirst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/GetFirst.js -------------------------------------------------------------------------------- /src/actions/GetLast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/GetLast.js -------------------------------------------------------------------------------- /src/actions/GridAlign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/GridAlign.js -------------------------------------------------------------------------------- /src/actions/IncAlpha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/IncAlpha.js -------------------------------------------------------------------------------- /src/actions/IncX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/IncX.js -------------------------------------------------------------------------------- /src/actions/IncXY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/IncXY.js -------------------------------------------------------------------------------- /src/actions/IncY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/IncY.js -------------------------------------------------------------------------------- /src/actions/PlaceOnCircle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/PlaceOnCircle.js -------------------------------------------------------------------------------- /src/actions/PlaceOnEllipse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/PlaceOnEllipse.js -------------------------------------------------------------------------------- /src/actions/PlaceOnLine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/PlaceOnLine.js -------------------------------------------------------------------------------- /src/actions/PlaceOnRectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/PlaceOnRectangle.js -------------------------------------------------------------------------------- /src/actions/PlaceOnTriangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/PlaceOnTriangle.js -------------------------------------------------------------------------------- /src/actions/PlayAnimation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/PlayAnimation.js -------------------------------------------------------------------------------- /src/actions/PropertyValueInc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/PropertyValueInc.js -------------------------------------------------------------------------------- /src/actions/PropertyValueSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/PropertyValueSet.js -------------------------------------------------------------------------------- /src/actions/RandomCircle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/RandomCircle.js -------------------------------------------------------------------------------- /src/actions/RandomEllipse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/RandomEllipse.js -------------------------------------------------------------------------------- /src/actions/RandomLine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/RandomLine.js -------------------------------------------------------------------------------- /src/actions/RandomRectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/RandomRectangle.js -------------------------------------------------------------------------------- /src/actions/RandomTriangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/RandomTriangle.js -------------------------------------------------------------------------------- /src/actions/Rotate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/Rotate.js -------------------------------------------------------------------------------- /src/actions/RotateAround.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/RotateAround.js -------------------------------------------------------------------------------- /src/actions/ScaleX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/ScaleX.js -------------------------------------------------------------------------------- /src/actions/ScaleXY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/ScaleXY.js -------------------------------------------------------------------------------- /src/actions/ScaleY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/ScaleY.js -------------------------------------------------------------------------------- /src/actions/SetAlpha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/SetAlpha.js -------------------------------------------------------------------------------- /src/actions/SetBlendMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/SetBlendMode.js -------------------------------------------------------------------------------- /src/actions/SetDepth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/SetDepth.js -------------------------------------------------------------------------------- /src/actions/SetHitArea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/SetHitArea.js -------------------------------------------------------------------------------- /src/actions/SetOrigin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/SetOrigin.js -------------------------------------------------------------------------------- /src/actions/SetRotation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/SetRotation.js -------------------------------------------------------------------------------- /src/actions/SetScale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/SetScale.js -------------------------------------------------------------------------------- /src/actions/SetScaleX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/SetScaleX.js -------------------------------------------------------------------------------- /src/actions/SetScaleY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/SetScaleY.js -------------------------------------------------------------------------------- /src/actions/SetScrollFactor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/SetScrollFactor.js -------------------------------------------------------------------------------- /src/actions/SetScrollFactorX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/SetScrollFactorX.js -------------------------------------------------------------------------------- /src/actions/SetScrollFactorY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/SetScrollFactorY.js -------------------------------------------------------------------------------- /src/actions/SetTint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/SetTint.js -------------------------------------------------------------------------------- /src/actions/SetVisible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/SetVisible.js -------------------------------------------------------------------------------- /src/actions/SetX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/SetX.js -------------------------------------------------------------------------------- /src/actions/SetXY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/SetXY.js -------------------------------------------------------------------------------- /src/actions/SetY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/SetY.js -------------------------------------------------------------------------------- /src/actions/ShiftPosition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/ShiftPosition.js -------------------------------------------------------------------------------- /src/actions/Shuffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/Shuffle.js -------------------------------------------------------------------------------- /src/actions/SmoothStep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/SmoothStep.js -------------------------------------------------------------------------------- /src/actions/SmootherStep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/SmootherStep.js -------------------------------------------------------------------------------- /src/actions/Spread.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/Spread.js -------------------------------------------------------------------------------- /src/actions/ToggleVisible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/ToggleVisible.js -------------------------------------------------------------------------------- /src/actions/WrapInRectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/WrapInRectangle.js -------------------------------------------------------------------------------- /src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/index.js -------------------------------------------------------------------------------- /src/actions/typedefs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/actions/typedefs/index.js -------------------------------------------------------------------------------- /src/animations/Animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/animations/Animation.js -------------------------------------------------------------------------------- /src/animations/AnimationFrame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/animations/AnimationFrame.js -------------------------------------------------------------------------------- /src/animations/AnimationState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/animations/AnimationState.js -------------------------------------------------------------------------------- /src/animations/events/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/animations/events/index.js -------------------------------------------------------------------------------- /src/animations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/animations/index.js -------------------------------------------------------------------------------- /src/animations/typedefs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/animations/typedefs/index.js -------------------------------------------------------------------------------- /src/cache/BaseCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/cache/BaseCache.js -------------------------------------------------------------------------------- /src/cache/CacheManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/cache/CacheManager.js -------------------------------------------------------------------------------- /src/cache/events/ADD_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/cache/events/ADD_EVENT.js -------------------------------------------------------------------------------- /src/cache/events/REMOVE_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/cache/events/REMOVE_EVENT.js -------------------------------------------------------------------------------- /src/cache/events/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/cache/events/index.js -------------------------------------------------------------------------------- /src/cache/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/cache/index.js -------------------------------------------------------------------------------- /src/cameras/2d/BaseCamera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/cameras/2d/BaseCamera.js -------------------------------------------------------------------------------- /src/cameras/2d/Camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/cameras/2d/Camera.js -------------------------------------------------------------------------------- /src/cameras/2d/CameraManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/cameras/2d/CameraManager.js -------------------------------------------------------------------------------- /src/cameras/2d/effects/Fade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/cameras/2d/effects/Fade.js -------------------------------------------------------------------------------- /src/cameras/2d/effects/Flash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/cameras/2d/effects/Flash.js -------------------------------------------------------------------------------- /src/cameras/2d/effects/Pan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/cameras/2d/effects/Pan.js -------------------------------------------------------------------------------- /src/cameras/2d/effects/Shake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/cameras/2d/effects/Shake.js -------------------------------------------------------------------------------- /src/cameras/2d/effects/Zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/cameras/2d/effects/Zoom.js -------------------------------------------------------------------------------- /src/cameras/2d/effects/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/cameras/2d/effects/index.js -------------------------------------------------------------------------------- /src/cameras/2d/events/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/cameras/2d/events/index.js -------------------------------------------------------------------------------- /src/cameras/2d/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/cameras/2d/index.js -------------------------------------------------------------------------------- /src/cameras/2d/typedefs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/cameras/2d/typedefs/index.js -------------------------------------------------------------------------------- /src/cameras/controls/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/cameras/controls/index.js -------------------------------------------------------------------------------- /src/cameras/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/cameras/index.js -------------------------------------------------------------------------------- /src/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/const.js -------------------------------------------------------------------------------- /src/core/Config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/Config.js -------------------------------------------------------------------------------- /src/core/CreateRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/CreateRenderer.js -------------------------------------------------------------------------------- /src/core/DebugHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/DebugHeader.js -------------------------------------------------------------------------------- /src/core/Game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/Game.js -------------------------------------------------------------------------------- /src/core/TimeStep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/TimeStep.js -------------------------------------------------------------------------------- /src/core/VisibilityHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/VisibilityHandler.js -------------------------------------------------------------------------------- /src/core/events/BLUR_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/events/BLUR_EVENT.js -------------------------------------------------------------------------------- /src/core/events/BOOT_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/events/BOOT_EVENT.js -------------------------------------------------------------------------------- /src/core/events/DESTROY_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/events/DESTROY_EVENT.js -------------------------------------------------------------------------------- /src/core/events/FOCUS_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/events/FOCUS_EVENT.js -------------------------------------------------------------------------------- /src/core/events/HIDDEN_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/events/HIDDEN_EVENT.js -------------------------------------------------------------------------------- /src/core/events/PAUSE_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/events/PAUSE_EVENT.js -------------------------------------------------------------------------------- /src/core/events/PRE_STEP_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/events/PRE_STEP_EVENT.js -------------------------------------------------------------------------------- /src/core/events/READY_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/events/READY_EVENT.js -------------------------------------------------------------------------------- /src/core/events/RESUME_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/events/RESUME_EVENT.js -------------------------------------------------------------------------------- /src/core/events/STEP_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/events/STEP_EVENT.js -------------------------------------------------------------------------------- /src/core/events/VISIBLE_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/events/VISIBLE_EVENT.js -------------------------------------------------------------------------------- /src/core/events/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/events/index.js -------------------------------------------------------------------------------- /src/core/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/index.js -------------------------------------------------------------------------------- /src/core/typedefs/AudioConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/typedefs/AudioConfig.js -------------------------------------------------------------------------------- /src/core/typedefs/BannerConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/typedefs/BannerConfig.js -------------------------------------------------------------------------------- /src/core/typedefs/BootCallback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/typedefs/BootCallback.js -------------------------------------------------------------------------------- /src/core/typedefs/FPSConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/typedefs/FPSConfig.js -------------------------------------------------------------------------------- /src/core/typedefs/GameConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/typedefs/GameConfig.js -------------------------------------------------------------------------------- /src/core/typedefs/ImagesConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/typedefs/ImagesConfig.js -------------------------------------------------------------------------------- /src/core/typedefs/InputConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/typedefs/InputConfig.js -------------------------------------------------------------------------------- /src/core/typedefs/LoaderConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/typedefs/LoaderConfig.js -------------------------------------------------------------------------------- /src/core/typedefs/NOOP.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/typedefs/NOOP.js -------------------------------------------------------------------------------- /src/core/typedefs/PluginObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/typedefs/PluginObject.js -------------------------------------------------------------------------------- /src/core/typedefs/RenderConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/typedefs/RenderConfig.js -------------------------------------------------------------------------------- /src/core/typedefs/ScaleConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/typedefs/ScaleConfig.js -------------------------------------------------------------------------------- /src/core/typedefs/WidthHeight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/typedefs/WidthHeight.js -------------------------------------------------------------------------------- /src/core/typedefs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/core/typedefs/index.js -------------------------------------------------------------------------------- /src/create/GenerateTexture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/create/GenerateTexture.js -------------------------------------------------------------------------------- /src/create/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/create/index.js -------------------------------------------------------------------------------- /src/create/palettes/Arne16.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/create/palettes/Arne16.js -------------------------------------------------------------------------------- /src/create/palettes/C64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/create/palettes/C64.js -------------------------------------------------------------------------------- /src/create/palettes/CGA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/create/palettes/CGA.js -------------------------------------------------------------------------------- /src/create/palettes/JMP.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/create/palettes/JMP.js -------------------------------------------------------------------------------- /src/create/palettes/MSX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/create/palettes/MSX.js -------------------------------------------------------------------------------- /src/create/palettes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/create/palettes/index.js -------------------------------------------------------------------------------- /src/create/typedefs/Palette.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/create/typedefs/Palette.js -------------------------------------------------------------------------------- /src/create/typedefs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/create/typedefs/index.js -------------------------------------------------------------------------------- /src/curves/CubicBezierCurve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/curves/CubicBezierCurve.js -------------------------------------------------------------------------------- /src/curves/Curve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/curves/Curve.js -------------------------------------------------------------------------------- /src/curves/EllipseCurve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/curves/EllipseCurve.js -------------------------------------------------------------------------------- /src/curves/LineCurve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/curves/LineCurve.js -------------------------------------------------------------------------------- /src/curves/SplineCurve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/curves/SplineCurve.js -------------------------------------------------------------------------------- /src/curves/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/curves/index.js -------------------------------------------------------------------------------- /src/curves/path/MoveTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/curves/path/MoveTo.js -------------------------------------------------------------------------------- /src/curves/path/Path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/curves/path/Path.js -------------------------------------------------------------------------------- /src/curves/typedefs/JSONCurve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/curves/typedefs/JSONCurve.js -------------------------------------------------------------------------------- /src/curves/typedefs/JSONPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/curves/typedefs/JSONPath.js -------------------------------------------------------------------------------- /src/curves/typedefs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/curves/typedefs/index.js -------------------------------------------------------------------------------- /src/data/DataManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/data/DataManager.js -------------------------------------------------------------------------------- /src/data/DataManagerPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/data/DataManagerPlugin.js -------------------------------------------------------------------------------- /src/data/events/DESTROY_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/data/events/DESTROY_EVENT.js -------------------------------------------------------------------------------- /src/data/events/SET_DATA_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/data/events/SET_DATA_EVENT.js -------------------------------------------------------------------------------- /src/data/events/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/data/events/index.js -------------------------------------------------------------------------------- /src/data/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/data/index.js -------------------------------------------------------------------------------- /src/device/Audio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/device/Audio.js -------------------------------------------------------------------------------- /src/device/Browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/device/Browser.js -------------------------------------------------------------------------------- /src/device/CanvasFeatures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/device/CanvasFeatures.js -------------------------------------------------------------------------------- /src/device/Features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/device/Features.js -------------------------------------------------------------------------------- /src/device/Fullscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/device/Fullscreen.js -------------------------------------------------------------------------------- /src/device/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/device/Input.js -------------------------------------------------------------------------------- /src/device/OS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/device/OS.js -------------------------------------------------------------------------------- /src/device/Video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/device/Video.js -------------------------------------------------------------------------------- /src/device/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/device/index.js -------------------------------------------------------------------------------- /src/display/ColorMatrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/ColorMatrix.js -------------------------------------------------------------------------------- /src/display/RGB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/RGB.js -------------------------------------------------------------------------------- /src/display/align/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/align/const.js -------------------------------------------------------------------------------- /src/display/align/in/Center.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/align/in/Center.js -------------------------------------------------------------------------------- /src/display/align/in/QuickSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/align/in/QuickSet.js -------------------------------------------------------------------------------- /src/display/align/in/TopCenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/align/in/TopCenter.js -------------------------------------------------------------------------------- /src/display/align/in/TopLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/align/in/TopLeft.js -------------------------------------------------------------------------------- /src/display/align/in/TopRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/align/in/TopRight.js -------------------------------------------------------------------------------- /src/display/align/in/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/align/in/index.js -------------------------------------------------------------------------------- /src/display/align/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/align/index.js -------------------------------------------------------------------------------- /src/display/align/to/LeftTop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/align/to/LeftTop.js -------------------------------------------------------------------------------- /src/display/align/to/QuickSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/align/to/QuickSet.js -------------------------------------------------------------------------------- /src/display/align/to/RightTop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/align/to/RightTop.js -------------------------------------------------------------------------------- /src/display/align/to/TopCenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/align/to/TopCenter.js -------------------------------------------------------------------------------- /src/display/align/to/TopLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/align/to/TopLeft.js -------------------------------------------------------------------------------- /src/display/align/to/TopRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/align/to/TopRight.js -------------------------------------------------------------------------------- /src/display/align/to/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/align/to/index.js -------------------------------------------------------------------------------- /src/display/bounds/CenterOn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/bounds/CenterOn.js -------------------------------------------------------------------------------- /src/display/bounds/GetBottom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/bounds/GetBottom.js -------------------------------------------------------------------------------- /src/display/bounds/GetBounds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/bounds/GetBounds.js -------------------------------------------------------------------------------- /src/display/bounds/GetCenterX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/bounds/GetCenterX.js -------------------------------------------------------------------------------- /src/display/bounds/GetCenterY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/bounds/GetCenterY.js -------------------------------------------------------------------------------- /src/display/bounds/GetLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/bounds/GetLeft.js -------------------------------------------------------------------------------- /src/display/bounds/GetRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/bounds/GetRight.js -------------------------------------------------------------------------------- /src/display/bounds/GetTop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/bounds/GetTop.js -------------------------------------------------------------------------------- /src/display/bounds/SetBottom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/bounds/SetBottom.js -------------------------------------------------------------------------------- /src/display/bounds/SetLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/bounds/SetLeft.js -------------------------------------------------------------------------------- /src/display/bounds/SetRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/bounds/SetRight.js -------------------------------------------------------------------------------- /src/display/bounds/SetTop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/bounds/SetTop.js -------------------------------------------------------------------------------- /src/display/bounds/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/bounds/index.js -------------------------------------------------------------------------------- /src/display/canvas/Smoothing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/canvas/Smoothing.js -------------------------------------------------------------------------------- /src/display/canvas/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/canvas/index.js -------------------------------------------------------------------------------- /src/display/color/Color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/color/Color.js -------------------------------------------------------------------------------- /src/display/color/GetColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/color/GetColor.js -------------------------------------------------------------------------------- /src/display/color/GetColor32.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/color/GetColor32.js -------------------------------------------------------------------------------- /src/display/color/HSLToColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/color/HSLToColor.js -------------------------------------------------------------------------------- /src/display/color/HSVToRGB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/color/HSVToRGB.js -------------------------------------------------------------------------------- /src/display/color/RGBToHSV.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/color/RGBToHSV.js -------------------------------------------------------------------------------- /src/display/color/RandomRGB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/color/RandomRGB.js -------------------------------------------------------------------------------- /src/display/color/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/color/index.js -------------------------------------------------------------------------------- /src/display/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/index.js -------------------------------------------------------------------------------- /src/display/mask/BitmapMask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/mask/BitmapMask.js -------------------------------------------------------------------------------- /src/display/mask/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/display/mask/index.js -------------------------------------------------------------------------------- /src/display/typedefs/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @namespace Phaser.Types.Display 3 | */ 4 | -------------------------------------------------------------------------------- /src/dom/AddToDOM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/dom/AddToDOM.js -------------------------------------------------------------------------------- /src/dom/CreateDOMContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/dom/CreateDOMContainer.js -------------------------------------------------------------------------------- /src/dom/DOMContentLoaded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/dom/DOMContentLoaded.js -------------------------------------------------------------------------------- /src/dom/GetInnerHeight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/dom/GetInnerHeight.js -------------------------------------------------------------------------------- /src/dom/GetScreenOrientation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/dom/GetScreenOrientation.js -------------------------------------------------------------------------------- /src/dom/GetTarget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/dom/GetTarget.js -------------------------------------------------------------------------------- /src/dom/ParseXML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/dom/ParseXML.js -------------------------------------------------------------------------------- /src/dom/RemoveFromDOM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/dom/RemoveFromDOM.js -------------------------------------------------------------------------------- /src/dom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/dom/index.js -------------------------------------------------------------------------------- /src/events/EventEmitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/events/EventEmitter.js -------------------------------------------------------------------------------- /src/events/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/events/index.js -------------------------------------------------------------------------------- /src/fx/Barrel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/fx/Barrel.js -------------------------------------------------------------------------------- /src/fx/Bloom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/fx/Bloom.js -------------------------------------------------------------------------------- /src/fx/Blur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/fx/Blur.js -------------------------------------------------------------------------------- /src/fx/Bokeh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/fx/Bokeh.js -------------------------------------------------------------------------------- /src/fx/Circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/fx/Circle.js -------------------------------------------------------------------------------- /src/fx/ColorMatrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/fx/ColorMatrix.js -------------------------------------------------------------------------------- /src/fx/Controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/fx/Controller.js -------------------------------------------------------------------------------- /src/fx/Displacement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/fx/Displacement.js -------------------------------------------------------------------------------- /src/fx/Glow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/fx/Glow.js -------------------------------------------------------------------------------- /src/fx/Gradient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/fx/Gradient.js -------------------------------------------------------------------------------- /src/fx/Pixelate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/fx/Pixelate.js -------------------------------------------------------------------------------- /src/fx/Shadow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/fx/Shadow.js -------------------------------------------------------------------------------- /src/fx/Shine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/fx/Shine.js -------------------------------------------------------------------------------- /src/fx/Vignette.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/fx/Vignette.js -------------------------------------------------------------------------------- /src/fx/Wipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/fx/Wipe.js -------------------------------------------------------------------------------- /src/fx/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/fx/const.js -------------------------------------------------------------------------------- /src/fx/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/fx/index.js -------------------------------------------------------------------------------- /src/gameobjects/DisplayList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/gameobjects/DisplayList.js -------------------------------------------------------------------------------- /src/gameobjects/GameObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/gameobjects/GameObject.js -------------------------------------------------------------------------------- /src/gameobjects/UpdateList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/gameobjects/UpdateList.js -------------------------------------------------------------------------------- /src/gameobjects/blitter/Bob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/gameobjects/blitter/Bob.js -------------------------------------------------------------------------------- /src/gameobjects/events/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/gameobjects/events/index.js -------------------------------------------------------------------------------- /src/gameobjects/extern/ExternCanvasRenderer.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gameobjects/group/Group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/gameobjects/group/Group.js -------------------------------------------------------------------------------- /src/gameobjects/image/Image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/gameobjects/image/Image.js -------------------------------------------------------------------------------- /src/gameobjects/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/gameobjects/index.js -------------------------------------------------------------------------------- /src/gameobjects/layer/Layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/gameobjects/layer/Layer.js -------------------------------------------------------------------------------- /src/gameobjects/lights/Light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/gameobjects/lights/Light.js -------------------------------------------------------------------------------- /src/gameobjects/mesh/Mesh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/gameobjects/mesh/Mesh.js -------------------------------------------------------------------------------- /src/gameobjects/plane/Plane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/gameobjects/plane/Plane.js -------------------------------------------------------------------------------- /src/gameobjects/rope/Rope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/gameobjects/rope/Rope.js -------------------------------------------------------------------------------- /src/gameobjects/shape/Shape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/gameobjects/shape/Shape.js -------------------------------------------------------------------------------- /src/gameobjects/text/Text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/gameobjects/text/Text.js -------------------------------------------------------------------------------- /src/gameobjects/video/Video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/gameobjects/video/Video.js -------------------------------------------------------------------------------- /src/gameobjects/zone/Zone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/gameobjects/zone/Zone.js -------------------------------------------------------------------------------- /src/geom/circle/Area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/circle/Area.js -------------------------------------------------------------------------------- /src/geom/circle/Circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/circle/Circle.js -------------------------------------------------------------------------------- /src/geom/circle/Clone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/circle/Clone.js -------------------------------------------------------------------------------- /src/geom/circle/Contains.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/circle/Contains.js -------------------------------------------------------------------------------- /src/geom/circle/ContainsRect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/circle/ContainsRect.js -------------------------------------------------------------------------------- /src/geom/circle/CopyFrom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/circle/CopyFrom.js -------------------------------------------------------------------------------- /src/geom/circle/Equals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/circle/Equals.js -------------------------------------------------------------------------------- /src/geom/circle/GetBounds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/circle/GetBounds.js -------------------------------------------------------------------------------- /src/geom/circle/GetPoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/circle/GetPoint.js -------------------------------------------------------------------------------- /src/geom/circle/GetPoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/circle/GetPoints.js -------------------------------------------------------------------------------- /src/geom/circle/Offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/circle/Offset.js -------------------------------------------------------------------------------- /src/geom/circle/OffsetPoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/circle/OffsetPoint.js -------------------------------------------------------------------------------- /src/geom/circle/Random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/circle/Random.js -------------------------------------------------------------------------------- /src/geom/circle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/circle/index.js -------------------------------------------------------------------------------- /src/geom/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/const.js -------------------------------------------------------------------------------- /src/geom/ellipse/Area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/ellipse/Area.js -------------------------------------------------------------------------------- /src/geom/ellipse/Clone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/ellipse/Clone.js -------------------------------------------------------------------------------- /src/geom/ellipse/Contains.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/ellipse/Contains.js -------------------------------------------------------------------------------- /src/geom/ellipse/CopyFrom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/ellipse/CopyFrom.js -------------------------------------------------------------------------------- /src/geom/ellipse/Ellipse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/ellipse/Ellipse.js -------------------------------------------------------------------------------- /src/geom/ellipse/Equals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/ellipse/Equals.js -------------------------------------------------------------------------------- /src/geom/ellipse/GetBounds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/ellipse/GetBounds.js -------------------------------------------------------------------------------- /src/geom/ellipse/GetPoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/ellipse/GetPoint.js -------------------------------------------------------------------------------- /src/geom/ellipse/GetPoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/ellipse/GetPoints.js -------------------------------------------------------------------------------- /src/geom/ellipse/Offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/ellipse/Offset.js -------------------------------------------------------------------------------- /src/geom/ellipse/OffsetPoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/ellipse/OffsetPoint.js -------------------------------------------------------------------------------- /src/geom/ellipse/Random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/ellipse/Random.js -------------------------------------------------------------------------------- /src/geom/ellipse/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/ellipse/index.js -------------------------------------------------------------------------------- /src/geom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/index.js -------------------------------------------------------------------------------- /src/geom/intersects/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/intersects/index.js -------------------------------------------------------------------------------- /src/geom/line/Angle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/line/Angle.js -------------------------------------------------------------------------------- /src/geom/line/CenterOn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/line/CenterOn.js -------------------------------------------------------------------------------- /src/geom/line/Clone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/line/Clone.js -------------------------------------------------------------------------------- /src/geom/line/CopyFrom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/line/CopyFrom.js -------------------------------------------------------------------------------- /src/geom/line/Equals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/line/Equals.js -------------------------------------------------------------------------------- /src/geom/line/Extend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/line/Extend.js -------------------------------------------------------------------------------- /src/geom/line/GetEasedPoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/line/GetEasedPoints.js -------------------------------------------------------------------------------- /src/geom/line/GetMidPoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/line/GetMidPoint.js -------------------------------------------------------------------------------- /src/geom/line/GetNormal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/line/GetNormal.js -------------------------------------------------------------------------------- /src/geom/line/GetPoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/line/GetPoint.js -------------------------------------------------------------------------------- /src/geom/line/GetPoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/line/GetPoints.js -------------------------------------------------------------------------------- /src/geom/line/Height.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/line/Height.js -------------------------------------------------------------------------------- /src/geom/line/Length.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/line/Length.js -------------------------------------------------------------------------------- /src/geom/line/Line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/line/Line.js -------------------------------------------------------------------------------- /src/geom/line/NormalAngle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/line/NormalAngle.js -------------------------------------------------------------------------------- /src/geom/line/NormalX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/line/NormalX.js -------------------------------------------------------------------------------- /src/geom/line/NormalY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/line/NormalY.js -------------------------------------------------------------------------------- /src/geom/line/Offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/line/Offset.js -------------------------------------------------------------------------------- /src/geom/line/PerpSlope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/line/PerpSlope.js -------------------------------------------------------------------------------- /src/geom/line/Random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/line/Random.js -------------------------------------------------------------------------------- /src/geom/line/ReflectAngle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/line/ReflectAngle.js -------------------------------------------------------------------------------- /src/geom/line/Rotate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/line/Rotate.js -------------------------------------------------------------------------------- /src/geom/line/RotateAroundXY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/line/RotateAroundXY.js -------------------------------------------------------------------------------- /src/geom/line/SetToAngle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/line/SetToAngle.js -------------------------------------------------------------------------------- /src/geom/line/Slope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/line/Slope.js -------------------------------------------------------------------------------- /src/geom/line/Width.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/line/Width.js -------------------------------------------------------------------------------- /src/geom/line/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/line/index.js -------------------------------------------------------------------------------- /src/geom/mesh/Face.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/mesh/Face.js -------------------------------------------------------------------------------- /src/geom/mesh/GenerateVerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/mesh/GenerateVerts.js -------------------------------------------------------------------------------- /src/geom/mesh/ParseObj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/mesh/ParseObj.js -------------------------------------------------------------------------------- /src/geom/mesh/RotateFace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/mesh/RotateFace.js -------------------------------------------------------------------------------- /src/geom/mesh/Vertex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/mesh/Vertex.js -------------------------------------------------------------------------------- /src/geom/mesh/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/mesh/index.js -------------------------------------------------------------------------------- /src/geom/mesh/typedefs/UV.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/mesh/typedefs/UV.js -------------------------------------------------------------------------------- /src/geom/mesh/typedefs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/mesh/typedefs/index.js -------------------------------------------------------------------------------- /src/geom/point/Ceil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/point/Ceil.js -------------------------------------------------------------------------------- /src/geom/point/Clone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/point/Clone.js -------------------------------------------------------------------------------- /src/geom/point/CopyFrom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/point/CopyFrom.js -------------------------------------------------------------------------------- /src/geom/point/Equals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/point/Equals.js -------------------------------------------------------------------------------- /src/geom/point/Floor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/point/Floor.js -------------------------------------------------------------------------------- /src/geom/point/GetCentroid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/point/GetCentroid.js -------------------------------------------------------------------------------- /src/geom/point/GetMagnitude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/point/GetMagnitude.js -------------------------------------------------------------------------------- /src/geom/point/Interpolate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/point/Interpolate.js -------------------------------------------------------------------------------- /src/geom/point/Invert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/point/Invert.js -------------------------------------------------------------------------------- /src/geom/point/Negative.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/point/Negative.js -------------------------------------------------------------------------------- /src/geom/point/Point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/point/Point.js -------------------------------------------------------------------------------- /src/geom/point/Project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/point/Project.js -------------------------------------------------------------------------------- /src/geom/point/ProjectUnit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/point/ProjectUnit.js -------------------------------------------------------------------------------- /src/geom/point/SetMagnitude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/point/SetMagnitude.js -------------------------------------------------------------------------------- /src/geom/point/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/point/index.js -------------------------------------------------------------------------------- /src/geom/polygon/Clone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/polygon/Clone.js -------------------------------------------------------------------------------- /src/geom/polygon/Contains.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/polygon/Contains.js -------------------------------------------------------------------------------- /src/geom/polygon/Earcut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/polygon/Earcut.js -------------------------------------------------------------------------------- /src/geom/polygon/GetAABB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/polygon/GetAABB.js -------------------------------------------------------------------------------- /src/geom/polygon/GetPoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/polygon/GetPoints.js -------------------------------------------------------------------------------- /src/geom/polygon/Perimeter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/polygon/Perimeter.js -------------------------------------------------------------------------------- /src/geom/polygon/Polygon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/polygon/Polygon.js -------------------------------------------------------------------------------- /src/geom/polygon/Reverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/polygon/Reverse.js -------------------------------------------------------------------------------- /src/geom/polygon/Simplify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/polygon/Simplify.js -------------------------------------------------------------------------------- /src/geom/polygon/Smooth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/polygon/Smooth.js -------------------------------------------------------------------------------- /src/geom/polygon/Translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/polygon/Translate.js -------------------------------------------------------------------------------- /src/geom/polygon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/polygon/index.js -------------------------------------------------------------------------------- /src/geom/rectangle/Area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/rectangle/Area.js -------------------------------------------------------------------------------- /src/geom/rectangle/Ceil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/rectangle/Ceil.js -------------------------------------------------------------------------------- /src/geom/rectangle/CeilAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/rectangle/CeilAll.js -------------------------------------------------------------------------------- /src/geom/rectangle/CenterOn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/rectangle/CenterOn.js -------------------------------------------------------------------------------- /src/geom/rectangle/Clone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/rectangle/Clone.js -------------------------------------------------------------------------------- /src/geom/rectangle/Contains.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/rectangle/Contains.js -------------------------------------------------------------------------------- /src/geom/rectangle/CopyFrom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/rectangle/CopyFrom.js -------------------------------------------------------------------------------- /src/geom/rectangle/Decompose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/rectangle/Decompose.js -------------------------------------------------------------------------------- /src/geom/rectangle/Equals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/rectangle/Equals.js -------------------------------------------------------------------------------- /src/geom/rectangle/FitInside.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/rectangle/FitInside.js -------------------------------------------------------------------------------- /src/geom/rectangle/Floor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/rectangle/Floor.js -------------------------------------------------------------------------------- /src/geom/rectangle/FloorAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/rectangle/FloorAll.js -------------------------------------------------------------------------------- /src/geom/rectangle/FromXY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/rectangle/FromXY.js -------------------------------------------------------------------------------- /src/geom/rectangle/GetCenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/rectangle/GetCenter.js -------------------------------------------------------------------------------- /src/geom/rectangle/GetPoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/rectangle/GetPoint.js -------------------------------------------------------------------------------- /src/geom/rectangle/GetPoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/rectangle/GetPoints.js -------------------------------------------------------------------------------- /src/geom/rectangle/GetSize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/rectangle/GetSize.js -------------------------------------------------------------------------------- /src/geom/rectangle/Inflate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/rectangle/Inflate.js -------------------------------------------------------------------------------- /src/geom/rectangle/MergeRect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/rectangle/MergeRect.js -------------------------------------------------------------------------------- /src/geom/rectangle/MergeXY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/rectangle/MergeXY.js -------------------------------------------------------------------------------- /src/geom/rectangle/Offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/rectangle/Offset.js -------------------------------------------------------------------------------- /src/geom/rectangle/Overlaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/rectangle/Overlaps.js -------------------------------------------------------------------------------- /src/geom/rectangle/Perimeter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/rectangle/Perimeter.js -------------------------------------------------------------------------------- /src/geom/rectangle/Random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/rectangle/Random.js -------------------------------------------------------------------------------- /src/geom/rectangle/Rectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/rectangle/Rectangle.js -------------------------------------------------------------------------------- /src/geom/rectangle/Scale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/rectangle/Scale.js -------------------------------------------------------------------------------- /src/geom/rectangle/Union.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/rectangle/Union.js -------------------------------------------------------------------------------- /src/geom/rectangle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/rectangle/index.js -------------------------------------------------------------------------------- /src/geom/triangle/Area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/triangle/Area.js -------------------------------------------------------------------------------- /src/geom/triangle/BuildRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/triangle/BuildRight.js -------------------------------------------------------------------------------- /src/geom/triangle/CenterOn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/triangle/CenterOn.js -------------------------------------------------------------------------------- /src/geom/triangle/Centroid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/triangle/Centroid.js -------------------------------------------------------------------------------- /src/geom/triangle/Clone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/triangle/Clone.js -------------------------------------------------------------------------------- /src/geom/triangle/Contains.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/triangle/Contains.js -------------------------------------------------------------------------------- /src/geom/triangle/CopyFrom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/triangle/CopyFrom.js -------------------------------------------------------------------------------- /src/geom/triangle/Decompose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/triangle/Decompose.js -------------------------------------------------------------------------------- /src/geom/triangle/Equals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/triangle/Equals.js -------------------------------------------------------------------------------- /src/geom/triangle/GetPoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/triangle/GetPoint.js -------------------------------------------------------------------------------- /src/geom/triangle/GetPoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/triangle/GetPoints.js -------------------------------------------------------------------------------- /src/geom/triangle/InCenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/triangle/InCenter.js -------------------------------------------------------------------------------- /src/geom/triangle/Offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/triangle/Offset.js -------------------------------------------------------------------------------- /src/geom/triangle/Perimeter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/triangle/Perimeter.js -------------------------------------------------------------------------------- /src/geom/triangle/Random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/triangle/Random.js -------------------------------------------------------------------------------- /src/geom/triangle/Rotate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/triangle/Rotate.js -------------------------------------------------------------------------------- /src/geom/triangle/Triangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/triangle/Triangle.js -------------------------------------------------------------------------------- /src/geom/triangle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/triangle/index.js -------------------------------------------------------------------------------- /src/geom/typedefs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/geom/typedefs/index.js -------------------------------------------------------------------------------- /src/input/InputManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/input/InputManager.js -------------------------------------------------------------------------------- /src/input/InputPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/input/InputPlugin.js -------------------------------------------------------------------------------- /src/input/InputPluginCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/input/InputPluginCache.js -------------------------------------------------------------------------------- /src/input/Pointer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/input/Pointer.js -------------------------------------------------------------------------------- /src/input/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/input/const.js -------------------------------------------------------------------------------- /src/input/events/BOOT_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/input/events/BOOT_EVENT.js -------------------------------------------------------------------------------- /src/input/events/DRAG_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/input/events/DRAG_EVENT.js -------------------------------------------------------------------------------- /src/input/events/DROP_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/input/events/DROP_EVENT.js -------------------------------------------------------------------------------- /src/input/events/START_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/input/events/START_EVENT.js -------------------------------------------------------------------------------- /src/input/events/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/input/events/index.js -------------------------------------------------------------------------------- /src/input/gamepad/Axis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/input/gamepad/Axis.js -------------------------------------------------------------------------------- /src/input/gamepad/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/input/gamepad/Button.js -------------------------------------------------------------------------------- /src/input/gamepad/Gamepad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/input/gamepad/Gamepad.js -------------------------------------------------------------------------------- /src/input/gamepad/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/input/gamepad/index.js -------------------------------------------------------------------------------- /src/input/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/input/index.js -------------------------------------------------------------------------------- /src/input/keyboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/input/keyboard/index.js -------------------------------------------------------------------------------- /src/input/keyboard/keys/Key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/input/keyboard/keys/Key.js -------------------------------------------------------------------------------- /src/input/mouse/MouseManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/input/mouse/MouseManager.js -------------------------------------------------------------------------------- /src/input/mouse/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/input/mouse/index.js -------------------------------------------------------------------------------- /src/input/touch/TouchManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/input/touch/TouchManager.js -------------------------------------------------------------------------------- /src/input/touch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/input/touch/index.js -------------------------------------------------------------------------------- /src/input/typedefs/EventData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/input/typedefs/EventData.js -------------------------------------------------------------------------------- /src/input/typedefs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/input/typedefs/index.js -------------------------------------------------------------------------------- /src/loader/File.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/loader/File.js -------------------------------------------------------------------------------- /src/loader/FileTypesManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/loader/FileTypesManager.js -------------------------------------------------------------------------------- /src/loader/GetURL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/loader/GetURL.js -------------------------------------------------------------------------------- /src/loader/LoaderPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/loader/LoaderPlugin.js -------------------------------------------------------------------------------- /src/loader/MergeXHRSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/loader/MergeXHRSettings.js -------------------------------------------------------------------------------- /src/loader/MultiFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/loader/MultiFile.js -------------------------------------------------------------------------------- /src/loader/XHRLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/loader/XHRLoader.js -------------------------------------------------------------------------------- /src/loader/XHRSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/loader/XHRSettings.js -------------------------------------------------------------------------------- /src/loader/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/loader/const.js -------------------------------------------------------------------------------- /src/loader/events/ADD_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/loader/events/ADD_EVENT.js -------------------------------------------------------------------------------- /src/loader/events/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/loader/events/index.js -------------------------------------------------------------------------------- /src/loader/filetypes/CSSFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/loader/filetypes/CSSFile.js -------------------------------------------------------------------------------- /src/loader/filetypes/OBJFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/loader/filetypes/OBJFile.js -------------------------------------------------------------------------------- /src/loader/filetypes/SVGFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/loader/filetypes/SVGFile.js -------------------------------------------------------------------------------- /src/loader/filetypes/XMLFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/loader/filetypes/XMLFile.js -------------------------------------------------------------------------------- /src/loader/filetypes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/loader/filetypes/index.js -------------------------------------------------------------------------------- /src/loader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/loader/index.js -------------------------------------------------------------------------------- /src/loader/typedefs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/loader/typedefs/index.js -------------------------------------------------------------------------------- /src/math/Average.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/Average.js -------------------------------------------------------------------------------- /src/math/Bernstein.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/Bernstein.js -------------------------------------------------------------------------------- /src/math/Between.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/Between.js -------------------------------------------------------------------------------- /src/math/CatmullRom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/CatmullRom.js -------------------------------------------------------------------------------- /src/math/CeilTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/CeilTo.js -------------------------------------------------------------------------------- /src/math/Clamp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/Clamp.js -------------------------------------------------------------------------------- /src/math/DegToRad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/DegToRad.js -------------------------------------------------------------------------------- /src/math/Difference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/Difference.js -------------------------------------------------------------------------------- /src/math/Euler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/Euler.js -------------------------------------------------------------------------------- /src/math/Factorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/Factorial.js -------------------------------------------------------------------------------- /src/math/FloatBetween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/FloatBetween.js -------------------------------------------------------------------------------- /src/math/FloorTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/FloorTo.js -------------------------------------------------------------------------------- /src/math/FromPercent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/FromPercent.js -------------------------------------------------------------------------------- /src/math/GetSpeed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/GetSpeed.js -------------------------------------------------------------------------------- /src/math/IsEven.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/IsEven.js -------------------------------------------------------------------------------- /src/math/IsEvenStrict.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/IsEvenStrict.js -------------------------------------------------------------------------------- /src/math/Linear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/Linear.js -------------------------------------------------------------------------------- /src/math/LinearXY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/LinearXY.js -------------------------------------------------------------------------------- /src/math/Matrix3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/Matrix3.js -------------------------------------------------------------------------------- /src/math/Matrix4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/Matrix4.js -------------------------------------------------------------------------------- /src/math/MaxAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/MaxAdd.js -------------------------------------------------------------------------------- /src/math/Median.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/Median.js -------------------------------------------------------------------------------- /src/math/MinSub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/MinSub.js -------------------------------------------------------------------------------- /src/math/Percent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/Percent.js -------------------------------------------------------------------------------- /src/math/Quaternion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/Quaternion.js -------------------------------------------------------------------------------- /src/math/RadToDeg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/RadToDeg.js -------------------------------------------------------------------------------- /src/math/RandomXY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/RandomXY.js -------------------------------------------------------------------------------- /src/math/RandomXYZ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/RandomXYZ.js -------------------------------------------------------------------------------- /src/math/RandomXYZW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/RandomXYZW.js -------------------------------------------------------------------------------- /src/math/Rotate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/Rotate.js -------------------------------------------------------------------------------- /src/math/RotateAround.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/RotateAround.js -------------------------------------------------------------------------------- /src/math/RotateTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/RotateTo.js -------------------------------------------------------------------------------- /src/math/RotateVec3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/RotateVec3.js -------------------------------------------------------------------------------- /src/math/RoundAwayFromZero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/RoundAwayFromZero.js -------------------------------------------------------------------------------- /src/math/RoundTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/RoundTo.js -------------------------------------------------------------------------------- /src/math/SmoothStep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/SmoothStep.js -------------------------------------------------------------------------------- /src/math/SmootherStep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/SmootherStep.js -------------------------------------------------------------------------------- /src/math/ToXY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/ToXY.js -------------------------------------------------------------------------------- /src/math/TransformXY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/TransformXY.js -------------------------------------------------------------------------------- /src/math/Vector2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/Vector2.js -------------------------------------------------------------------------------- /src/math/Vector3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/Vector3.js -------------------------------------------------------------------------------- /src/math/Vector4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/Vector4.js -------------------------------------------------------------------------------- /src/math/Within.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/Within.js -------------------------------------------------------------------------------- /src/math/Wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/Wrap.js -------------------------------------------------------------------------------- /src/math/angle/Between.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/angle/Between.js -------------------------------------------------------------------------------- /src/math/angle/BetweenPoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/angle/BetweenPoints.js -------------------------------------------------------------------------------- /src/math/angle/BetweenY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/angle/BetweenY.js -------------------------------------------------------------------------------- /src/math/angle/Normalize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/angle/Normalize.js -------------------------------------------------------------------------------- /src/math/angle/Random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/angle/Random.js -------------------------------------------------------------------------------- /src/math/angle/RandomDegrees.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/angle/RandomDegrees.js -------------------------------------------------------------------------------- /src/math/angle/Reverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/angle/Reverse.js -------------------------------------------------------------------------------- /src/math/angle/RotateTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/angle/RotateTo.js -------------------------------------------------------------------------------- /src/math/angle/Wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/angle/Wrap.js -------------------------------------------------------------------------------- /src/math/angle/WrapDegrees.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/angle/WrapDegrees.js -------------------------------------------------------------------------------- /src/math/angle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/angle/index.js -------------------------------------------------------------------------------- /src/math/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/const.js -------------------------------------------------------------------------------- /src/math/distance/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/distance/index.js -------------------------------------------------------------------------------- /src/math/easing/EaseMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/EaseMap.js -------------------------------------------------------------------------------- /src/math/easing/back/In.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/back/In.js -------------------------------------------------------------------------------- /src/math/easing/back/InOut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/back/InOut.js -------------------------------------------------------------------------------- /src/math/easing/back/Out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/back/Out.js -------------------------------------------------------------------------------- /src/math/easing/back/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/back/index.js -------------------------------------------------------------------------------- /src/math/easing/bounce/In.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/bounce/In.js -------------------------------------------------------------------------------- /src/math/easing/bounce/InOut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/bounce/InOut.js -------------------------------------------------------------------------------- /src/math/easing/bounce/Out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/bounce/Out.js -------------------------------------------------------------------------------- /src/math/easing/bounce/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/bounce/index.js -------------------------------------------------------------------------------- /src/math/easing/circular/In.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/circular/In.js -------------------------------------------------------------------------------- /src/math/easing/circular/Out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/circular/Out.js -------------------------------------------------------------------------------- /src/math/easing/cubic/In.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/cubic/In.js -------------------------------------------------------------------------------- /src/math/easing/cubic/InOut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/cubic/InOut.js -------------------------------------------------------------------------------- /src/math/easing/cubic/Out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/cubic/Out.js -------------------------------------------------------------------------------- /src/math/easing/cubic/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/cubic/index.js -------------------------------------------------------------------------------- /src/math/easing/elastic/In.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/elastic/In.js -------------------------------------------------------------------------------- /src/math/easing/elastic/Out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/elastic/Out.js -------------------------------------------------------------------------------- /src/math/easing/expo/In.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/expo/In.js -------------------------------------------------------------------------------- /src/math/easing/expo/InOut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/expo/InOut.js -------------------------------------------------------------------------------- /src/math/easing/expo/Out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/expo/Out.js -------------------------------------------------------------------------------- /src/math/easing/expo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/expo/index.js -------------------------------------------------------------------------------- /src/math/easing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/index.js -------------------------------------------------------------------------------- /src/math/easing/linear/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/linear/index.js -------------------------------------------------------------------------------- /src/math/easing/quadratic/In.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/quadratic/In.js -------------------------------------------------------------------------------- /src/math/easing/quartic/In.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/quartic/In.js -------------------------------------------------------------------------------- /src/math/easing/quartic/Out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/quartic/Out.js -------------------------------------------------------------------------------- /src/math/easing/quintic/In.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/quintic/In.js -------------------------------------------------------------------------------- /src/math/easing/quintic/Out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/quintic/Out.js -------------------------------------------------------------------------------- /src/math/easing/sine/In.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/sine/In.js -------------------------------------------------------------------------------- /src/math/easing/sine/InOut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/sine/InOut.js -------------------------------------------------------------------------------- /src/math/easing/sine/Out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/sine/Out.js -------------------------------------------------------------------------------- /src/math/easing/sine/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/easing/sine/index.js -------------------------------------------------------------------------------- /src/math/fuzzy/Ceil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/fuzzy/Ceil.js -------------------------------------------------------------------------------- /src/math/fuzzy/Equal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/fuzzy/Equal.js -------------------------------------------------------------------------------- /src/math/fuzzy/Floor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/fuzzy/Floor.js -------------------------------------------------------------------------------- /src/math/fuzzy/GreaterThan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/fuzzy/GreaterThan.js -------------------------------------------------------------------------------- /src/math/fuzzy/LessThan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/fuzzy/LessThan.js -------------------------------------------------------------------------------- /src/math/fuzzy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/fuzzy/index.js -------------------------------------------------------------------------------- /src/math/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/index.js -------------------------------------------------------------------------------- /src/math/interpolation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/interpolation/index.js -------------------------------------------------------------------------------- /src/math/pow2/GetPowerOfTwo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/pow2/GetPowerOfTwo.js -------------------------------------------------------------------------------- /src/math/pow2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/pow2/index.js -------------------------------------------------------------------------------- /src/math/snap/SnapCeil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/snap/SnapCeil.js -------------------------------------------------------------------------------- /src/math/snap/SnapFloor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/snap/SnapFloor.js -------------------------------------------------------------------------------- /src/math/snap/SnapTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/snap/SnapTo.js -------------------------------------------------------------------------------- /src/math/snap/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/snap/index.js -------------------------------------------------------------------------------- /src/math/typedefs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/math/typedefs/index.js -------------------------------------------------------------------------------- /src/phaser-arcade-physics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/phaser-arcade-physics.js -------------------------------------------------------------------------------- /src/phaser-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/phaser-core.js -------------------------------------------------------------------------------- /src/phaser-esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/phaser-esm.js -------------------------------------------------------------------------------- /src/phaser-ie9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/phaser-ie9.js -------------------------------------------------------------------------------- /src/phaser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/phaser.js -------------------------------------------------------------------------------- /src/physics/arcade/Body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/physics/arcade/Body.js -------------------------------------------------------------------------------- /src/physics/arcade/Collider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/physics/arcade/Collider.js -------------------------------------------------------------------------------- /src/physics/arcade/Factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/physics/arcade/Factory.js -------------------------------------------------------------------------------- /src/physics/arcade/ProcessX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/physics/arcade/ProcessX.js -------------------------------------------------------------------------------- /src/physics/arcade/ProcessY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/physics/arcade/ProcessY.js -------------------------------------------------------------------------------- /src/physics/arcade/SeparateX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/physics/arcade/SeparateX.js -------------------------------------------------------------------------------- /src/physics/arcade/SeparateY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/physics/arcade/SeparateY.js -------------------------------------------------------------------------------- /src/physics/arcade/World.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/physics/arcade/World.js -------------------------------------------------------------------------------- /src/physics/arcade/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/physics/arcade/const.js -------------------------------------------------------------------------------- /src/physics/arcade/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/physics/arcade/index.js -------------------------------------------------------------------------------- /src/physics/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/physics/index.js -------------------------------------------------------------------------------- /src/physics/matter-js/World.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/physics/matter-js/World.js -------------------------------------------------------------------------------- /src/physics/matter-js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/physics/matter-js/index.js -------------------------------------------------------------------------------- /src/plugins/BasePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/plugins/BasePlugin.js -------------------------------------------------------------------------------- /src/plugins/DefaultPlugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/plugins/DefaultPlugins.js -------------------------------------------------------------------------------- /src/plugins/PluginCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/plugins/PluginCache.js -------------------------------------------------------------------------------- /src/plugins/PluginManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/plugins/PluginManager.js -------------------------------------------------------------------------------- /src/plugins/ScenePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/plugins/ScenePlugin.js -------------------------------------------------------------------------------- /src/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/plugins/index.js -------------------------------------------------------------------------------- /src/plugins/typedefs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/plugins/typedefs/index.js -------------------------------------------------------------------------------- /src/polyfills/Array.forEach.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/polyfills/Array.forEach.js -------------------------------------------------------------------------------- /src/polyfills/Array.isArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/polyfills/Array.isArray.js -------------------------------------------------------------------------------- /src/polyfills/Math.trunc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/polyfills/Math.trunc.js -------------------------------------------------------------------------------- /src/polyfills/Uint32Array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/polyfills/Uint32Array.js -------------------------------------------------------------------------------- /src/polyfills/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/polyfills/console.js -------------------------------------------------------------------------------- /src/polyfills/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/polyfills/index.js -------------------------------------------------------------------------------- /src/renderer/BlendModes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/renderer/BlendModes.js -------------------------------------------------------------------------------- /src/renderer/ScaleModes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/renderer/ScaleModes.js -------------------------------------------------------------------------------- /src/renderer/canvas/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/renderer/canvas/index.js -------------------------------------------------------------------------------- /src/renderer/events/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/renderer/events/index.js -------------------------------------------------------------------------------- /src/renderer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/renderer/index.js -------------------------------------------------------------------------------- /src/renderer/snapshot/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/renderer/snapshot/index.js -------------------------------------------------------------------------------- /src/renderer/webgl/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/renderer/webgl/Utils.js -------------------------------------------------------------------------------- /src/renderer/webgl/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/renderer/webgl/const.js -------------------------------------------------------------------------------- /src/renderer/webgl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/renderer/webgl/index.js -------------------------------------------------------------------------------- /src/scale/ScaleManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/scale/ScaleManager.js -------------------------------------------------------------------------------- /src/scale/const/CENTER_CONST.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/scale/const/CENTER_CONST.js -------------------------------------------------------------------------------- /src/scale/const/ZOOM_CONST.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/scale/const/ZOOM_CONST.js -------------------------------------------------------------------------------- /src/scale/const/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/scale/const/index.js -------------------------------------------------------------------------------- /src/scale/events/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/scale/events/index.js -------------------------------------------------------------------------------- /src/scale/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/scale/index.js -------------------------------------------------------------------------------- /src/scene/GetPhysicsPlugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/scene/GetPhysicsPlugins.js -------------------------------------------------------------------------------- /src/scene/GetScenePlugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/scene/GetScenePlugins.js -------------------------------------------------------------------------------- /src/scene/InjectionMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/scene/InjectionMap.js -------------------------------------------------------------------------------- /src/scene/Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/scene/Scene.js -------------------------------------------------------------------------------- /src/scene/SceneManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/scene/SceneManager.js -------------------------------------------------------------------------------- /src/scene/ScenePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/scene/ScenePlugin.js -------------------------------------------------------------------------------- /src/scene/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/scene/Settings.js -------------------------------------------------------------------------------- /src/scene/Systems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/scene/Systems.js -------------------------------------------------------------------------------- /src/scene/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/scene/const.js -------------------------------------------------------------------------------- /src/scene/events/BOOT_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/scene/events/BOOT_EVENT.js -------------------------------------------------------------------------------- /src/scene/events/PAUSE_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/scene/events/PAUSE_EVENT.js -------------------------------------------------------------------------------- /src/scene/events/READY_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/scene/events/READY_EVENT.js -------------------------------------------------------------------------------- /src/scene/events/SLEEP_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/scene/events/SLEEP_EVENT.js -------------------------------------------------------------------------------- /src/scene/events/START_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/scene/events/START_EVENT.js -------------------------------------------------------------------------------- /src/scene/events/WAKE_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/scene/events/WAKE_EVENT.js -------------------------------------------------------------------------------- /src/scene/events/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/scene/events/index.js -------------------------------------------------------------------------------- /src/scene/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/scene/index.js -------------------------------------------------------------------------------- /src/scene/typedefs/SceneType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/scene/typedefs/SceneType.js -------------------------------------------------------------------------------- /src/scene/typedefs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/scene/typedefs/index.js -------------------------------------------------------------------------------- /src/sound/BaseSound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/sound/BaseSound.js -------------------------------------------------------------------------------- /src/sound/BaseSoundManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/sound/BaseSoundManager.js -------------------------------------------------------------------------------- /src/sound/events/LOOP_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/sound/events/LOOP_EVENT.js -------------------------------------------------------------------------------- /src/sound/events/MUTE_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/sound/events/MUTE_EVENT.js -------------------------------------------------------------------------------- /src/sound/events/PAN_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/sound/events/PAN_EVENT.js -------------------------------------------------------------------------------- /src/sound/events/PAUSE_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/sound/events/PAUSE_EVENT.js -------------------------------------------------------------------------------- /src/sound/events/PLAY_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/sound/events/PLAY_EVENT.js -------------------------------------------------------------------------------- /src/sound/events/RATE_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/sound/events/RATE_EVENT.js -------------------------------------------------------------------------------- /src/sound/events/SEEK_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/sound/events/SEEK_EVENT.js -------------------------------------------------------------------------------- /src/sound/events/STOP_EVENT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/sound/events/STOP_EVENT.js -------------------------------------------------------------------------------- /src/sound/events/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/sound/events/index.js -------------------------------------------------------------------------------- /src/sound/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/sound/index.js -------------------------------------------------------------------------------- /src/sound/typedefs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/sound/typedefs/index.js -------------------------------------------------------------------------------- /src/structs/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/structs/List.js -------------------------------------------------------------------------------- /src/structs/Map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/structs/Map.js -------------------------------------------------------------------------------- /src/structs/ProcessQueue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/structs/ProcessQueue.js -------------------------------------------------------------------------------- /src/structs/RTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/structs/RTree.js -------------------------------------------------------------------------------- /src/structs/Set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/structs/Set.js -------------------------------------------------------------------------------- /src/structs/Size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/structs/Size.js -------------------------------------------------------------------------------- /src/structs/events/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/structs/events/index.js -------------------------------------------------------------------------------- /src/structs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/structs/index.js -------------------------------------------------------------------------------- /src/textures/CanvasTexture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/textures/CanvasTexture.js -------------------------------------------------------------------------------- /src/textures/DynamicTexture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/textures/DynamicTexture.js -------------------------------------------------------------------------------- /src/textures/Frame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/textures/Frame.js -------------------------------------------------------------------------------- /src/textures/Texture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/textures/Texture.js -------------------------------------------------------------------------------- /src/textures/TextureManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/textures/TextureManager.js -------------------------------------------------------------------------------- /src/textures/TextureSource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/textures/TextureSource.js -------------------------------------------------------------------------------- /src/textures/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/textures/const.js -------------------------------------------------------------------------------- /src/textures/events/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/textures/events/index.js -------------------------------------------------------------------------------- /src/textures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/textures/index.js -------------------------------------------------------------------------------- /src/textures/parsers/Canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/textures/parsers/Canvas.js -------------------------------------------------------------------------------- /src/textures/parsers/Image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/textures/parsers/Image.js -------------------------------------------------------------------------------- /src/textures/parsers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/textures/parsers/index.js -------------------------------------------------------------------------------- /src/textures/typedefs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/textures/typedefs/index.js -------------------------------------------------------------------------------- /src/tilemaps/Formats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tilemaps/Formats.js -------------------------------------------------------------------------------- /src/tilemaps/ImageCollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tilemaps/ImageCollection.js -------------------------------------------------------------------------------- /src/tilemaps/ObjectHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tilemaps/ObjectHelper.js -------------------------------------------------------------------------------- /src/tilemaps/ParseToTilemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tilemaps/ParseToTilemap.js -------------------------------------------------------------------------------- /src/tilemaps/Tile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tilemaps/Tile.js -------------------------------------------------------------------------------- /src/tilemaps/Tilemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tilemaps/Tilemap.js -------------------------------------------------------------------------------- /src/tilemaps/TilemapCreator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tilemaps/TilemapCreator.js -------------------------------------------------------------------------------- /src/tilemaps/TilemapFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tilemaps/TilemapFactory.js -------------------------------------------------------------------------------- /src/tilemaps/TilemapLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tilemaps/TilemapLayer.js -------------------------------------------------------------------------------- /src/tilemaps/Tileset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tilemaps/Tileset.js -------------------------------------------------------------------------------- /src/tilemaps/components/Copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tilemaps/components/Copy.js -------------------------------------------------------------------------------- /src/tilemaps/components/Fill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tilemaps/components/Fill.js -------------------------------------------------------------------------------- /src/tilemaps/const/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tilemaps/const/index.js -------------------------------------------------------------------------------- /src/tilemaps/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tilemaps/index.js -------------------------------------------------------------------------------- /src/tilemaps/mapdata/MapData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tilemaps/mapdata/MapData.js -------------------------------------------------------------------------------- /src/tilemaps/parsers/Parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tilemaps/parsers/Parse.js -------------------------------------------------------------------------------- /src/tilemaps/parsers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tilemaps/parsers/index.js -------------------------------------------------------------------------------- /src/tilemaps/typedefs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tilemaps/typedefs/index.js -------------------------------------------------------------------------------- /src/time/Clock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/time/Clock.js -------------------------------------------------------------------------------- /src/time/Timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/time/Timeline.js -------------------------------------------------------------------------------- /src/time/TimerEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/time/TimerEvent.js -------------------------------------------------------------------------------- /src/time/events/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/time/events/index.js -------------------------------------------------------------------------------- /src/time/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/time/index.js -------------------------------------------------------------------------------- /src/time/typedefs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/time/typedefs/index.js -------------------------------------------------------------------------------- /src/tweens/TweenManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tweens/TweenManager.js -------------------------------------------------------------------------------- /src/tweens/builders/GetProps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tweens/builders/GetProps.js -------------------------------------------------------------------------------- /src/tweens/builders/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tweens/builders/index.js -------------------------------------------------------------------------------- /src/tweens/events/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tweens/events/index.js -------------------------------------------------------------------------------- /src/tweens/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tweens/index.js -------------------------------------------------------------------------------- /src/tweens/tween/BaseTween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tweens/tween/BaseTween.js -------------------------------------------------------------------------------- /src/tweens/tween/Defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tweens/tween/Defaults.js -------------------------------------------------------------------------------- /src/tweens/tween/Tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tweens/tween/Tween.js -------------------------------------------------------------------------------- /src/tweens/tween/TweenChain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tweens/tween/TweenChain.js -------------------------------------------------------------------------------- /src/tweens/tween/TweenData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tweens/tween/TweenData.js -------------------------------------------------------------------------------- /src/tweens/tween/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tweens/tween/const.js -------------------------------------------------------------------------------- /src/tweens/typedefs/Event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tweens/typedefs/Event.js -------------------------------------------------------------------------------- /src/tweens/typedefs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/tweens/typedefs/index.js -------------------------------------------------------------------------------- /src/utils/Class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/Class.js -------------------------------------------------------------------------------- /src/utils/NOOP.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/NOOP.js -------------------------------------------------------------------------------- /src/utils/NULL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/NULL.js -------------------------------------------------------------------------------- /src/utils/array/Add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/Add.js -------------------------------------------------------------------------------- /src/utils/array/AddAt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/AddAt.js -------------------------------------------------------------------------------- /src/utils/array/BringToTop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/BringToTop.js -------------------------------------------------------------------------------- /src/utils/array/Each.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/Each.js -------------------------------------------------------------------------------- /src/utils/array/EachInRange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/EachInRange.js -------------------------------------------------------------------------------- /src/utils/array/Flatten.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/Flatten.js -------------------------------------------------------------------------------- /src/utils/array/GetAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/GetAll.js -------------------------------------------------------------------------------- /src/utils/array/GetFirst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/GetFirst.js -------------------------------------------------------------------------------- /src/utils/array/GetRandom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/GetRandom.js -------------------------------------------------------------------------------- /src/utils/array/MoveAbove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/MoveAbove.js -------------------------------------------------------------------------------- /src/utils/array/MoveBelow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/MoveBelow.js -------------------------------------------------------------------------------- /src/utils/array/MoveDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/MoveDown.js -------------------------------------------------------------------------------- /src/utils/array/MoveTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/MoveTo.js -------------------------------------------------------------------------------- /src/utils/array/MoveUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/MoveUp.js -------------------------------------------------------------------------------- /src/utils/array/NumberArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/NumberArray.js -------------------------------------------------------------------------------- /src/utils/array/QuickSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/QuickSelect.js -------------------------------------------------------------------------------- /src/utils/array/Range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/Range.js -------------------------------------------------------------------------------- /src/utils/array/Remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/Remove.js -------------------------------------------------------------------------------- /src/utils/array/RemoveAt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/RemoveAt.js -------------------------------------------------------------------------------- /src/utils/array/Replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/Replace.js -------------------------------------------------------------------------------- /src/utils/array/RotateLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/RotateLeft.js -------------------------------------------------------------------------------- /src/utils/array/RotateRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/RotateRight.js -------------------------------------------------------------------------------- /src/utils/array/SafeRange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/SafeRange.js -------------------------------------------------------------------------------- /src/utils/array/SendToBack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/SendToBack.js -------------------------------------------------------------------------------- /src/utils/array/SetAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/SetAll.js -------------------------------------------------------------------------------- /src/utils/array/Shuffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/Shuffle.js -------------------------------------------------------------------------------- /src/utils/array/SortByDigits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/SortByDigits.js -------------------------------------------------------------------------------- /src/utils/array/SpliceOne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/SpliceOne.js -------------------------------------------------------------------------------- /src/utils/array/StableSort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/StableSort.js -------------------------------------------------------------------------------- /src/utils/array/Swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/Swap.js -------------------------------------------------------------------------------- /src/utils/array/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/index.js -------------------------------------------------------------------------------- /src/utils/array/matrix/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/array/matrix/index.js -------------------------------------------------------------------------------- /src/utils/base64/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/base64/index.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/utils/object/Clone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/object/Clone.js -------------------------------------------------------------------------------- /src/utils/object/DeepCopy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/object/DeepCopy.js -------------------------------------------------------------------------------- /src/utils/object/Extend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/object/Extend.js -------------------------------------------------------------------------------- /src/utils/object/GetValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/object/GetValue.js -------------------------------------------------------------------------------- /src/utils/object/HasAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/object/HasAll.js -------------------------------------------------------------------------------- /src/utils/object/HasAny.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/object/HasAny.js -------------------------------------------------------------------------------- /src/utils/object/HasValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/object/HasValue.js -------------------------------------------------------------------------------- /src/utils/object/Merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/object/Merge.js -------------------------------------------------------------------------------- /src/utils/object/MergeRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/object/MergeRight.js -------------------------------------------------------------------------------- /src/utils/object/Pick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/object/Pick.js -------------------------------------------------------------------------------- /src/utils/object/SetValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/object/SetValue.js -------------------------------------------------------------------------------- /src/utils/object/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/object/index.js -------------------------------------------------------------------------------- /src/utils/string/Format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/string/Format.js -------------------------------------------------------------------------------- /src/utils/string/Pad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/string/Pad.js -------------------------------------------------------------------------------- /src/utils/string/RemoveAt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/string/RemoveAt.js -------------------------------------------------------------------------------- /src/utils/string/Reverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/string/Reverse.js -------------------------------------------------------------------------------- /src/utils/string/UUID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/string/UUID.js -------------------------------------------------------------------------------- /src/utils/string/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/src/utils/string/index.js -------------------------------------------------------------------------------- /types/SpineContainer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/types/SpineContainer.d.ts -------------------------------------------------------------------------------- /types/SpineFile.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/types/SpineFile.d.ts -------------------------------------------------------------------------------- /types/SpineGameObject.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/types/SpineGameObject.d.ts -------------------------------------------------------------------------------- /types/SpinePlugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/types/SpinePlugin.d.ts -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /types/matter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/types/matter.d.ts -------------------------------------------------------------------------------- /types/phaser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/types/phaser.d.ts -------------------------------------------------------------------------------- /types/phaser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/types/phaser.json -------------------------------------------------------------------------------- /types/spine-canvas.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/types/spine-canvas.d.ts -------------------------------------------------------------------------------- /types/spine-webgl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/types/spine-webgl.d.ts -------------------------------------------------------------------------------- /types/spine.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser/HEAD/types/spine.d.ts --------------------------------------------------------------------------------