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
- Shooter by Gaméliès
- Slay The Spire by Robotality
- Paperama by FDG Entertainment GmbH & Co.KG
- Pathway By Robotality
- Zombie Age 3 by DivMob
- Shipwrecked:Castaway Island by Rockyou Inc.
- Epic Heroes War by DivMob
- DISTRAINT: Pocket Pixel Horror by Jesse Makkonen
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
LikeLike
Hello, As far as I know LibGDX 1.9.8 does run on Android. What seems to be the issue?
LikeLike
I download libgdx-1.6.1.zip and install it, everything is normal. But I installed 1.9.8, I can’t run on android. I don’t know what the problem is either.
You can provide versions 1.7 and 1.8 at the link: https://libgdx.badlogicgames.com/old-site/releases/
LikeLike
I want actors C and D to start the actions after A and B are finished. Help me
LikeLike
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
LikeLike
Then 4 actor=4 Images different. I try and 4 actor auto working at the same time :((
LikeLike
Good luck and thank you for consulting us 🙂
LikeLike