Skip to content
forked from Harium/etyl

A 2D Game Engine made in pure Java

Notifications You must be signed in to change notification settings

Virtual-Hex/etyl

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Etyl Build Status Codacy Badge

Etyl is the newest version of Etyllica (a 2D Game Engine made in Java).

The project was modified to handle multiples backends (choose between AWT or LibGDX), now you can run the exactly SAME code in Desktop or Android (and possibly HTML5 and iOS in the future, thanks to LibGDX).

How to start

Maven

<dependency>
    <groupId>com.harium.etyl</groupId>
    <artifactId>etyl</artifactId>
    <version>1.3.7</version>
</dependency>

Local jar

Can't use maven? No problem, build a local jar.

Minimal Working Example

import com.harium.etyl.Etyl;
import com.harium.etyl.commons.context.Application;
import com.harium.etyl.commons.graphics.Color;
import com.harium.etyl.core.graphics.Graphics;

public class Main extends Etyl {

    public Main() {
        super(800, 600);
    }

    public static void main(String[] args) {
        Main app = new Main();
        app.setTitle("Etyl");
        app.init();
    }

    @Override
    public Application startApplication() {
        return new HelloWorld(w, h);
    }

    public class HelloWorld extends Application {
        public HelloWorld(int w, int h) {
            super(w, h);
        }

        @Override
        public void load() {}

        @Override
        public void draw(Graphics g) {
            g.setColor(Color.GREEN_ETYL);
            g.fillRect(0, 0, w, h);
        }
    }
}

Related projects

Contact

Do you have a request? Need some help?

Open an issue, lets talk.

Need some privacy?

Send me an e-mail: [email protected]

License

Basically you can use it freely (even in commercial projects) but if you make some changes in Etyl, I would like to see it as a Pull Request (and maybe add it to the project).

About

A 2D Game Engine made in pure Java

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%