Introduction

LibGDX is an open source cross-platform game development framework in Java. Write your game once and run it on Windows, Linux, Mac OS X, Android, iOS, and HTML5.

LibGDX info and tutorials gets you started with your Indie Game with ready to use resources and samples.

This site complements the official LibGDX wiki or documentation.

Link to some of LibGDX.info‘s favourite games

Advertisement

7 thoughts on “Introduction

  1. Hi Libgdx Support,

    I checked Libgdx 1.9.8. It failed when running on android. You can re-check the source code and upgrade to a newer version. I see the old version of libgdx-1.6.1.zip running well on 3 platforms: android, desktop and ios.

    Starting from version 1.9.5 and above can not run on android. You can provide more new versions for old source code: https://libgdx.badlogicgames.com/old-site/releases/

    I announce this because I want the Libgdx community to continue to grow

    All the best,
    Sang

    Like

    1. you can add a sequence action to Actor A.
      A.addAction(Actions.sequence(Actions.moveTo(x,y,t), postAction);

      Where postAction is a Runnable action.
      That Runnable action can add an action on Actove C

      RunnableAction postAction = new RunnableAction();
      updateLapCountAction.setRunnable(new Runnable() {
      @Override
      public void run () {
      C.addAction(Actions.moveTo(x,y,t);
      }
      });

      I have an example of RunnableAction here: https://wordpress.com/page/libgdx.info/412

      Like

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s