10000 GitHub - javafxclinic/FXGL: Java / JavaFX / Kotlin Game Library (Engine)
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

javafxclinic/FXGL

 
 

Repository files navigation

What?

JavaFX Game Development Framework

Maven Central Javadoc CI Coverage Codacy

Why?

  • No native libraries, no setup required
  • Simple and clean API
  • Brings real-world game development techniques to JavaFX

Good for ...

  • Desktop 2D / casual games
  • Hobby / academic / commercial projects
  • Learning / improving game development skills
  • Fast prototyping of game ideas

Not so good for ...

  • 3D, mobile or web

Features

promo

Minimal Example

public class BasicGameApp extends GameApplication {

    @Override
    protected void initSettings(GameSettings settings) {
        settings.setWidth(800);
        settings.setHeight(600);
        settings.setTitle("Basic Game App");
    }

    public static void main(String[] args) {
        launch(args);
    }
}

Getting Started

  • Written tutorials - Wiki
  • Video tutorials - YouTube
  • The Samples module is constantly updated with feature demos
  • Advanced examples - FXGLGames
  • Pre-built game demos (standalone .jar) - Games

Maven

<dependency>
    <groupId>com.github.almasb</groupId>
    <artifactId>fxgl</artifactId>
    <version>0.3.2</version>
</dependency>

Gradle

repositories {
    mavenCentral()
}

dependencies {
    compile 'com.github.almasb:fxgl:0.3.2'
}

Uber jar

Latest pre-compiled uber jar can be found in Releases

Download Count

  • GitHub Releases (uber jar): Github Releases
  • JitPack (up to 0.2.9): Jitpack
  • Maven Central: (0.3.0+): Maven as of 06.04.2017

Contribution

Contribute to FXGL, or support FXGL on Gratipay. Alternatively star the repo to show interest.

Contact

Chat Gmail Google+ Survey Survey2

About

Java / JavaFX / Kotlin Game Library (Engine)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 83.3%
  • Kotlin 15.9%
  • Other 0.8%
0