├── .gitignore ├── LICENSE ├── README.md ├── examples ├── README.md ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts └── src │ └── main │ ├── kotlin │ ├── examples │ │ ├── animation │ │ │ ├── AnimationEvents.kt │ │ │ ├── ChangeFrame.kt │ │ │ ├── ChangeTextureOnClick.kt │ │ │ ├── DestroyAnimation.kt │ │ │ ├── DynamicAnimation.kt │ │ │ ├── FrameUpdate.kt │ │ │ ├── GroupCreation.kt │ │ │ ├── LoadTexture.kt │ │ │ ├── LocalJsonObject.kt │ │ │ ├── LoopedAnimation.kt │ │ │ ├── MultipleAnims.kt │ │ │ ├── SpriteSheet.kt │ │ │ ├── StarlingAtlas.kt │ │ │ ├── StopAnimation.kt │ │ │ └── TwoFrameTest.kt │ │ ├── arcadephysics │ │ │ ├── AccelerateToPointer.kt │ │ │ ├── AngleBetween.kt │ │ │ ├── AngleToPointer.kt │ │ │ ├── AngularAcceleration.kt │ │ │ ├── AngularVelocity.kt │ │ │ ├── AsteroidsMovement.kt │ │ │ ├── BodyDebug.kt │ │ │ ├── BodyEnable.kt │ │ │ ├── BodyScale.kt │ │ │ ├── Bounce.kt │ │ │ ├── BounceAccelerator.kt │ │ │ ├── BounceKnock.kt │ │ │ ├── BounceWithGravity.kt │ │ │ ├── BoundingBox.kt │ │ │ ├── CircleBody.kt │ │ │ ├── DirectBodyMovement.kt │ │ │ ├── DistanceToPointer.kt │ │ │ ├── GlobalPause.kt │ │ │ ├── Gravity.kt │ │ │ ├── GravityAndDrag.kt │ │ │ ├── GroupVsGroup.kt │ │ │ ├── GroupVsSelf.kt │ │ │ ├── LargerBoundingBox.kt │ │ │ ├── Launcher.kt │ │ │ ├── LauncherFollow.kt │ │ │ ├── LauncherFollowWorld.kt │ │ │ ├── MassVelocityTest.kt │ │ │ ├── MoveOverDistance.kt │ │ │ ├── MoveToPointer.kt │ │ │ ├── MoveTowardsObject.kt │ │ │ ├── MultiAngleToPointer.kt │ │ │ ├── Multiball.kt │ │ │ ├── NestedGroup.kt │ │ │ ├── OffsetBoundingBox.kt │ │ │ ├── OnCollideEvent.kt │ │ │ ├── OneWayCollision.kt │ │ │ ├── PlatformerBasics.kt │ │ │ ├── PlatformerTight.kt │ │ │ ├── ProcessCallback.kt │ │ │ ├── QuadtreeCollisionInfos.kt │ │ │ ├── RotateToSprite.kt │ │ │ ├── ShipTrail.kt │ │ │ ├── ShootThePointer.kt │ │ │ ├── Snake.kt │ │ │ ├── SortDirection.kt │ │ │ ├── SortDirectionVertical.kt │ │ │ ├── SpriteVsGroup.kt │ │ │ ├── SpriteVsSprite.kt │ │ │ ├── VerticalCollision.kt │ │ │ └── WorldBoundsEvent.kt │ │ ├── audio │ │ │ ├── AudioSpriteDuration.kt │ │ │ ├── AudioSpriteExample.kt │ │ │ ├── AudioSpriteJson.kt │ │ │ ├── FadeIn.kt │ │ │ ├── Ios.kt │ │ │ ├── Loop.kt │ │ │ ├── PauseAndResume.kt │ │ │ ├── PauseAndResumeMarker.kt │ │ │ ├── PlayMusic.kt │ │ │ ├── RemoveSound.kt │ │ │ ├── RestartSound.kt │ │ │ └── SoundComplete.kt │ │ ├── basics │ │ │ ├── 01LoadAnImage.kt │ │ │ ├── 02ClickOnAnImage.kt │ │ │ ├── 03MoveAnImage.kt │ │ │ ├── 04ImageFollowInput.kt │ │ │ ├── 05LoadAnAnimation.kt │ │ │ ├── 06RenderText.kt │ │ │ ├── 07TweenAnImage.kt │ │ │ └── 08SpriteRotation.kt │ │ ├── bitmapdata │ │ │ ├── AlphaMask.kt │ │ │ ├── Atlas.kt │ │ │ ├── CopyBitmapdata.kt │ │ │ ├── CopyPixels.kt │ │ │ ├── DrawAtlasFrame.kt │ │ │ ├── DrawGroup.kt │ │ │ ├── DrawSprite.kt │ │ │ ├── GetPixel.kt │ │ │ ├── ReplaceColor.kt │ │ │ ├── SetHsl.kt │ │ │ ├── SpriteTexture.kt │ │ │ ├── TextExample.kt │ │ │ └── Tint.kt │ │ ├── buttons │ │ │ ├── ActionOnClick.kt │ │ │ ├── ButtonInAGroup.kt │ │ │ ├── ButtonScale.kt │ │ │ ├── ButtonUsingTextureAtlas.kt │ │ │ ├── CancelButton.kt │ │ │ ├── ChangingTheFrames.kt │ │ │ ├── DisableButtonOnClick.kt │ │ │ └── RotatedButtons.kt │ │ ├── camera │ │ │ ├── BasicFollow.kt │ │ │ ├── CameraCull.kt │ │ │ ├── CameraFade.kt │ │ │ ├── CameraFlash.kt │ │ │ ├── CameraLerp.kt │ │ │ ├── CameraShake.kt │ │ │ ├── CameraView.kt │ │ │ ├── Deadzone.kt │ │ │ ├── FixedToCamera.kt │ │ │ ├── FollowStyles.kt │ │ │ ├── MassCameraCull.kt │ │ │ ├── MovingTheCamera.kt │ │ │ ├── SmoothFollow.kt │ │ │ ├── WorldSprite.kt │ │ │ └── ZoomingTheCamera.kt │ │ ├── create │ │ │ ├── GenerateSprite.kt │ │ │ ├── MoreSprites.kt │ │ │ └── RatAttack.kt │ │ ├── debug │ │ │ ├── DebugCamera.kt │ │ │ ├── DebugDisplay.kt │ │ │ ├── DebugDraw.kt │ │ │ ├── DebugInput.kt │ │ │ ├── DebugPhysics.kt │ │ │ └── DebugSprite.kt │ │ ├── demoscene │ │ │ ├── AtariIntro.kt │ │ │ ├── FontFromBitmapdata.kt │ │ │ ├── RasterCarpet.kt │ │ │ ├── RasterFont.kt │ │ │ ├── Springy.kt │ │ │ ├── Starfield.kt │ │ │ └── UnlimitedBobs.kt │ │ ├── display │ │ │ ├── Arc.kt │ │ │ ├── ArcDetails.kt │ │ │ ├── ArcadePhysicsGraphicsShape.kt │ │ │ ├── CircleExample.kt │ │ │ ├── Ellipse.kt │ │ │ ├── ExtractMask.kt │ │ │ ├── Fullscreen.kt │ │ │ ├── FullscreenButtons.kt │ │ │ ├── GameBackgroundColor.kt │ │ │ ├── GenerateTextureFromGraphics.kt │ │ │ ├── Gradient.kt │ │ │ ├── Graphics2.kt │ │ │ ├── GraphicsChild.kt │ │ │ ├── GraphicsExample.kt │ │ │ ├── GraphicsInputEvents.kt │ │ │ ├── GraphicsPerf.kt │ │ │ ├── HsvColorWheel.kt │ │ │ ├── PixiRenderTexture.kt │ │ │ ├── RenderCrisp.kt │ │ │ ├── RenderTextureImage.kt │ │ │ ├── RenderTextureMirror.kt │ │ │ ├── RenderTextureRotation.kt │ │ │ ├── RenderTextureTilemap.kt │ │ │ ├── RenderTextureToTilesprite.kt │ │ │ ├── RenderTextureTrail.kt │ │ │ ├── RoundPixels.kt │ │ │ ├── SpriteShadow.kt │ │ │ ├── SpritesheetFromGraphics.kt │ │ │ ├── TintSprite.kt │ │ │ ├── TintSpriteFrame.kt │ │ │ └── Viewport.kt │ │ ├── filters │ │ │ ├── Bacteria.kt │ │ │ ├── Basic.kt │ │ │ ├── BlueDots.kt │ │ │ ├── Blur.kt │ │ │ ├── CheckerWave.kt │ │ │ ├── Dalek.kt │ │ │ ├── Dotwave.kt │ │ │ ├── Dotwave2.kt │ │ │ ├── Fire.kt │ │ │ ├── Fireball.kt │ │ │ ├── Gray.kt │ │ │ ├── Kaleidoscope.kt │ │ │ ├── Lightbeams.kt │ │ │ ├── Lightwave.kt │ │ │ ├── Marble.kt │ │ │ ├── MouseRay.kt │ │ │ ├── MouseWave.kt │ │ │ ├── MultipleShaders.kt │ │ │ ├── Pixelate.kt │ │ │ ├── PixiFilter.kt │ │ │ ├── PlaneDeformation.kt │ │ │ ├── Plasma.kt │ │ │ ├── RainbowBars.kt │ │ │ ├── RetroPlasma.kt │ │ │ ├── Rotozoomer.kt │ │ │ ├── Seascape.kt │ │ │ ├── Sinewave.kt │ │ │ ├── SinewaveFixedBase.kt │ │ │ ├── SphereTracer.kt │ │ │ ├── SpiralGalaxy.kt │ │ │ ├── StarfieldFilterExample.kt │ │ │ ├── Starlight.kt │ │ │ ├── Tunnel.kt │ │ │ ├── Undersea.kt │ │ │ ├── VduNoise.kt │ │ │ ├── VerticalBars.kt │ │ │ ├── Vortex.kt │ │ │ └── WorldFilter.kt │ │ ├── games │ │ │ ├── Breakout.kt │ │ │ ├── Defender.kt │ │ │ ├── Gemmatch.kt │ │ │ ├── Invaders.kt │ │ │ ├── MatchingPairs.kt │ │ │ ├── Simon.kt │ │ │ ├── SlidingPuzzle.kt │ │ │ ├── Starstruck.kt │ │ │ ├── Tanks.kt │ │ │ └── Yahtzee.kt │ │ ├── geometry │ │ │ ├── CenterLine.kt │ │ │ ├── Centroid.kt │ │ │ ├── CircleExample.kt │ │ │ ├── CircleRandomPoint.kt │ │ │ ├── EllipseRandomPoint.kt │ │ │ ├── LineBounds.kt │ │ │ ├── LineExample.kt │ │ │ ├── LineIntersection.kt │ │ │ ├── LineMidpoint.kt │ │ │ ├── LineRandomPoint.kt │ │ │ ├── LineReflection.kt │ │ │ ├── PlayingWithPoints.kt │ │ │ ├── PolygonContains.kt │ │ │ ├── PolygonExample.kt │ │ │ ├── QuadtreeExample.kt │ │ │ ├── RectangleExample.kt │ │ │ ├── RectangleGetPoint.kt │ │ │ ├── RectangleIntersects.kt │ │ │ ├── RectangleRandomPoint.kt │ │ │ ├── RotateLine.kt │ │ │ └── RotatePoint.kt │ │ ├── groups │ │ │ ├── AddASpriteToGroup.kt │ │ │ ├── AlignFramesToGrid.kt │ │ │ ├── AlignSpritesToGrid.kt │ │ │ ├── BringAGroupToTop.kt │ │ │ ├── CallAll.kt │ │ │ ├── CallAllAnimations.kt │ │ │ ├── CallAllInput.kt │ │ │ ├── CreateGroup.kt │ │ │ ├── CreateIfNull.kt │ │ │ ├── CreateSpriteInAGroup.kt │ │ │ ├── CreateThumbnail.kt │ │ │ ├── DepthSort.kt │ │ │ ├── DisplayOrder.kt │ │ │ ├── FilterByProperty.kt │ │ │ ├── ForEach.kt │ │ │ ├── GetFirst.kt │ │ │ ├── GetFirstDead.kt │ │ │ ├── GroupAsLayer.kt │ │ │ ├── GroupBounds.kt │ │ │ ├── GroupScale.kt │ │ │ ├── GroupTransform.kt │ │ │ ├── GroupTransformRotate.kt │ │ │ ├── GroupTransformTween.kt │ │ │ ├── HasProperty.kt │ │ │ ├── MoveToAnotherGroup.kt │ │ │ ├── NestedGroups.kt │ │ │ ├── Recycling.kt │ │ │ ├── Remove.kt │ │ │ ├── RemoveBetween.kt │ │ │ ├── RemoveCheck.kt │ │ │ ├── Replace.kt │ │ │ ├── SetAll.kt │ │ │ ├── Sort.kt │ │ │ ├── SubGroupsGroupLength.kt │ │ │ └── SwapChildrenInAGroup.kt │ │ ├── input │ │ │ ├── BoundsRect.kt │ │ │ ├── BoundsSprite.kt │ │ │ ├── BringAChildToTop.kt │ │ │ ├── ButtonDestroy.kt │ │ │ ├── ButtonOpenPopup.kt │ │ │ ├── CursorKeyMovement.kt │ │ │ ├── DownDuration.kt │ │ │ ├── Drag.kt │ │ │ ├── DragEventParameters.kt │ │ │ ├── DragScaledGroup.kt │ │ │ ├── DragSeveralSprites.kt │ │ │ ├── DragUpdate.kt │ │ │ ├── DragUpdateMultiple.kt │ │ │ ├── DropLimitation.kt │ │ │ ├── FollowMouse.kt │ │ │ ├── GameScale.kt │ │ │ ├── Gamepad.kt │ │ │ ├── GamepadAnalogButton.kt │ │ │ ├── GamepadButtons.kt │ │ │ ├── GamepadMultiplePads.kt │ │ │ ├── GroupInputEvents.kt │ │ │ ├── IgnoreChildInput.kt │ │ │ ├── InputChildPriority.kt │ │ │ ├── InputEnableGroup.kt │ │ │ ├── InputOrder.kt │ │ │ ├── InputPriority.kt │ │ │ ├── KeyExample.kt │ │ │ ├── Keyboard.kt │ │ │ ├── KeyboardHotkeys.kt │ │ │ ├── KeyboardJustpressed.kt │ │ │ ├── MotionLockHorizontal.kt │ │ │ ├── MotionLockVertical.kt │ │ │ ├── MouseButtons.kt │ │ │ ├── MultiTouch.kt │ │ │ ├── OnTap.kt │ │ │ ├── OutOfGame.kt │ │ │ ├── OutOfGameMouseUp.kt │ │ │ ├── OverrideDefaultControls.kt │ │ │ ├── PixelPerfectClickDetection.kt │ │ │ ├── PixelpickAtlas.kt │ │ │ ├── PixelpickAtlasScaled.kt │ │ │ ├── PixelpickScrollingEffect.kt │ │ │ ├── PixelpickSpritesheet.kt │ │ │ ├── PointerOver.kt │ │ │ ├── SnapOnDrag.kt │ │ │ ├── TouchEvents.kt │ │ │ └── WordInput.kt │ │ ├── loader │ │ │ ├── AssetPack.kt │ │ │ ├── CheckCache.kt │ │ │ ├── LoadAudio.kt │ │ │ ├── LoadBitmapFont.kt │ │ │ ├── LoadImage.kt │ │ │ ├── LoadJsonFile.kt │ │ │ ├── LoadSpritesheet.kt │ │ │ ├── LoadStarlingAtlas.kt │ │ │ ├── LoadTextFile.kt │ │ │ ├── LoadTextureAtlas.kt │ │ │ ├── LoadTilemapJson.kt │ │ │ ├── LoadVideo.kt │ │ │ ├── LoadXmlFile.kt │ │ │ └── PickImagesFromCache.kt │ │ ├── misc │ │ │ ├── AntialiasGame.kt │ │ │ ├── Device.kt │ │ │ ├── GameConfig.kt │ │ │ ├── Net.kt │ │ │ ├── PauseMenu.kt │ │ │ ├── RandomGenerators.kt │ │ │ ├── RepeatableRandomNumbers.kt │ │ │ ├── Template.kt │ │ │ └── WeightedPick.kt │ │ ├── p2physics │ │ │ ├── Aabb.kt │ │ │ ├── AccelerateToObject.kt │ │ │ ├── BasicMovement.kt │ │ │ ├── BodyClick.kt │ │ │ ├── BodyDebug.kt │ │ │ ├── CollideWorldBounds.kt │ │ │ ├── CollisionGroups.kt │ │ │ ├── ContactEvents.kt │ │ │ ├── ContactMaterial.kt │ │ │ ├── DistanceConstraint.kt │ │ │ ├── GearConstraint.kt │ │ │ ├── Gravity.kt │ │ │ ├── GravityScale.kt │ │ │ ├── ImpactEvents.kt │ │ │ ├── KillAndRevive.kt │ │ │ ├── KinematicBody.kt │ │ │ ├── LoadPolygon1.kt │ │ │ ├── LoadPolygon2.kt │ │ │ ├── LoadPolygon3.kt │ │ │ ├── LockConstraint.kt │ │ │ ├── MouseSpring.kt │ │ │ ├── MovementConstraint.kt │ │ │ ├── PhysicsGroup.kt │ │ │ ├── PickUpObject.kt │ │ │ ├── PlatformerMaterial.kt │ │ │ ├── PostbroadphaseCallback.kt │ │ │ ├── PrismaticConstraint.kt │ │ │ ├── RemoveSpring.kt │ │ │ ├── RevoluteConstraintExample.kt │ │ │ ├── Springs.kt │ │ │ ├── StaticBody.kt │ │ │ ├── Thrust.kt │ │ │ ├── ThrustLeftRight.kt │ │ │ ├── TilemapExample.kt │ │ │ ├── TilemapGravity.kt │ │ │ ├── TilespriteExample.kt │ │ │ ├── WorldBoundary.kt │ │ │ └── WorldMove.kt │ │ ├── particles │ │ │ ├── AutoScale.kt │ │ │ ├── ClickBurst.kt │ │ │ ├── Collision.kt │ │ │ ├── DestroyEmitter.kt │ │ │ ├── DiamondBurst.kt │ │ │ ├── EmitterWidth.kt │ │ │ ├── Firestarter.kt │ │ │ ├── Flow.kt │ │ │ ├── Glass.kt │ │ │ ├── NoRotation.kt │ │ │ ├── ParticleAlpha.kt │ │ │ ├── ParticleScale.kt │ │ │ ├── ParticlesVsPlatforms.kt │ │ │ ├── Rain.kt │ │ │ ├── RandomSprite.kt │ │ │ ├── SmokeTrail.kt │ │ │ ├── Snow.kt │ │ │ ├── TweenedEmitter.kt │ │ │ ├── WhenParticlesCollide.kt │ │ │ ├── WorldParticles.kt │ │ │ └── ZeroGravity.kt │ │ ├── sprites │ │ │ ├── AddASprite.kt │ │ │ ├── AddAnImage.kt │ │ │ ├── AddSeveralSprites.kt │ │ │ ├── AlignInRectangle.kt │ │ │ ├── AlignMultipleSprites.kt │ │ │ ├── AlignTextToSprite.kt │ │ │ ├── AlignToRectangle.kt │ │ │ ├── AlignToSprite.kt │ │ │ ├── AlignWithinSprite.kt │ │ │ ├── Anchor.kt │ │ │ ├── ChildSprites.kt │ │ │ ├── CollideWorldBounds.kt │ │ │ ├── Destroy.kt │ │ │ ├── DestroyTexture.kt │ │ │ ├── DynamicCrop.kt │ │ │ ├── FixedScale.kt │ │ │ ├── HorizontalCrop.kt │ │ │ ├── Mask.kt │ │ │ ├── MoveASprite.kt │ │ │ ├── MovementMask.kt │ │ │ ├── OutOfBounds.kt │ │ │ ├── OverlapTweenWithoutPhysics.kt │ │ │ ├── OverlapWithoutPhysics.kt │ │ │ ├── Pivot.kt │ │ │ ├── Rope.kt │ │ │ ├── RotateAndScale.kt │ │ │ ├── RotateSpriteAroundPoint.kt │ │ │ ├── RotatedAtlasFrameSupport.kt │ │ │ ├── ScaleASprite.kt │ │ │ ├── SharedSpriteTextures.kt │ │ │ ├── SpriteBounds.kt │ │ │ ├── SpriteDimensions.kt │ │ │ ├── SpriteFromBitmapdata.kt │ │ │ ├── SpriteGroupMask.kt │ │ │ ├── SpriteRotation.kt │ │ │ ├── SpriteTint.kt │ │ │ ├── Spritesheet.kt │ │ │ └── VerticalCrop.kt │ │ ├── text │ │ │ ├── BitmapFontCacheAsBitmap.kt │ │ │ ├── BitmapFontFromTextureAtlas.kt │ │ │ ├── BitmapFonts.kt │ │ │ ├── BitmapfontDrag.kt │ │ │ ├── BitmaptextAnchorX.kt │ │ │ ├── BitmaptextAnchorY.kt │ │ │ ├── BitmaptextMaxWidth.kt │ │ │ ├── BitmaptextPurgeGlyphs.kt │ │ │ ├── BitmaptextWithPhysics.kt │ │ │ ├── BitmaptextWithPhysicsUpdating.kt │ │ │ ├── CenterText.kt │ │ │ ├── CenterTextOnSprite.kt │ │ │ ├── CleanText.kt │ │ │ ├── ColoredCharacters.kt │ │ │ ├── DisplayTextWordByWord.kt │ │ │ ├── DynamicTextShadow.kt │ │ │ ├── HelloArial.kt │ │ │ ├── KernOfDuty.kt │ │ │ ├── Littera.kt │ │ │ ├── RemoveText.kt │ │ │ ├── RetroFont1.kt │ │ │ ├── RetroFont2.kt │ │ │ ├── SetPropertiesAfterCreation.kt │ │ │ ├── TextBounds.kt │ │ │ ├── TextEvents.kt │ │ │ ├── TextGradient.kt │ │ │ ├── TextLineSpacing.kt │ │ │ ├── TextReflect.kt │ │ │ ├── TextShadowStroke.kt │ │ │ ├── TextStroke.kt │ │ │ ├── TextStrokeWithColor.kt │ │ │ ├── TextTabs.kt │ │ │ ├── TextTabsFromArray.kt │ │ │ ├── TextTint.kt │ │ │ ├── TextWithPhysics.kt │ │ │ ├── UpdateText.kt │ │ │ └── WordWrap.kt │ │ ├── tilemaps │ │ │ ├── CreateFromArray.kt │ │ │ ├── CreateFromObjects.kt │ │ │ ├── CsvMap.kt │ │ │ ├── CsvMapCollide.kt │ │ │ ├── CsvMapWithP2.kt │ │ │ ├── DualView.kt │ │ │ ├── FeaturesTest.kt │ │ │ ├── FillTiles.kt │ │ │ ├── FlippedTiles.kt │ │ │ ├── MapBounce.kt │ │ │ ├── MapCollide.kt │ │ │ ├── Mario.kt │ │ │ ├── MultiLayer.kt │ │ │ ├── MultiLayerMultiTileset.kt │ │ │ ├── MultiMapCollide.kt │ │ │ ├── MultiTileset.kt │ │ │ ├── PaintTiles.kt │ │ │ ├── RandomiseTiles.kt │ │ │ ├── ReplaceTiles.kt │ │ │ ├── ResizeMap.kt │ │ │ ├── SciFly.kt │ │ │ ├── ShuffleTiles.kt │ │ │ ├── SwapTiles.kt │ │ │ ├── TileCallbacks.kt │ │ │ ├── TileProperties.kt │ │ │ ├── TilemapRayCast.kt │ │ │ └── VerticalMap.kt │ │ ├── tilesprites │ │ │ ├── AnimatedTilingSprite.kt │ │ │ ├── CollidingWithTilingSprite.kt │ │ │ ├── SpriteSheetTilingSprite.kt │ │ │ ├── TileSpriteFromAnimatedSprite.kt │ │ │ ├── TilingAtlasTrim.kt │ │ │ ├── TilingSprite.kt │ │ │ ├── TilingSpriteAtlas.kt │ │ │ └── TilingSpriteAtlas32x32.kt │ │ ├── time │ │ │ ├── BasicLoopedEvent.kt │ │ │ ├── BasicRepeatEvent.kt │ │ │ ├── BasicTimedEvent.kt │ │ │ ├── CustomTimer.kt │ │ │ ├── ElapsedSeconds.kt │ │ │ ├── MultipleTimers.kt │ │ │ ├── RemoveEvent.kt │ │ │ └── TimedSlideshow.kt │ │ ├── tweens │ │ │ ├── AlphaText.kt │ │ │ ├── Bounce.kt │ │ │ ├── Bubbles.kt │ │ │ ├── ChainedTweens.kt │ │ │ ├── CombinedTweens.kt │ │ │ ├── Earthquake.kt │ │ │ ├── Easing.kt │ │ │ ├── EasingSpritesheets.kt │ │ │ ├── FadingInASprite.kt │ │ │ ├── GenerateData.kt │ │ │ ├── Interpolation.kt │ │ │ ├── PauseTween.kt │ │ │ ├── Repeat.kt │ │ │ ├── SingleTweenReuse.kt │ │ │ ├── TweenArray.kt │ │ │ ├── TweenDelay.kt │ │ │ ├── TweenFrom.kt │ │ │ ├── TweenLoopEvent.kt │ │ │ ├── TweenRelative.kt │ │ │ ├── TweenReuse.kt │ │ │ ├── TweenRotation.kt │ │ │ ├── TweenSeveralProperties.kt │ │ │ ├── TweenTo.kt │ │ │ └── Yoyo.kt │ │ ├── video │ │ │ ├── AlphaWebm.kt │ │ │ ├── ChangeSource.kt │ │ │ ├── DolbyDigitalPlus.kt │ │ │ ├── LoadAsBlob.kt │ │ │ ├── MultipleVideos.kt │ │ │ ├── PlayVideo.kt │ │ │ ├── SnapshotBlendMode.kt │ │ │ ├── SpritesSharingVideo.kt │ │ │ ├── TakeSnapshotFromStream.kt │ │ │ └── VideoStream.kt │ │ ├── weapon │ │ │ ├── Asteroids.kt │ │ │ ├── AsteroidsBulletWrap.kt │ │ │ ├── Autofire.kt │ │ │ ├── BulletAngleVariance.kt │ │ │ ├── BulletFrameCycle.kt │ │ │ ├── BulletSpeedVariance.kt │ │ │ ├── FireMany.kt │ │ │ ├── FireManyFromTrackedSprite.kt │ │ │ ├── FireManyWithVariance.kt │ │ │ ├── FireOffsetPosition.kt │ │ │ ├── FireRate.kt │ │ │ ├── MultipleBullets.kt │ │ │ └── SingleBullet.kt │ │ └── world │ │ │ ├── FixedToCamera.kt │ │ │ ├── MoveAroundWorld.kt │ │ │ └── WorldWrap.kt │ ├── mainExamples.kt │ └── web │ │ ├── ExamplesConfig.kt │ │ └── ExamplesWeb.kt │ └── resources │ ├── README.md │ ├── index.html │ └── phaser.min.js ├── kotlin-phaser-definitions ├── build.gradle.kts ├── convention-plugins │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ └── convention.publication.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts └── src │ └── jsMain │ └── kotlin │ ├── Phaser │ ├── phaser.kt │ └── phaserExtensions.kt │ ├── Pixi │ └── pixi.kt │ └── p2 │ └── p2.kt ├── screenshot └── kotlinphaser.jpg └── template ├── build.gradle.kts ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── phaser.min.js ├── settings.gradle.kts └── src └── main ├── kotlin ├── TemplateExample.kt └── main.kt └── resources ├── assets ├── logo-text.png ├── logo.png └── phaser.png ├── index.html └── phaser.min.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/README.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/build.gradle.kts -------------------------------------------------------------------------------- /examples/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/gradle.properties -------------------------------------------------------------------------------- /examples/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /examples/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /examples/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/gradlew -------------------------------------------------------------------------------- /examples/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/gradlew.bat -------------------------------------------------------------------------------- /examples/settings.gradle.kts: -------------------------------------------------------------------------------- 1 | 2 | rootProject.name = "kotlin-phaser-examples" 3 | 4 | -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/animation/AnimationEvents.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/animation/AnimationEvents.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/animation/ChangeFrame.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/animation/ChangeFrame.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/animation/ChangeTextureOnClick.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/animation/ChangeTextureOnClick.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/animation/DestroyAnimation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/animation/DestroyAnimation.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/animation/DynamicAnimation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/animation/DynamicAnimation.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/animation/FrameUpdate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/animation/FrameUpdate.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/animation/GroupCreation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/animation/GroupCreation.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/animation/LoadTexture.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/animation/LoadTexture.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/animation/LocalJsonObject.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/animation/LocalJsonObject.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/animation/LoopedAnimation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/animation/LoopedAnimation.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/animation/MultipleAnims.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/animation/MultipleAnims.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/animation/SpriteSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/animation/SpriteSheet.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/animation/StarlingAtlas.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/animation/StarlingAtlas.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/animation/StopAnimation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/animation/StopAnimation.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/animation/TwoFrameTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/animation/TwoFrameTest.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/AccelerateToPointer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/AccelerateToPointer.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/AngleBetween.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/AngleBetween.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/AngleToPointer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/AngleToPointer.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/AngularAcceleration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/AngularAcceleration.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/AngularVelocity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/AngularVelocity.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/AsteroidsMovement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/AsteroidsMovement.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/BodyDebug.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/BodyDebug.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/BodyEnable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/BodyEnable.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/BodyScale.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/BodyScale.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/Bounce.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/Bounce.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/BounceAccelerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/BounceAccelerator.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/BounceKnock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/BounceKnock.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/BounceWithGravity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/BounceWithGravity.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/BoundingBox.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/BoundingBox.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/CircleBody.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/CircleBody.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/DirectBodyMovement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/DirectBodyMovement.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/DistanceToPointer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/DistanceToPointer.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/GlobalPause.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/GlobalPause.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/Gravity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/Gravity.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/GravityAndDrag.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/GravityAndDrag.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/GroupVsGroup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/GroupVsGroup.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/GroupVsSelf.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/GroupVsSelf.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/LargerBoundingBox.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/LargerBoundingBox.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/Launcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/Launcher.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/LauncherFollow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/LauncherFollow.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/LauncherFollowWorld.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/LauncherFollowWorld.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/MassVelocityTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/MassVelocityTest.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/MoveOverDistance.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/MoveOverDistance.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/MoveToPointer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/MoveToPointer.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/MoveTowardsObject.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/MoveTowardsObject.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/MultiAngleToPointer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/MultiAngleToPointer.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/Multiball.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/Multiball.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/NestedGroup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/NestedGroup.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/OffsetBoundingBox.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/OffsetBoundingBox.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/OnCollideEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/OnCollideEvent.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/OneWayCollision.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/OneWayCollision.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/PlatformerBasics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/PlatformerBasics.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/PlatformerTight.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/PlatformerTight.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/ProcessCallback.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/ProcessCallback.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/QuadtreeCollisionInfos.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/QuadtreeCollisionInfos.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/RotateToSprite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/RotateToSprite.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/ShipTrail.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/ShipTrail.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/ShootThePointer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/ShootThePointer.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/Snake.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/Snake.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/SortDirection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/SortDirection.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/SortDirectionVertical.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/SortDirectionVertical.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/SpriteVsGroup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/SpriteVsGroup.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/SpriteVsSprite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/SpriteVsSprite.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/VerticalCollision.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/VerticalCollision.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/arcadephysics/WorldBoundsEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/arcadephysics/WorldBoundsEvent.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/audio/AudioSpriteDuration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/audio/AudioSpriteDuration.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/audio/AudioSpriteExample.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/audio/AudioSpriteExample.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/audio/AudioSpriteJson.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/audio/AudioSpriteJson.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/audio/FadeIn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/audio/FadeIn.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/audio/Ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/audio/Ios.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/audio/Loop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/audio/Loop.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/audio/PauseAndResume.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/audio/PauseAndResume.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/audio/PauseAndResumeMarker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/audio/PauseAndResumeMarker.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/audio/PlayMusic.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/audio/PlayMusic.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/audio/RemoveSound.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/audio/RemoveSound.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/audio/RestartSound.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/audio/RestartSound.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/audio/SoundComplete.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/audio/SoundComplete.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/basics/01LoadAnImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/basics/01LoadAnImage.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/basics/02ClickOnAnImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/basics/02ClickOnAnImage.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/basics/03MoveAnImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/basics/03MoveAnImage.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/basics/04ImageFollowInput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/basics/04ImageFollowInput.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/basics/05LoadAnAnimation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/basics/05LoadAnAnimation.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/basics/06RenderText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/basics/06RenderText.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/basics/07TweenAnImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/basics/07TweenAnImage.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/basics/08SpriteRotation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/basics/08SpriteRotation.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/bitmapdata/AlphaMask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/bitmapdata/AlphaMask.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/bitmapdata/Atlas.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/bitmapdata/Atlas.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/bitmapdata/CopyBitmapdata.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/bitmapdata/CopyBitmapdata.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/bitmapdata/CopyPixels.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/bitmapdata/CopyPixels.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/bitmapdata/DrawAtlasFrame.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/bitmapdata/DrawAtlasFrame.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/bitmapdata/DrawGroup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/bitmapdata/DrawGroup.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/bitmapdata/DrawSprite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/bitmapdata/DrawSprite.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/bitmapdata/GetPixel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/bitmapdata/GetPixel.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/bitmapdata/ReplaceColor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/bitmapdata/ReplaceColor.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/bitmapdata/SetHsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/bitmapdata/SetHsl.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/bitmapdata/SpriteTexture.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/bitmapdata/SpriteTexture.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/bitmapdata/TextExample.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/bitmapdata/TextExample.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/bitmapdata/Tint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/bitmapdata/Tint.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/buttons/ActionOnClick.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/buttons/ActionOnClick.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/buttons/ButtonInAGroup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/buttons/ButtonInAGroup.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/buttons/ButtonScale.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/buttons/ButtonScale.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/buttons/ButtonUsingTextureAtlas.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/buttons/ButtonUsingTextureAtlas.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/buttons/CancelButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/buttons/CancelButton.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/buttons/ChangingTheFrames.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/buttons/ChangingTheFrames.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/buttons/DisableButtonOnClick.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/buttons/DisableButtonOnClick.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/buttons/RotatedButtons.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/buttons/RotatedButtons.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/camera/BasicFollow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/camera/BasicFollow.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/camera/CameraCull.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/camera/CameraCull.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/camera/CameraFade.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/camera/CameraFade.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/camera/CameraFlash.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/camera/CameraFlash.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/camera/CameraLerp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/camera/CameraLerp.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/camera/CameraShake.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/camera/CameraShake.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/camera/CameraView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/camera/CameraView.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/camera/Deadzone.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/camera/Deadzone.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/camera/FixedToCamera.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/camera/FixedToCamera.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/camera/FollowStyles.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/camera/FollowStyles.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/camera/MassCameraCull.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/camera/MassCameraCull.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/camera/MovingTheCamera.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/camera/MovingTheCamera.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/camera/SmoothFollow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/camera/SmoothFollow.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/camera/WorldSprite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/camera/WorldSprite.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/camera/ZoomingTheCamera.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/camera/ZoomingTheCamera.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/create/GenerateSprite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/create/GenerateSprite.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/create/MoreSprites.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/create/MoreSprites.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/create/RatAttack.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/create/RatAttack.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/debug/DebugCamera.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/debug/DebugCamera.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/debug/DebugDisplay.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/debug/DebugDisplay.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/debug/DebugDraw.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/debug/DebugDraw.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/debug/DebugInput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/debug/DebugInput.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/debug/DebugPhysics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/debug/DebugPhysics.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/debug/DebugSprite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/debug/DebugSprite.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/demoscene/AtariIntro.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/demoscene/AtariIntro.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/demoscene/FontFromBitmapdata.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/demoscene/FontFromBitmapdata.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/demoscene/RasterCarpet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/demoscene/RasterCarpet.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/demoscene/RasterFont.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/demoscene/RasterFont.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/demoscene/Springy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/demoscene/Springy.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/demoscene/Starfield.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/demoscene/Starfield.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/demoscene/UnlimitedBobs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/demoscene/UnlimitedBobs.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/Arc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/Arc.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/ArcDetails.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/ArcDetails.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/ArcadePhysicsGraphicsShape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/ArcadePhysicsGraphicsShape.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/CircleExample.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/CircleExample.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/Ellipse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/Ellipse.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/ExtractMask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/ExtractMask.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/Fullscreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/Fullscreen.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/FullscreenButtons.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/FullscreenButtons.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/GameBackgroundColor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/GameBackgroundColor.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/GenerateTextureFromGraphics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/GenerateTextureFromGraphics.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/Gradient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/Gradient.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/Graphics2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/Graphics2.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/GraphicsChild.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/GraphicsChild.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/GraphicsExample.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/GraphicsExample.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/GraphicsInputEvents.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/GraphicsInputEvents.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/GraphicsPerf.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/GraphicsPerf.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/HsvColorWheel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/HsvColorWheel.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/PixiRenderTexture.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/PixiRenderTexture.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/RenderCrisp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/RenderCrisp.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/RenderTextureImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/RenderTextureImage.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/RenderTextureMirror.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/RenderTextureMirror.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/RenderTextureRotation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/RenderTextureRotation.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/RenderTextureTilemap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/RenderTextureTilemap.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/RenderTextureToTilesprite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/RenderTextureToTilesprite.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/RenderTextureTrail.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/RenderTextureTrail.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/RoundPixels.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/RoundPixels.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/SpriteShadow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/SpriteShadow.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/SpritesheetFromGraphics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/SpritesheetFromGraphics.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/TintSprite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/TintSprite.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/TintSpriteFrame.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/TintSpriteFrame.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/display/Viewport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/display/Viewport.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/Bacteria.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/Bacteria.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/Basic.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/Basic.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/BlueDots.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/BlueDots.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/Blur.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/Blur.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/CheckerWave.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/CheckerWave.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/Dalek.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/Dalek.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/Dotwave.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/Dotwave.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/Dotwave2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/Dotwave2.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/Fire.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/Fire.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/Fireball.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/Fireball.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/Gray.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/Gray.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/Kaleidoscope.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/Kaleidoscope.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/Lightbeams.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/Lightbeams.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/Lightwave.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/Lightwave.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/Marble.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/Marble.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/MouseRay.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/MouseRay.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/MouseWave.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/MouseWave.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/MultipleShaders.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/MultipleShaders.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/Pixelate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/Pixelate.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/PixiFilter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/PixiFilter.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/PlaneDeformation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/PlaneDeformation.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/Plasma.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/Plasma.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/RainbowBars.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/RainbowBars.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/RetroPlasma.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/RetroPlasma.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/Rotozoomer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/Rotozoomer.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/Seascape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/Seascape.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/Sinewave.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/Sinewave.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/SinewaveFixedBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/SinewaveFixedBase.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/SphereTracer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/SphereTracer.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/SpiralGalaxy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/SpiralGalaxy.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/StarfieldFilterExample.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/StarfieldFilterExample.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/Starlight.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/Starlight.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/Tunnel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/Tunnel.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/Undersea.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/Undersea.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/VduNoise.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/VduNoise.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/VerticalBars.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/VerticalBars.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/Vortex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/Vortex.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/filters/WorldFilter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/filters/WorldFilter.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/games/Breakout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/games/Breakout.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/games/Defender.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/games/Defender.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/games/Gemmatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/games/Gemmatch.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/games/Invaders.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/games/Invaders.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/games/MatchingPairs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/games/MatchingPairs.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/games/Simon.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/games/Simon.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/games/SlidingPuzzle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/games/SlidingPuzzle.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/games/Starstruck.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/games/Starstruck.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/games/Tanks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/games/Tanks.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/games/Yahtzee.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/games/Yahtzee.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/geometry/CenterLine.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/geometry/CenterLine.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/geometry/Centroid.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/geometry/Centroid.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/geometry/CircleExample.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/geometry/CircleExample.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/geometry/CircleRandomPoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/geometry/CircleRandomPoint.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/geometry/EllipseRandomPoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/geometry/EllipseRandomPoint.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/geometry/LineBounds.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/geometry/LineBounds.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/geometry/LineExample.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/geometry/LineExample.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/geometry/LineIntersection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/geometry/LineIntersection.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/geometry/LineMidpoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/geometry/LineMidpoint.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/geometry/LineRandomPoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/geometry/LineRandomPoint.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/geometry/LineReflection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/geometry/LineReflection.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/geometry/PlayingWithPoints.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/geometry/PlayingWithPoints.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/geometry/PolygonContains.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/geometry/PolygonContains.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/geometry/PolygonExample.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/geometry/PolygonExample.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/geometry/QuadtreeExample.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/geometry/QuadtreeExample.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/geometry/RectangleExample.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/geometry/RectangleExample.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/geometry/RectangleGetPoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/geometry/RectangleGetPoint.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/geometry/RectangleIntersects.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/geometry/RectangleIntersects.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/geometry/RectangleRandomPoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/geometry/RectangleRandomPoint.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/geometry/RotateLine.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/geometry/RotateLine.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/geometry/RotatePoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/geometry/RotatePoint.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/AddASpriteToGroup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/AddASpriteToGroup.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/AlignFramesToGrid.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/AlignFramesToGrid.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/AlignSpritesToGrid.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/AlignSpritesToGrid.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/BringAGroupToTop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/BringAGroupToTop.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/CallAll.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/CallAll.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/CallAllAnimations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/CallAllAnimations.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/CallAllInput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/CallAllInput.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/CreateGroup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/CreateGroup.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/CreateIfNull.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/CreateIfNull.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/CreateSpriteInAGroup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/CreateSpriteInAGroup.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/CreateThumbnail.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/CreateThumbnail.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/DepthSort.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/DepthSort.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/DisplayOrder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/DisplayOrder.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/FilterByProperty.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/FilterByProperty.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/ForEach.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/ForEach.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/GetFirst.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/GetFirst.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/GetFirstDead.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/GetFirstDead.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/GroupAsLayer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/GroupAsLayer.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/GroupBounds.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/GroupBounds.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/GroupScale.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/GroupScale.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/GroupTransform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/GroupTransform.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/GroupTransformRotate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/GroupTransformRotate.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/GroupTransformTween.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/GroupTransformTween.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/HasProperty.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/HasProperty.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/MoveToAnotherGroup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/MoveToAnotherGroup.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/NestedGroups.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/NestedGroups.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/Recycling.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/Recycling.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/Remove.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/Remove.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/RemoveBetween.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/RemoveBetween.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/RemoveCheck.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/RemoveCheck.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/Replace.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/Replace.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/SetAll.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/SetAll.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/Sort.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/Sort.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/SubGroupsGroupLength.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/SubGroupsGroupLength.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/groups/SwapChildrenInAGroup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/groups/SwapChildrenInAGroup.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/BoundsRect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/BoundsRect.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/BoundsSprite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/BoundsSprite.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/BringAChildToTop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/BringAChildToTop.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/ButtonDestroy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/ButtonDestroy.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/ButtonOpenPopup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/ButtonOpenPopup.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/CursorKeyMovement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/CursorKeyMovement.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/DownDuration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/DownDuration.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/Drag.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/Drag.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/DragEventParameters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/DragEventParameters.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/DragScaledGroup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/DragScaledGroup.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/DragSeveralSprites.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/DragSeveralSprites.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/DragUpdate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/DragUpdate.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/DragUpdateMultiple.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/DragUpdateMultiple.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/DropLimitation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/DropLimitation.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/FollowMouse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/FollowMouse.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/GameScale.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/GameScale.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/Gamepad.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/Gamepad.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/GamepadAnalogButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/GamepadAnalogButton.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/GamepadButtons.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/GamepadButtons.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/GamepadMultiplePads.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/GamepadMultiplePads.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/GroupInputEvents.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/GroupInputEvents.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/IgnoreChildInput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/IgnoreChildInput.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/InputChildPriority.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/InputChildPriority.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/InputEnableGroup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/InputEnableGroup.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/InputOrder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/InputOrder.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/InputPriority.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/InputPriority.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/KeyExample.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/KeyExample.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/Keyboard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/Keyboard.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/KeyboardHotkeys.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/KeyboardHotkeys.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/KeyboardJustpressed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/KeyboardJustpressed.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/MotionLockHorizontal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/MotionLockHorizontal.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/MotionLockVertical.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/MotionLockVertical.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/MouseButtons.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/MouseButtons.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/MultiTouch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/MultiTouch.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/OnTap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/OnTap.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/OutOfGame.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/OutOfGame.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/OutOfGameMouseUp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/OutOfGameMouseUp.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/OverrideDefaultControls.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/OverrideDefaultControls.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/PixelPerfectClickDetection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/PixelPerfectClickDetection.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/PixelpickAtlas.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/PixelpickAtlas.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/PixelpickAtlasScaled.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/PixelpickAtlasScaled.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/PixelpickScrollingEffect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/PixelpickScrollingEffect.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/PixelpickSpritesheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/PixelpickSpritesheet.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/PointerOver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/PointerOver.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/SnapOnDrag.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/SnapOnDrag.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/TouchEvents.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/TouchEvents.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/input/WordInput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/input/WordInput.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/loader/AssetPack.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/loader/AssetPack.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/loader/CheckCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/loader/CheckCache.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/loader/LoadAudio.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/loader/LoadAudio.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/loader/LoadBitmapFont.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/loader/LoadBitmapFont.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/loader/LoadImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/loader/LoadImage.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/loader/LoadJsonFile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/loader/LoadJsonFile.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/loader/LoadSpritesheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/loader/LoadSpritesheet.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/loader/LoadStarlingAtlas.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/loader/LoadStarlingAtlas.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/loader/LoadTextFile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/loader/LoadTextFile.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/loader/LoadTextureAtlas.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/loader/LoadTextureAtlas.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/loader/LoadTilemapJson.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/loader/LoadTilemapJson.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/loader/LoadVideo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/loader/LoadVideo.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/loader/LoadXmlFile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/loader/LoadXmlFile.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/loader/PickImagesFromCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/loader/PickImagesFromCache.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/misc/AntialiasGame.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/misc/AntialiasGame.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/misc/Device.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/misc/Device.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/misc/GameConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/misc/GameConfig.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/misc/Net.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/misc/Net.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/misc/PauseMenu.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/misc/PauseMenu.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/misc/RandomGenerators.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/misc/RandomGenerators.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/misc/RepeatableRandomNumbers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/misc/RepeatableRandomNumbers.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/misc/Template.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/misc/Template.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/misc/WeightedPick.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/misc/WeightedPick.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/Aabb.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/Aabb.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/AccelerateToObject.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/AccelerateToObject.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/BasicMovement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/BasicMovement.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/BodyClick.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/BodyClick.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/BodyDebug.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/BodyDebug.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/CollideWorldBounds.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/CollideWorldBounds.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/CollisionGroups.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/CollisionGroups.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/ContactEvents.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/ContactEvents.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/ContactMaterial.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/ContactMaterial.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/DistanceConstraint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/DistanceConstraint.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/GearConstraint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/GearConstraint.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/Gravity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/Gravity.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/GravityScale.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/GravityScale.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/ImpactEvents.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/ImpactEvents.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/KillAndRevive.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/KillAndRevive.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/KinematicBody.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/KinematicBody.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/LoadPolygon1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/LoadPolygon1.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/LoadPolygon2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/LoadPolygon2.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/LoadPolygon3.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/LoadPolygon3.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/LockConstraint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/LockConstraint.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/MouseSpring.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/MouseSpring.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/MovementConstraint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/MovementConstraint.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/PhysicsGroup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/PhysicsGroup.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/PickUpObject.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/PickUpObject.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/PlatformerMaterial.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/PlatformerMaterial.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/PostbroadphaseCallback.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/PostbroadphaseCallback.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/PrismaticConstraint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/PrismaticConstraint.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/RemoveSpring.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/RemoveSpring.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/RevoluteConstraintExample.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/RevoluteConstraintExample.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/Springs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/Springs.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/StaticBody.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/StaticBody.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/Thrust.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/Thrust.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/ThrustLeftRight.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/ThrustLeftRight.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/TilemapExample.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/TilemapExample.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/TilemapGravity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/TilemapGravity.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/TilespriteExample.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/TilespriteExample.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/WorldBoundary.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/WorldBoundary.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/p2physics/WorldMove.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/p2physics/WorldMove.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/particles/AutoScale.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/particles/AutoScale.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/particles/ClickBurst.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/particles/ClickBurst.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/particles/Collision.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/particles/Collision.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/particles/DestroyEmitter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/particles/DestroyEmitter.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/particles/DiamondBurst.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/particles/DiamondBurst.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/particles/EmitterWidth.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/particles/EmitterWidth.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/particles/Firestarter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/particles/Firestarter.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/particles/Flow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/particles/Flow.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/particles/Glass.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/particles/Glass.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/particles/NoRotation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/particles/NoRotation.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/particles/ParticleAlpha.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/particles/ParticleAlpha.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/particles/ParticleScale.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/particles/ParticleScale.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/particles/ParticlesVsPlatforms.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/particles/ParticlesVsPlatforms.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/particles/Rain.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/particles/Rain.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/particles/RandomSprite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/particles/RandomSprite.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/particles/SmokeTrail.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/particles/SmokeTrail.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/particles/Snow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/particles/Snow.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/particles/TweenedEmitter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/particles/TweenedEmitter.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/particles/WhenParticlesCollide.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/particles/WhenParticlesCollide.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/particles/WorldParticles.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/particles/WorldParticles.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/particles/ZeroGravity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/particles/ZeroGravity.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/AddASprite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/AddASprite.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/AddAnImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/AddAnImage.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/AddSeveralSprites.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/AddSeveralSprites.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/AlignInRectangle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/AlignInRectangle.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/AlignMultipleSprites.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/AlignMultipleSprites.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/AlignTextToSprite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/AlignTextToSprite.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/AlignToRectangle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/AlignToRectangle.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/AlignToSprite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/AlignToSprite.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/AlignWithinSprite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/AlignWithinSprite.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/Anchor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/Anchor.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/ChildSprites.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/ChildSprites.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/CollideWorldBounds.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/CollideWorldBounds.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/Destroy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/Destroy.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/DestroyTexture.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/DestroyTexture.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/DynamicCrop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/DynamicCrop.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/FixedScale.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/FixedScale.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/HorizontalCrop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/HorizontalCrop.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/Mask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/Mask.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/MoveASprite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/MoveASprite.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/MovementMask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/MovementMask.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/OutOfBounds.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/OutOfBounds.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/OverlapTweenWithoutPhysics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/OverlapTweenWithoutPhysics.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/OverlapWithoutPhysics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/OverlapWithoutPhysics.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/Pivot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/Pivot.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/Rope.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/Rope.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/RotateAndScale.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/RotateAndScale.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/RotateSpriteAroundPoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/RotateSpriteAroundPoint.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/RotatedAtlasFrameSupport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/RotatedAtlasFrameSupport.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/ScaleASprite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/ScaleASprite.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/SharedSpriteTextures.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/SharedSpriteTextures.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/SpriteBounds.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/SpriteBounds.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/SpriteDimensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/SpriteDimensions.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/SpriteFromBitmapdata.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/SpriteFromBitmapdata.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/SpriteGroupMask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/SpriteGroupMask.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/SpriteRotation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/SpriteRotation.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/SpriteTint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/SpriteTint.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/Spritesheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/Spritesheet.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/sprites/VerticalCrop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/sprites/VerticalCrop.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/BitmapFontCacheAsBitmap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/BitmapFontCacheAsBitmap.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/BitmapFontFromTextureAtlas.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/BitmapFontFromTextureAtlas.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/BitmapFonts.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/BitmapFonts.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/BitmapfontDrag.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/BitmapfontDrag.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/BitmaptextAnchorX.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/BitmaptextAnchorX.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/BitmaptextAnchorY.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/BitmaptextAnchorY.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/BitmaptextMaxWidth.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/BitmaptextMaxWidth.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/BitmaptextPurgeGlyphs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/BitmaptextPurgeGlyphs.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/BitmaptextWithPhysics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/BitmaptextWithPhysics.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/BitmaptextWithPhysicsUpdating.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/BitmaptextWithPhysicsUpdating.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/CenterText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/CenterText.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/CenterTextOnSprite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/CenterTextOnSprite.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/CleanText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/CleanText.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/ColoredCharacters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/ColoredCharacters.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/DisplayTextWordByWord.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/DisplayTextWordByWord.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/DynamicTextShadow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/DynamicTextShadow.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/HelloArial.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/HelloArial.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/KernOfDuty.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/KernOfDuty.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/Littera.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/Littera.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/RemoveText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/RemoveText.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/RetroFont1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/RetroFont1.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/RetroFont2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/RetroFont2.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/SetPropertiesAfterCreation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/SetPropertiesAfterCreation.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/TextBounds.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/TextBounds.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/TextEvents.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/TextEvents.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/TextGradient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/TextGradient.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/TextLineSpacing.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/TextLineSpacing.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/TextReflect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/TextReflect.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/TextShadowStroke.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/TextShadowStroke.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/TextStroke.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/TextStroke.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/TextStrokeWithColor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/TextStrokeWithColor.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/TextTabs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/TextTabs.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/TextTabsFromArray.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/TextTabsFromArray.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/TextTint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/TextTint.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/TextWithPhysics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/TextWithPhysics.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/UpdateText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/UpdateText.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/text/WordWrap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/text/WordWrap.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilemaps/CreateFromArray.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilemaps/CreateFromArray.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilemaps/CreateFromObjects.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilemaps/CreateFromObjects.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilemaps/CsvMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilemaps/CsvMap.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilemaps/CsvMapCollide.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilemaps/CsvMapCollide.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilemaps/CsvMapWithP2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilemaps/CsvMapWithP2.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilemaps/DualView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilemaps/DualView.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilemaps/FeaturesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilemaps/FeaturesTest.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilemaps/FillTiles.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilemaps/FillTiles.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilemaps/FlippedTiles.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilemaps/FlippedTiles.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilemaps/MapBounce.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilemaps/MapBounce.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilemaps/MapCollide.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilemaps/MapCollide.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilemaps/Mario.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilemaps/Mario.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilemaps/MultiLayer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilemaps/MultiLayer.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilemaps/MultiLayerMultiTileset.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilemaps/MultiLayerMultiTileset.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilemaps/MultiMapCollide.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilemaps/MultiMapCollide.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilemaps/MultiTileset.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilemaps/MultiTileset.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilemaps/PaintTiles.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilemaps/PaintTiles.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilemaps/RandomiseTiles.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilemaps/RandomiseTiles.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilemaps/ReplaceTiles.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilemaps/ReplaceTiles.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilemaps/ResizeMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilemaps/ResizeMap.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilemaps/SciFly.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilemaps/SciFly.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilemaps/ShuffleTiles.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilemaps/ShuffleTiles.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilemaps/SwapTiles.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilemaps/SwapTiles.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilemaps/TileCallbacks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilemaps/TileCallbacks.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilemaps/TileProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilemaps/TileProperties.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilemaps/TilemapRayCast.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilemaps/TilemapRayCast.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilemaps/VerticalMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilemaps/VerticalMap.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilesprites/AnimatedTilingSprite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilesprites/AnimatedTilingSprite.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilesprites/CollidingWithTilingSprite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilesprites/CollidingWithTilingSprite.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilesprites/SpriteSheetTilingSprite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilesprites/SpriteSheetTilingSprite.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilesprites/TileSpriteFromAnimatedSprite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilesprites/TileSpriteFromAnimatedSprite.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilesprites/TilingAtlasTrim.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilesprites/TilingAtlasTrim.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilesprites/TilingSprite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilesprites/TilingSprite.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilesprites/TilingSpriteAtlas.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilesprites/TilingSpriteAtlas.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tilesprites/TilingSpriteAtlas32x32.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tilesprites/TilingSpriteAtlas32x32.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/time/BasicLoopedEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/time/BasicLoopedEvent.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/time/BasicRepeatEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/time/BasicRepeatEvent.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/time/BasicTimedEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/time/BasicTimedEvent.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/time/CustomTimer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/time/CustomTimer.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/time/ElapsedSeconds.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/time/ElapsedSeconds.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/time/MultipleTimers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/time/MultipleTimers.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/time/RemoveEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/time/RemoveEvent.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/time/TimedSlideshow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/time/TimedSlideshow.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tweens/AlphaText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tweens/AlphaText.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tweens/Bounce.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tweens/Bounce.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tweens/Bubbles.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tweens/Bubbles.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tweens/ChainedTweens.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tweens/ChainedTweens.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tweens/CombinedTweens.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tweens/CombinedTweens.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tweens/Earthquake.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tweens/Earthquake.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tweens/Easing.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tweens/Easing.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tweens/EasingSpritesheets.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tweens/EasingSpritesheets.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tweens/FadingInASprite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tweens/FadingInASprite.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tweens/GenerateData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tweens/GenerateData.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tweens/Interpolation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tweens/Interpolation.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tweens/PauseTween.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tweens/PauseTween.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tweens/Repeat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tweens/Repeat.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tweens/SingleTweenReuse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tweens/SingleTweenReuse.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tweens/TweenArray.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tweens/TweenArray.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tweens/TweenDelay.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tweens/TweenDelay.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tweens/TweenFrom.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tweens/TweenFrom.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tweens/TweenLoopEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tweens/TweenLoopEvent.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tweens/TweenRelative.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tweens/TweenRelative.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tweens/TweenReuse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tweens/TweenReuse.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tweens/TweenRotation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tweens/TweenRotation.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tweens/TweenSeveralProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tweens/TweenSeveralProperties.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tweens/TweenTo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tweens/TweenTo.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/tweens/Yoyo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/tweens/Yoyo.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/video/AlphaWebm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/video/AlphaWebm.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/video/ChangeSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/video/ChangeSource.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/video/DolbyDigitalPlus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/video/DolbyDigitalPlus.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/video/LoadAsBlob.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/video/LoadAsBlob.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/video/MultipleVideos.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/video/MultipleVideos.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/video/PlayVideo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/video/PlayVideo.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/video/SnapshotBlendMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/video/SnapshotBlendMode.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/video/SpritesSharingVideo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/video/SpritesSharingVideo.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/video/TakeSnapshotFromStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/video/TakeSnapshotFromStream.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/video/VideoStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/video/VideoStream.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/weapon/Asteroids.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/weapon/Asteroids.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/weapon/AsteroidsBulletWrap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/weapon/AsteroidsBulletWrap.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/weapon/Autofire.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/weapon/Autofire.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/weapon/BulletAngleVariance.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/weapon/BulletAngleVariance.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/weapon/BulletFrameCycle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/weapon/BulletFrameCycle.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/weapon/BulletSpeedVariance.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/weapon/BulletSpeedVariance.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/weapon/FireMany.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/weapon/FireMany.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/weapon/FireManyFromTrackedSprite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/weapon/FireManyFromTrackedSprite.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/weapon/FireManyWithVariance.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/weapon/FireManyWithVariance.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/weapon/FireOffsetPosition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/weapon/FireOffsetPosition.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/weapon/FireRate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/weapon/FireRate.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/weapon/MultipleBullets.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/weapon/MultipleBullets.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/weapon/SingleBullet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/weapon/SingleBullet.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/world/FixedToCamera.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/world/FixedToCamera.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/world/MoveAroundWorld.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/world/MoveAroundWorld.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/examples/world/WorldWrap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/examples/world/WorldWrap.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/mainExamples.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/mainExamples.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/web/ExamplesConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/web/ExamplesConfig.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/web/ExamplesWeb.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/kotlin/web/ExamplesWeb.kt -------------------------------------------------------------------------------- /examples/src/main/resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/resources/README.md -------------------------------------------------------------------------------- /examples/src/main/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/resources/index.html -------------------------------------------------------------------------------- /examples/src/main/resources/phaser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/examples/src/main/resources/phaser.min.js -------------------------------------------------------------------------------- /kotlin-phaser-definitions/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/kotlin-phaser-definitions/build.gradle.kts -------------------------------------------------------------------------------- /kotlin-phaser-definitions/convention-plugins/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/kotlin-phaser-definitions/convention-plugins/build.gradle.kts -------------------------------------------------------------------------------- /kotlin-phaser-definitions/convention-plugins/src/main/kotlin/convention.publication.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/kotlin-phaser-definitions/convention-plugins/src/main/kotlin/convention.publication.gradle.kts -------------------------------------------------------------------------------- /kotlin-phaser-definitions/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/kotlin-phaser-definitions/gradle.properties -------------------------------------------------------------------------------- /kotlin-phaser-definitions/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/kotlin-phaser-definitions/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /kotlin-phaser-definitions/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/kotlin-phaser-definitions/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /kotlin-phaser-definitions/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/kotlin-phaser-definitions/gradlew -------------------------------------------------------------------------------- /kotlin-phaser-definitions/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/kotlin-phaser-definitions/gradlew.bat -------------------------------------------------------------------------------- /kotlin-phaser-definitions/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/kotlin-phaser-definitions/settings.gradle.kts -------------------------------------------------------------------------------- /kotlin-phaser-definitions/src/jsMain/kotlin/Phaser/phaser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/kotlin-phaser-definitions/src/jsMain/kotlin/Phaser/phaser.kt -------------------------------------------------------------------------------- /kotlin-phaser-definitions/src/jsMain/kotlin/Phaser/phaserExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/kotlin-phaser-definitions/src/jsMain/kotlin/Phaser/phaserExtensions.kt -------------------------------------------------------------------------------- /kotlin-phaser-definitions/src/jsMain/kotlin/Pixi/pixi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/kotlin-phaser-definitions/src/jsMain/kotlin/Pixi/pixi.kt -------------------------------------------------------------------------------- /kotlin-phaser-definitions/src/jsMain/kotlin/p2/p2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/kotlin-phaser-definitions/src/jsMain/kotlin/p2/p2.kt -------------------------------------------------------------------------------- /screenshot/kotlinphaser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/screenshot/kotlinphaser.jpg -------------------------------------------------------------------------------- /template/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/template/build.gradle.kts -------------------------------------------------------------------------------- /template/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/template/gradle.properties -------------------------------------------------------------------------------- /template/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/template/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /template/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/template/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /template/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/template/gradlew -------------------------------------------------------------------------------- /template/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/template/gradlew.bat -------------------------------------------------------------------------------- /template/phaser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/template/phaser.min.js -------------------------------------------------------------------------------- /template/settings.gradle.kts: -------------------------------------------------------------------------------- 1 | 2 | rootProject.name = "kotlin-phaser-template" 3 | 4 | -------------------------------------------------------------------------------- /template/src/main/kotlin/TemplateExample.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/template/src/main/kotlin/TemplateExample.kt -------------------------------------------------------------------------------- /template/src/main/kotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/template/src/main/kotlin/main.kt -------------------------------------------------------------------------------- /template/src/main/resources/assets/logo-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/template/src/main/resources/assets/logo-text.png -------------------------------------------------------------------------------- /template/src/main/resources/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/template/src/main/resources/assets/logo.png -------------------------------------------------------------------------------- /template/src/main/resources/assets/phaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/template/src/main/resources/assets/phaser.png -------------------------------------------------------------------------------- /template/src/main/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/template/src/main/resources/index.html -------------------------------------------------------------------------------- /template/src/main/resources/phaser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiperbou/kotlin-phaser/HEAD/template/src/main/resources/phaser.min.js --------------------------------------------------------------------------------