├── LICENSE ├── README.md ├── examples └── rendertext │ ├── RenderText.hx │ ├── build.hxml │ ├── index.html │ └── rendertext.js ├── haxelib.json ├── lib ├── phaser.js └── phaser.min.js └── src ├── phaser ├── Animation.hx ├── AnimationManager.hx ├── AnimationParser.hx ├── ArraySet.hx ├── ArrayUtils.hx ├── AudioSprite.hx ├── BMFont.hx ├── BMFontChar.hx ├── BitmapData.hx ├── BitmapFont.hx ├── BitmapText.hx ├── Bullet.hx ├── Button.hx ├── Cache.hx ├── CachedRenderTexture.hx ├── Camera.hx ├── Canvas.hx ├── Circle.hx ├── Color.hx ├── ColorComponents.hx ├── Create.hx ├── CursorKeys.hx ├── DOM.hx ├── Device.hx ├── DeviceButton.hx ├── Easing.hx ├── Ellipse.hx ├── Events.hx ├── Filter.hx ├── FlexGrid.hx ├── FlexLayer.hx ├── Frame.hx ├── FrameData.hx ├── Game.hx ├── GameObjectCreator.hx ├── GameObjectFactory.hx ├── Gamepad.hx ├── Graphics.hx ├── Group.hx ├── IGameConfig.hx ├── IStateCycle.hx ├── Image.hx ├── ImageCollection.hx ├── Input.hx ├── InputHandler.hx ├── Key.hx ├── KeyCode.hx ├── Keyboard.hx ├── Line.hx ├── LinkedList.hx ├── Loader.hx ├── LoaderParser.hx ├── MSPointer.hx ├── Math.hx ├── Matrix.hx ├── Mouse.hx ├── Net.hx ├── Particle.hx ├── Particles.hx ├── Phaser.hx ├── PhaserTextStyle.hx ├── Physics.hx ├── Plugin.hx ├── PluginConstructorOf.hx ├── PluginManager.hx ├── Point.hx ├── Pointer.hx ├── PointerMode.hx ├── Polygon.hx ├── QuadTree.hx ├── RGBColor.hx ├── RandomDataGenerator.hx ├── Rectangle.hx ├── RenderTexture.hx ├── RequestAnimationFrame.hx ├── ResizeCallback.hx ├── RetroFont.hx ├── Rope.hx ├── RoundedRectangle.hx ├── ScaleManager.hx ├── Signal.hx ├── SignalBinding.hx ├── SinglePad.hx ├── Sound.hx ├── SoundManager.hx ├── Sprite.hx ├── SpriteBatch.hx ├── Stage.hx ├── State.hx ├── StateManager.hx ├── Text.hx ├── Tile.hx ├── TileSprite.hx ├── Tilemap.hx ├── TilemapLayer.hx ├── TilemapLayerGL.hx ├── TilemapParser.hx ├── Tileset.hx ├── Time.hx ├── Timer.hx ├── TimerEvent.hx ├── Touch.hx ├── Tween.hx ├── TweenData.hx ├── TweenManager.hx ├── Utils.hx ├── Video.hx ├── Weapon.hx ├── WheelEventProxy.hx ├── World.hx ├── easing │ ├── Back.hx │ ├── Bounce.hx │ ├── Circular.hx │ ├── Cubic.hx │ ├── Elastic.hx │ ├── Exponential.hx │ ├── Linear.hx │ ├── Quadratic.hx │ ├── Quartic.hx │ ├── Quintic.hx │ └── Sinusoidal.hx ├── filter │ ├── BinarySerpents.hx │ ├── BlurX.hx │ ├── BlurY.hx │ ├── CausticLight.hx │ ├── CheckerWave.hx │ ├── ColorBars.hx │ ├── Fire.hx │ ├── Gray.hx │ ├── HueRotate.hx │ ├── LazerBeam.hx │ ├── LightBeam.hx │ ├── Marble.hx │ ├── Pixelate.hx │ ├── Plasma.hx │ ├── SampleFilter.hx │ └── Tunnel.hx ├── particles │ ├── Arcade.hx │ └── arcade │ │ └── Emitter.hx ├── physics │ ├── Arcade.hx │ ├── Ninja.hx │ ├── P2.hx │ ├── arcade │ │ ├── Body.hx │ │ └── FaceChoices.hx │ ├── ninja │ │ ├── AABB.hx │ │ ├── Body.hx │ │ ├── Circle.hx │ │ ├── Tile.hx │ │ └── TileType.hx │ └── p2 │ │ ├── Body.hx │ │ ├── BodyDebug.hx │ │ ├── CollisionGroup.hx │ │ ├── ContactMaterial.hx │ │ ├── DistanceConstraint.hx │ │ ├── FixtureList.hx │ │ ├── GearConstraint.hx │ │ ├── InversePointProxy.hx │ │ ├── LockConstraint.hx │ │ ├── Material.hx │ │ ├── PointProxy.hx │ │ ├── PrismaticConstraint.hx │ │ ├── RevoluteConstraint.hx │ │ └── Spring.hx ├── plugin │ ├── AStar.hx │ ├── CSS3Filters.hx │ ├── ColorHarmony.hx │ ├── Juicy.hx │ ├── SamplePlugin.hx │ ├── SaveCPU.hx │ ├── TilemapWalker.hx │ ├── VirtualJoystick.hx │ ├── Webcam.hx │ ├── astar │ │ ├── AStarNode.hx │ │ ├── AStarNodeArray.hx │ │ └── AStarPath.hx │ └── juicy │ │ ├── ScreenFlash.hx │ │ └── Trail.hx └── utils │ └── Debug.hx └── pixi ├── AbstractFilter.hx ├── AlphaMaskFilter.hx ├── Animation.hx ├── AnimationState.hx ├── AnimationStateData.hx ├── AsciiFilter.hx ├── AssetLoader.hx ├── Atlas.hx ├── AtlasAttachmentLoader.hx ├── AtlasLoader.hx ├── AtlasPage.hx ├── AtlasReader.hx ├── AtlasRegion.hx ├── AttachmentTimeline.hx ├── BaseTexture.hx ├── BitmapFontLoader.hx ├── BitmapTextStyle.hx ├── BlendModes.hx ├── BlurFilter.hx ├── BlurXFilter.hx ├── BlurYFilter.hx ├── Bone.hx ├── BoneData.hx ├── CanvasBuffer.hx ├── CanvasMaskManager.hx ├── CanvasPool.hx ├── CanvasRenderer.hx ├── CanvasTinter.hx ├── Circle.hx ├── ColorMatrixFilter.hx ├── ColorStepFilter.hx ├── ColorTimeline.hx ├── ComplexPrimitiveShader.hx ├── ConvolutionFilter.hx ├── CrossHatchFilter.hx ├── Curves.hx ├── DisplacementFilter.hx ├── DisplayObject.hx ├── DisplayObjectContainer.hx ├── DotScreenFilter.hx ├── Ellipse.hx ├── Event.hx ├── EventTarget.hx ├── FilterBlock.hx ├── FilterTexture.hx ├── Graphics.hx ├── GraphicsData.hx ├── GrayFilter.hx ├── HitArea.hx ├── IEvent.hx ├── IEventCallback.hx ├── IInteractionDataCallback.hx ├── IPixiShader.hx ├── ISpineTimeline.hx ├── ImageLoader.hx ├── InteractionData.hx ├── InteractionManager.hx ├── InvertFilter.hx ├── JsonLoader.hx ├── Loader.hx ├── MaskData.hx ├── Matrix.hx ├── Mixin.hx ├── NoiseFilter.hx ├── NormalMapFilter.hx ├── PIXI.hx ├── PixelateFilter.hx ├── PixiFastShader.hx ├── PixiRenderer.hx ├── PixiRendererOptions.hx ├── PixiShader.hx ├── Point.hx ├── Polygon.hx ├── PrimitiveShader.hx ├── RGBSplitFilter.hx ├── Rectangle.hx ├── RegionAttachment.hx ├── RenderSession.hx ├── RenderTexture.hx ├── Rope.hx ├── RotateTimeline.hx ├── RoundedRectangle.hx ├── ScaleModes.hx ├── ScaleTimeline.hx ├── SepiaFilter.hx ├── ShaderAttribute.hx ├── Skeleton.hx ├── SkeletonData.hx ├── SkeletonJson.hx ├── Skin.hx ├── Slot.hx ├── SlotData.hx ├── SmartBlurFilter.hx ├── Spine.hx ├── SpineLoader.hx ├── SpineTextureLoader.hx ├── Sprite.hx ├── SpriteBatch.hx ├── SpriteSheetLoader.hx ├── Strip.hx ├── StripShader.hx ├── TextStyle.hx ├── Texture.hx ├── TilingSprite.hx ├── TiltShiftFilter.hx ├── TiltShiftXFilter.hx ├── TiltShiftYFilter.hx ├── TranslateTimeline.hx ├── TwistFilter.hx ├── VideoTexture.hx ├── WebGLBlendModeManager.hx ├── WebGLFastSpriteBatch.hx ├── WebGLFilterManager.hx ├── WebGLGraphics.hx ├── WebGLGraphicsData.hx ├── WebGLMaskManager.hx ├── WebGLRenderer.hx ├── WebGLShaderManager.hx ├── WebGLSpriteBatch.hx └── WebGLStencilManager.hx /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/README.md -------------------------------------------------------------------------------- /examples/rendertext/RenderText.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/examples/rendertext/RenderText.hx -------------------------------------------------------------------------------- /examples/rendertext/build.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/examples/rendertext/build.hxml -------------------------------------------------------------------------------- /examples/rendertext/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/examples/rendertext/index.html -------------------------------------------------------------------------------- /examples/rendertext/rendertext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/examples/rendertext/rendertext.js -------------------------------------------------------------------------------- /haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/haxelib.json -------------------------------------------------------------------------------- /lib/phaser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/lib/phaser.js -------------------------------------------------------------------------------- /lib/phaser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/lib/phaser.min.js -------------------------------------------------------------------------------- /src/phaser/Animation.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Animation.hx -------------------------------------------------------------------------------- /src/phaser/AnimationManager.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/AnimationManager.hx -------------------------------------------------------------------------------- /src/phaser/AnimationParser.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/AnimationParser.hx -------------------------------------------------------------------------------- /src/phaser/ArraySet.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/ArraySet.hx -------------------------------------------------------------------------------- /src/phaser/ArrayUtils.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/ArrayUtils.hx -------------------------------------------------------------------------------- /src/phaser/AudioSprite.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/AudioSprite.hx -------------------------------------------------------------------------------- /src/phaser/BMFont.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/BMFont.hx -------------------------------------------------------------------------------- /src/phaser/BMFontChar.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/BMFontChar.hx -------------------------------------------------------------------------------- /src/phaser/BitmapData.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/BitmapData.hx -------------------------------------------------------------------------------- /src/phaser/BitmapFont.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/BitmapFont.hx -------------------------------------------------------------------------------- /src/phaser/BitmapText.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/BitmapText.hx -------------------------------------------------------------------------------- /src/phaser/Bullet.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Bullet.hx -------------------------------------------------------------------------------- /src/phaser/Button.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Button.hx -------------------------------------------------------------------------------- /src/phaser/Cache.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Cache.hx -------------------------------------------------------------------------------- /src/phaser/CachedRenderTexture.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/CachedRenderTexture.hx -------------------------------------------------------------------------------- /src/phaser/Camera.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Camera.hx -------------------------------------------------------------------------------- /src/phaser/Canvas.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Canvas.hx -------------------------------------------------------------------------------- /src/phaser/Circle.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Circle.hx -------------------------------------------------------------------------------- /src/phaser/Color.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Color.hx -------------------------------------------------------------------------------- /src/phaser/ColorComponents.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/ColorComponents.hx -------------------------------------------------------------------------------- /src/phaser/Create.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Create.hx -------------------------------------------------------------------------------- /src/phaser/CursorKeys.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/CursorKeys.hx -------------------------------------------------------------------------------- /src/phaser/DOM.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/DOM.hx -------------------------------------------------------------------------------- /src/phaser/Device.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Device.hx -------------------------------------------------------------------------------- /src/phaser/DeviceButton.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/DeviceButton.hx -------------------------------------------------------------------------------- /src/phaser/Easing.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Easing.hx -------------------------------------------------------------------------------- /src/phaser/Ellipse.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Ellipse.hx -------------------------------------------------------------------------------- /src/phaser/Events.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Events.hx -------------------------------------------------------------------------------- /src/phaser/Filter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Filter.hx -------------------------------------------------------------------------------- /src/phaser/FlexGrid.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/FlexGrid.hx -------------------------------------------------------------------------------- /src/phaser/FlexLayer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/FlexLayer.hx -------------------------------------------------------------------------------- /src/phaser/Frame.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Frame.hx -------------------------------------------------------------------------------- /src/phaser/FrameData.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/FrameData.hx -------------------------------------------------------------------------------- /src/phaser/Game.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Game.hx -------------------------------------------------------------------------------- /src/phaser/GameObjectCreator.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/GameObjectCreator.hx -------------------------------------------------------------------------------- /src/phaser/GameObjectFactory.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/GameObjectFactory.hx -------------------------------------------------------------------------------- /src/phaser/Gamepad.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Gamepad.hx -------------------------------------------------------------------------------- /src/phaser/Graphics.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Graphics.hx -------------------------------------------------------------------------------- /src/phaser/Group.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Group.hx -------------------------------------------------------------------------------- /src/phaser/IGameConfig.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/IGameConfig.hx -------------------------------------------------------------------------------- /src/phaser/IStateCycle.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/IStateCycle.hx -------------------------------------------------------------------------------- /src/phaser/Image.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Image.hx -------------------------------------------------------------------------------- /src/phaser/ImageCollection.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/ImageCollection.hx -------------------------------------------------------------------------------- /src/phaser/Input.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Input.hx -------------------------------------------------------------------------------- /src/phaser/InputHandler.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/InputHandler.hx -------------------------------------------------------------------------------- /src/phaser/Key.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Key.hx -------------------------------------------------------------------------------- /src/phaser/KeyCode.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/KeyCode.hx -------------------------------------------------------------------------------- /src/phaser/Keyboard.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Keyboard.hx -------------------------------------------------------------------------------- /src/phaser/Line.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Line.hx -------------------------------------------------------------------------------- /src/phaser/LinkedList.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/LinkedList.hx -------------------------------------------------------------------------------- /src/phaser/Loader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Loader.hx -------------------------------------------------------------------------------- /src/phaser/LoaderParser.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/LoaderParser.hx -------------------------------------------------------------------------------- /src/phaser/MSPointer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/MSPointer.hx -------------------------------------------------------------------------------- /src/phaser/Math.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Math.hx -------------------------------------------------------------------------------- /src/phaser/Matrix.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Matrix.hx -------------------------------------------------------------------------------- /src/phaser/Mouse.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Mouse.hx -------------------------------------------------------------------------------- /src/phaser/Net.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Net.hx -------------------------------------------------------------------------------- /src/phaser/Particle.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Particle.hx -------------------------------------------------------------------------------- /src/phaser/Particles.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Particles.hx -------------------------------------------------------------------------------- /src/phaser/Phaser.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Phaser.hx -------------------------------------------------------------------------------- /src/phaser/PhaserTextStyle.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/PhaserTextStyle.hx -------------------------------------------------------------------------------- /src/phaser/Physics.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Physics.hx -------------------------------------------------------------------------------- /src/phaser/Plugin.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Plugin.hx -------------------------------------------------------------------------------- /src/phaser/PluginConstructorOf.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/PluginConstructorOf.hx -------------------------------------------------------------------------------- /src/phaser/PluginManager.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/PluginManager.hx -------------------------------------------------------------------------------- /src/phaser/Point.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Point.hx -------------------------------------------------------------------------------- /src/phaser/Pointer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Pointer.hx -------------------------------------------------------------------------------- /src/phaser/PointerMode.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/PointerMode.hx -------------------------------------------------------------------------------- /src/phaser/Polygon.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Polygon.hx -------------------------------------------------------------------------------- /src/phaser/QuadTree.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/QuadTree.hx -------------------------------------------------------------------------------- /src/phaser/RGBColor.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/RGBColor.hx -------------------------------------------------------------------------------- /src/phaser/RandomDataGenerator.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/RandomDataGenerator.hx -------------------------------------------------------------------------------- /src/phaser/Rectangle.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Rectangle.hx -------------------------------------------------------------------------------- /src/phaser/RenderTexture.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/RenderTexture.hx -------------------------------------------------------------------------------- /src/phaser/RequestAnimationFrame.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/RequestAnimationFrame.hx -------------------------------------------------------------------------------- /src/phaser/ResizeCallback.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/ResizeCallback.hx -------------------------------------------------------------------------------- /src/phaser/RetroFont.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/RetroFont.hx -------------------------------------------------------------------------------- /src/phaser/Rope.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Rope.hx -------------------------------------------------------------------------------- /src/phaser/RoundedRectangle.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/RoundedRectangle.hx -------------------------------------------------------------------------------- /src/phaser/ScaleManager.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/ScaleManager.hx -------------------------------------------------------------------------------- /src/phaser/Signal.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Signal.hx -------------------------------------------------------------------------------- /src/phaser/SignalBinding.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/SignalBinding.hx -------------------------------------------------------------------------------- /src/phaser/SinglePad.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/SinglePad.hx -------------------------------------------------------------------------------- /src/phaser/Sound.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Sound.hx -------------------------------------------------------------------------------- /src/phaser/SoundManager.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/SoundManager.hx -------------------------------------------------------------------------------- /src/phaser/Sprite.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Sprite.hx -------------------------------------------------------------------------------- /src/phaser/SpriteBatch.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/SpriteBatch.hx -------------------------------------------------------------------------------- /src/phaser/Stage.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Stage.hx -------------------------------------------------------------------------------- /src/phaser/State.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/State.hx -------------------------------------------------------------------------------- /src/phaser/StateManager.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/StateManager.hx -------------------------------------------------------------------------------- /src/phaser/Text.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Text.hx -------------------------------------------------------------------------------- /src/phaser/Tile.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Tile.hx -------------------------------------------------------------------------------- /src/phaser/TileSprite.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/TileSprite.hx -------------------------------------------------------------------------------- /src/phaser/Tilemap.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Tilemap.hx -------------------------------------------------------------------------------- /src/phaser/TilemapLayer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/TilemapLayer.hx -------------------------------------------------------------------------------- /src/phaser/TilemapLayerGL.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/TilemapLayerGL.hx -------------------------------------------------------------------------------- /src/phaser/TilemapParser.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/TilemapParser.hx -------------------------------------------------------------------------------- /src/phaser/Tileset.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Tileset.hx -------------------------------------------------------------------------------- /src/phaser/Time.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Time.hx -------------------------------------------------------------------------------- /src/phaser/Timer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Timer.hx -------------------------------------------------------------------------------- /src/phaser/TimerEvent.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/TimerEvent.hx -------------------------------------------------------------------------------- /src/phaser/Touch.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Touch.hx -------------------------------------------------------------------------------- /src/phaser/Tween.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Tween.hx -------------------------------------------------------------------------------- /src/phaser/TweenData.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/TweenData.hx -------------------------------------------------------------------------------- /src/phaser/TweenManager.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/TweenManager.hx -------------------------------------------------------------------------------- /src/phaser/Utils.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Utils.hx -------------------------------------------------------------------------------- /src/phaser/Video.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Video.hx -------------------------------------------------------------------------------- /src/phaser/Weapon.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/Weapon.hx -------------------------------------------------------------------------------- /src/phaser/WheelEventProxy.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/WheelEventProxy.hx -------------------------------------------------------------------------------- /src/phaser/World.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/World.hx -------------------------------------------------------------------------------- /src/phaser/easing/Back.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/easing/Back.hx -------------------------------------------------------------------------------- /src/phaser/easing/Bounce.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/easing/Bounce.hx -------------------------------------------------------------------------------- /src/phaser/easing/Circular.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/easing/Circular.hx -------------------------------------------------------------------------------- /src/phaser/easing/Cubic.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/easing/Cubic.hx -------------------------------------------------------------------------------- /src/phaser/easing/Elastic.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/easing/Elastic.hx -------------------------------------------------------------------------------- /src/phaser/easing/Exponential.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/easing/Exponential.hx -------------------------------------------------------------------------------- /src/phaser/easing/Linear.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/easing/Linear.hx -------------------------------------------------------------------------------- /src/phaser/easing/Quadratic.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/easing/Quadratic.hx -------------------------------------------------------------------------------- /src/phaser/easing/Quartic.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/easing/Quartic.hx -------------------------------------------------------------------------------- /src/phaser/easing/Quintic.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/easing/Quintic.hx -------------------------------------------------------------------------------- /src/phaser/easing/Sinusoidal.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/easing/Sinusoidal.hx -------------------------------------------------------------------------------- /src/phaser/filter/BinarySerpents.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/filter/BinarySerpents.hx -------------------------------------------------------------------------------- /src/phaser/filter/BlurX.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/filter/BlurX.hx -------------------------------------------------------------------------------- /src/phaser/filter/BlurY.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/filter/BlurY.hx -------------------------------------------------------------------------------- /src/phaser/filter/CausticLight.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/filter/CausticLight.hx -------------------------------------------------------------------------------- /src/phaser/filter/CheckerWave.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/filter/CheckerWave.hx -------------------------------------------------------------------------------- /src/phaser/filter/ColorBars.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/filter/ColorBars.hx -------------------------------------------------------------------------------- /src/phaser/filter/Fire.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/filter/Fire.hx -------------------------------------------------------------------------------- /src/phaser/filter/Gray.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/filter/Gray.hx -------------------------------------------------------------------------------- /src/phaser/filter/HueRotate.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/filter/HueRotate.hx -------------------------------------------------------------------------------- /src/phaser/filter/LazerBeam.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/filter/LazerBeam.hx -------------------------------------------------------------------------------- /src/phaser/filter/LightBeam.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/filter/LightBeam.hx -------------------------------------------------------------------------------- /src/phaser/filter/Marble.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/filter/Marble.hx -------------------------------------------------------------------------------- /src/phaser/filter/Pixelate.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/filter/Pixelate.hx -------------------------------------------------------------------------------- /src/phaser/filter/Plasma.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/filter/Plasma.hx -------------------------------------------------------------------------------- /src/phaser/filter/SampleFilter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/filter/SampleFilter.hx -------------------------------------------------------------------------------- /src/phaser/filter/Tunnel.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/filter/Tunnel.hx -------------------------------------------------------------------------------- /src/phaser/particles/Arcade.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/particles/Arcade.hx -------------------------------------------------------------------------------- /src/phaser/particles/arcade/Emitter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/particles/arcade/Emitter.hx -------------------------------------------------------------------------------- /src/phaser/physics/Arcade.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/physics/Arcade.hx -------------------------------------------------------------------------------- /src/phaser/physics/Ninja.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/physics/Ninja.hx -------------------------------------------------------------------------------- /src/phaser/physics/P2.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/physics/P2.hx -------------------------------------------------------------------------------- /src/phaser/physics/arcade/Body.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/physics/arcade/Body.hx -------------------------------------------------------------------------------- /src/phaser/physics/arcade/FaceChoices.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/physics/arcade/FaceChoices.hx -------------------------------------------------------------------------------- /src/phaser/physics/ninja/AABB.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/physics/ninja/AABB.hx -------------------------------------------------------------------------------- /src/phaser/physics/ninja/Body.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/physics/ninja/Body.hx -------------------------------------------------------------------------------- /src/phaser/physics/ninja/Circle.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/physics/ninja/Circle.hx -------------------------------------------------------------------------------- /src/phaser/physics/ninja/Tile.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/physics/ninja/Tile.hx -------------------------------------------------------------------------------- /src/phaser/physics/ninja/TileType.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/physics/ninja/TileType.hx -------------------------------------------------------------------------------- /src/phaser/physics/p2/Body.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/physics/p2/Body.hx -------------------------------------------------------------------------------- /src/phaser/physics/p2/BodyDebug.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/physics/p2/BodyDebug.hx -------------------------------------------------------------------------------- /src/phaser/physics/p2/CollisionGroup.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/physics/p2/CollisionGroup.hx -------------------------------------------------------------------------------- /src/phaser/physics/p2/ContactMaterial.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/physics/p2/ContactMaterial.hx -------------------------------------------------------------------------------- /src/phaser/physics/p2/DistanceConstraint.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/physics/p2/DistanceConstraint.hx -------------------------------------------------------------------------------- /src/phaser/physics/p2/FixtureList.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/physics/p2/FixtureList.hx -------------------------------------------------------------------------------- /src/phaser/physics/p2/GearConstraint.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/physics/p2/GearConstraint.hx -------------------------------------------------------------------------------- /src/phaser/physics/p2/InversePointProxy.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/physics/p2/InversePointProxy.hx -------------------------------------------------------------------------------- /src/phaser/physics/p2/LockConstraint.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/physics/p2/LockConstraint.hx -------------------------------------------------------------------------------- /src/phaser/physics/p2/Material.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/physics/p2/Material.hx -------------------------------------------------------------------------------- /src/phaser/physics/p2/PointProxy.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/physics/p2/PointProxy.hx -------------------------------------------------------------------------------- /src/phaser/physics/p2/PrismaticConstraint.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/physics/p2/PrismaticConstraint.hx -------------------------------------------------------------------------------- /src/phaser/physics/p2/RevoluteConstraint.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/physics/p2/RevoluteConstraint.hx -------------------------------------------------------------------------------- /src/phaser/physics/p2/Spring.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/physics/p2/Spring.hx -------------------------------------------------------------------------------- /src/phaser/plugin/AStar.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/plugin/AStar.hx -------------------------------------------------------------------------------- /src/phaser/plugin/CSS3Filters.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/plugin/CSS3Filters.hx -------------------------------------------------------------------------------- /src/phaser/plugin/ColorHarmony.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/plugin/ColorHarmony.hx -------------------------------------------------------------------------------- /src/phaser/plugin/Juicy.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/plugin/Juicy.hx -------------------------------------------------------------------------------- /src/phaser/plugin/SamplePlugin.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/plugin/SamplePlugin.hx -------------------------------------------------------------------------------- /src/phaser/plugin/SaveCPU.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/plugin/SaveCPU.hx -------------------------------------------------------------------------------- /src/phaser/plugin/TilemapWalker.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/plugin/TilemapWalker.hx -------------------------------------------------------------------------------- /src/phaser/plugin/VirtualJoystick.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/plugin/VirtualJoystick.hx -------------------------------------------------------------------------------- /src/phaser/plugin/Webcam.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/plugin/Webcam.hx -------------------------------------------------------------------------------- /src/phaser/plugin/astar/AStarNode.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/plugin/astar/AStarNode.hx -------------------------------------------------------------------------------- /src/phaser/plugin/astar/AStarNodeArray.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/plugin/astar/AStarNodeArray.hx -------------------------------------------------------------------------------- /src/phaser/plugin/astar/AStarPath.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/plugin/astar/AStarPath.hx -------------------------------------------------------------------------------- /src/phaser/plugin/juicy/ScreenFlash.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/plugin/juicy/ScreenFlash.hx -------------------------------------------------------------------------------- /src/phaser/plugin/juicy/Trail.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/plugin/juicy/Trail.hx -------------------------------------------------------------------------------- /src/phaser/utils/Debug.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/phaser/utils/Debug.hx -------------------------------------------------------------------------------- /src/pixi/AbstractFilter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/AbstractFilter.hx -------------------------------------------------------------------------------- /src/pixi/AlphaMaskFilter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/AlphaMaskFilter.hx -------------------------------------------------------------------------------- /src/pixi/Animation.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/Animation.hx -------------------------------------------------------------------------------- /src/pixi/AnimationState.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/AnimationState.hx -------------------------------------------------------------------------------- /src/pixi/AnimationStateData.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/AnimationStateData.hx -------------------------------------------------------------------------------- /src/pixi/AsciiFilter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/AsciiFilter.hx -------------------------------------------------------------------------------- /src/pixi/AssetLoader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/AssetLoader.hx -------------------------------------------------------------------------------- /src/pixi/Atlas.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/Atlas.hx -------------------------------------------------------------------------------- /src/pixi/AtlasAttachmentLoader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/AtlasAttachmentLoader.hx -------------------------------------------------------------------------------- /src/pixi/AtlasLoader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/AtlasLoader.hx -------------------------------------------------------------------------------- /src/pixi/AtlasPage.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/AtlasPage.hx -------------------------------------------------------------------------------- /src/pixi/AtlasReader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/AtlasReader.hx -------------------------------------------------------------------------------- /src/pixi/AtlasRegion.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/AtlasRegion.hx -------------------------------------------------------------------------------- /src/pixi/AttachmentTimeline.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/AttachmentTimeline.hx -------------------------------------------------------------------------------- /src/pixi/BaseTexture.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/BaseTexture.hx -------------------------------------------------------------------------------- /src/pixi/BitmapFontLoader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/BitmapFontLoader.hx -------------------------------------------------------------------------------- /src/pixi/BitmapTextStyle.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/BitmapTextStyle.hx -------------------------------------------------------------------------------- /src/pixi/BlendModes.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/BlendModes.hx -------------------------------------------------------------------------------- /src/pixi/BlurFilter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/BlurFilter.hx -------------------------------------------------------------------------------- /src/pixi/BlurXFilter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/BlurXFilter.hx -------------------------------------------------------------------------------- /src/pixi/BlurYFilter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/BlurYFilter.hx -------------------------------------------------------------------------------- /src/pixi/Bone.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/Bone.hx -------------------------------------------------------------------------------- /src/pixi/BoneData.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/BoneData.hx -------------------------------------------------------------------------------- /src/pixi/CanvasBuffer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/CanvasBuffer.hx -------------------------------------------------------------------------------- /src/pixi/CanvasMaskManager.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/CanvasMaskManager.hx -------------------------------------------------------------------------------- /src/pixi/CanvasPool.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/CanvasPool.hx -------------------------------------------------------------------------------- /src/pixi/CanvasRenderer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/CanvasRenderer.hx -------------------------------------------------------------------------------- /src/pixi/CanvasTinter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/CanvasTinter.hx -------------------------------------------------------------------------------- /src/pixi/Circle.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/Circle.hx -------------------------------------------------------------------------------- /src/pixi/ColorMatrixFilter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/ColorMatrixFilter.hx -------------------------------------------------------------------------------- /src/pixi/ColorStepFilter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/ColorStepFilter.hx -------------------------------------------------------------------------------- /src/pixi/ColorTimeline.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/ColorTimeline.hx -------------------------------------------------------------------------------- /src/pixi/ComplexPrimitiveShader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/ComplexPrimitiveShader.hx -------------------------------------------------------------------------------- /src/pixi/ConvolutionFilter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/ConvolutionFilter.hx -------------------------------------------------------------------------------- /src/pixi/CrossHatchFilter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/CrossHatchFilter.hx -------------------------------------------------------------------------------- /src/pixi/Curves.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/Curves.hx -------------------------------------------------------------------------------- /src/pixi/DisplacementFilter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/DisplacementFilter.hx -------------------------------------------------------------------------------- /src/pixi/DisplayObject.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/DisplayObject.hx -------------------------------------------------------------------------------- /src/pixi/DisplayObjectContainer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/DisplayObjectContainer.hx -------------------------------------------------------------------------------- /src/pixi/DotScreenFilter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/DotScreenFilter.hx -------------------------------------------------------------------------------- /src/pixi/Ellipse.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/Ellipse.hx -------------------------------------------------------------------------------- /src/pixi/Event.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/Event.hx -------------------------------------------------------------------------------- /src/pixi/EventTarget.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/EventTarget.hx -------------------------------------------------------------------------------- /src/pixi/FilterBlock.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/FilterBlock.hx -------------------------------------------------------------------------------- /src/pixi/FilterTexture.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/FilterTexture.hx -------------------------------------------------------------------------------- /src/pixi/Graphics.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/Graphics.hx -------------------------------------------------------------------------------- /src/pixi/GraphicsData.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/GraphicsData.hx -------------------------------------------------------------------------------- /src/pixi/GrayFilter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/GrayFilter.hx -------------------------------------------------------------------------------- /src/pixi/HitArea.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/HitArea.hx -------------------------------------------------------------------------------- /src/pixi/IEvent.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/IEvent.hx -------------------------------------------------------------------------------- /src/pixi/IEventCallback.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/IEventCallback.hx -------------------------------------------------------------------------------- /src/pixi/IInteractionDataCallback.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/IInteractionDataCallback.hx -------------------------------------------------------------------------------- /src/pixi/IPixiShader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/IPixiShader.hx -------------------------------------------------------------------------------- /src/pixi/ISpineTimeline.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/ISpineTimeline.hx -------------------------------------------------------------------------------- /src/pixi/ImageLoader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/ImageLoader.hx -------------------------------------------------------------------------------- /src/pixi/InteractionData.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/InteractionData.hx -------------------------------------------------------------------------------- /src/pixi/InteractionManager.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/InteractionManager.hx -------------------------------------------------------------------------------- /src/pixi/InvertFilter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/InvertFilter.hx -------------------------------------------------------------------------------- /src/pixi/JsonLoader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/JsonLoader.hx -------------------------------------------------------------------------------- /src/pixi/Loader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/Loader.hx -------------------------------------------------------------------------------- /src/pixi/MaskData.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/MaskData.hx -------------------------------------------------------------------------------- /src/pixi/Matrix.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/Matrix.hx -------------------------------------------------------------------------------- /src/pixi/Mixin.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/Mixin.hx -------------------------------------------------------------------------------- /src/pixi/NoiseFilter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/NoiseFilter.hx -------------------------------------------------------------------------------- /src/pixi/NormalMapFilter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/NormalMapFilter.hx -------------------------------------------------------------------------------- /src/pixi/PIXI.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/PIXI.hx -------------------------------------------------------------------------------- /src/pixi/PixelateFilter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/PixelateFilter.hx -------------------------------------------------------------------------------- /src/pixi/PixiFastShader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/PixiFastShader.hx -------------------------------------------------------------------------------- /src/pixi/PixiRenderer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/PixiRenderer.hx -------------------------------------------------------------------------------- /src/pixi/PixiRendererOptions.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/PixiRendererOptions.hx -------------------------------------------------------------------------------- /src/pixi/PixiShader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/PixiShader.hx -------------------------------------------------------------------------------- /src/pixi/Point.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/Point.hx -------------------------------------------------------------------------------- /src/pixi/Polygon.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/Polygon.hx -------------------------------------------------------------------------------- /src/pixi/PrimitiveShader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/PrimitiveShader.hx -------------------------------------------------------------------------------- /src/pixi/RGBSplitFilter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/RGBSplitFilter.hx -------------------------------------------------------------------------------- /src/pixi/Rectangle.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/Rectangle.hx -------------------------------------------------------------------------------- /src/pixi/RegionAttachment.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/RegionAttachment.hx -------------------------------------------------------------------------------- /src/pixi/RenderSession.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/RenderSession.hx -------------------------------------------------------------------------------- /src/pixi/RenderTexture.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/RenderTexture.hx -------------------------------------------------------------------------------- /src/pixi/Rope.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/Rope.hx -------------------------------------------------------------------------------- /src/pixi/RotateTimeline.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/RotateTimeline.hx -------------------------------------------------------------------------------- /src/pixi/RoundedRectangle.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/RoundedRectangle.hx -------------------------------------------------------------------------------- /src/pixi/ScaleModes.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/ScaleModes.hx -------------------------------------------------------------------------------- /src/pixi/ScaleTimeline.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/ScaleTimeline.hx -------------------------------------------------------------------------------- /src/pixi/SepiaFilter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/SepiaFilter.hx -------------------------------------------------------------------------------- /src/pixi/ShaderAttribute.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/ShaderAttribute.hx -------------------------------------------------------------------------------- /src/pixi/Skeleton.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/Skeleton.hx -------------------------------------------------------------------------------- /src/pixi/SkeletonData.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/SkeletonData.hx -------------------------------------------------------------------------------- /src/pixi/SkeletonJson.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/SkeletonJson.hx -------------------------------------------------------------------------------- /src/pixi/Skin.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/Skin.hx -------------------------------------------------------------------------------- /src/pixi/Slot.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/Slot.hx -------------------------------------------------------------------------------- /src/pixi/SlotData.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/SlotData.hx -------------------------------------------------------------------------------- /src/pixi/SmartBlurFilter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/SmartBlurFilter.hx -------------------------------------------------------------------------------- /src/pixi/Spine.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/Spine.hx -------------------------------------------------------------------------------- /src/pixi/SpineLoader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/SpineLoader.hx -------------------------------------------------------------------------------- /src/pixi/SpineTextureLoader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/SpineTextureLoader.hx -------------------------------------------------------------------------------- /src/pixi/Sprite.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/Sprite.hx -------------------------------------------------------------------------------- /src/pixi/SpriteBatch.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/SpriteBatch.hx -------------------------------------------------------------------------------- /src/pixi/SpriteSheetLoader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/SpriteSheetLoader.hx -------------------------------------------------------------------------------- /src/pixi/Strip.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/Strip.hx -------------------------------------------------------------------------------- /src/pixi/StripShader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/StripShader.hx -------------------------------------------------------------------------------- /src/pixi/TextStyle.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/TextStyle.hx -------------------------------------------------------------------------------- /src/pixi/Texture.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/Texture.hx -------------------------------------------------------------------------------- /src/pixi/TilingSprite.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/TilingSprite.hx -------------------------------------------------------------------------------- /src/pixi/TiltShiftFilter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/TiltShiftFilter.hx -------------------------------------------------------------------------------- /src/pixi/TiltShiftXFilter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/TiltShiftXFilter.hx -------------------------------------------------------------------------------- /src/pixi/TiltShiftYFilter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/TiltShiftYFilter.hx -------------------------------------------------------------------------------- /src/pixi/TranslateTimeline.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/TranslateTimeline.hx -------------------------------------------------------------------------------- /src/pixi/TwistFilter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/TwistFilter.hx -------------------------------------------------------------------------------- /src/pixi/VideoTexture.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/VideoTexture.hx -------------------------------------------------------------------------------- /src/pixi/WebGLBlendModeManager.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/WebGLBlendModeManager.hx -------------------------------------------------------------------------------- /src/pixi/WebGLFastSpriteBatch.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/WebGLFastSpriteBatch.hx -------------------------------------------------------------------------------- /src/pixi/WebGLFilterManager.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/WebGLFilterManager.hx -------------------------------------------------------------------------------- /src/pixi/WebGLGraphics.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/WebGLGraphics.hx -------------------------------------------------------------------------------- /src/pixi/WebGLGraphicsData.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/WebGLGraphicsData.hx -------------------------------------------------------------------------------- /src/pixi/WebGLMaskManager.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/WebGLMaskManager.hx -------------------------------------------------------------------------------- /src/pixi/WebGLRenderer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/WebGLRenderer.hx -------------------------------------------------------------------------------- /src/pixi/WebGLShaderManager.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/WebGLShaderManager.hx -------------------------------------------------------------------------------- /src/pixi/WebGLSpriteBatch.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/WebGLSpriteBatch.hx -------------------------------------------------------------------------------- /src/pixi/WebGLStencilManager.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexonaut/haxe-phaser/HEAD/src/pixi/WebGLStencilManager.hx --------------------------------------------------------------------------------