Share My Creation Last Ninja - LibGDX Game

hi guys

this is my first libGDX game, this is the first version i am planing some bonus levels and other improvements including a tutorial, so it should be soon updated again

first i want to thank a lot to andymc for his great clony bird example and of course lots of thanks to informatix for the libGDX library.

***********************

the game is very simple, you need to get as much point as you can. you earn points by killing the bird aliens or collecting the flying diamonts.

you can jump (x2 for salto), shoot, slip (not to long because of the friction, unless you want to burn the ninja)
and also you can fly (flappy bird mode) so when you see a rocket just tap the screen :)

have fun and tell me what you think about it ...

tip: tap on the head of the ninja in the menu screen and change the color of the Headband...

LINK: https://play.google.com/store/apps/details?id=www.sagitalnr.net


1.png 2.png 3.png 4.png 5.png
 
Last edited:

ilan

Expert
Licensed User
Longtime User
thanx, to share the app put this in a button click event:

B4X:
Sub Button1_Click

Try
    Dim txtInput As String

    txtInput = "Check out Last Ninja for FREE!!" & CRLF & "https://play.google.com/store/apps/details?id=www.sagitalnr.net"

    Dim Intent1 As Intent
    Intent1.Initialize(Intent1.ACTION_SEND, "")
    Intent1.SetType("text/*")
    Intent1.PutExtra("android.intent.extra.TEXT", txtInput)
    Intent1.WrapAsIntentChooser("Choose")
    StartActivity(Intent1)
Catch
Log("Button1_click error")
End Try
 
End Sub
 
Last edited:

ilan

Expert
Licensed User
Longtime User
thanx, i am planing to improve it a little bit and add more fun to this game, hope it will pay off ...
 
Top