Skip to content

Latest commit

 

History

History
24 lines (13 loc) · 1.65 KB

README.md

File metadata and controls

24 lines (13 loc) · 1.65 KB

This project is a collections of playable LibGDX Screens, each demonstrating a feature that can be built with the framework.

Runnable HTML5 build

Screens

  • CelShaderScreen

    A screen featuring a number of spinning reddish cubes drawn with a cel rendering process.

  • GaussianBlurShaderScreen

    A screen featuring a number of spinning reddish cubes with a Gaussian blur post process applied to the finished product.

  • TiltShiftShaderScreen

    The red blocks, again, this time with a fake tilt shift post process applied. It blurs a configurable percentage of the top and bottom viewport pixels. The blur is strongest at the very top and bottom of the viewport and fades as it moves towards the center. It looks move convincing viewed from some angles than others.

  • TurnEngineScreen

    A screen featuring 5 spheres that take turns moving on top of a plane. The player controls the green sphere and goes first. Left click sets the green sphere's target during player control.

  • TurnSystemScreen

    5 spheres again. This is another implementation of a turn-based screen, this time using the Ashley entity system to manage passing of turn control between the player and computer controlled spheres.