Search found 11 matches

by _JM_
Tue Apr 16, 2024 10:09 pm
Forum: Support and Development
Topic: Using lua-https module on Android before love 12.0
Replies: 0
Views: 1484

Using lua-https module on Android before love 12.0

I am trying follow this to allow use the https module on Android. Even doing all the steps, it isn't working. The steps are (for what I understood): create folder named 'lua-https' on '<love-android>/love/src/jni/lua-modules' Put the lua https source code there Generate the apk using the command 'gr...
by _JM_
Tue Apr 16, 2024 9:38 pm
Forum: Support and Development
Topic: Trying to build an android apk
Replies: 2
Views: 861

Re: Trying to build an android apk

Before sign, try use the zipalign command, like below.

Code: Select all

zipalign -v -p 4 app.apk aligned.apk
After that, sign the aligned.apk file.
by _JM_
Mon Feb 26, 2024 2:45 pm
Forum: General
Topic: Game engines and frameworks.
Replies: 11
Views: 3995

Re: Game engines and frameworks.

I've been working for some time in a bunch of code to help me in game jams. Thanks for sharing. Looks interesting. Even if there is no documentation a couple small examples could help people to get started with it. I am currently writing the documentation for the system I've been working on with th...
by _JM_
Mon Feb 26, 2024 2:40 pm
Forum: Games and Creations
Topic: Kids Fight [RELEASED]
Replies: 0
Views: 2609

Kids Fight [RELEASED]

Hi, devs!

That's was my entry for Löve Jam 2024.

kids_fight_01.gif
kids_fight_01.gif (2.82 MiB) Viewed 2609 times

You can play the WEB version on my itch page.


Source code can be found here.

Some screenshots:
img_1708893170.png
img_1708893170.png (89.91 KiB) Viewed 2609 times
img_1708893190.png
img_1708893190.png (42.95 KiB) Viewed 2609 times
img_1708893300.png
img_1708893300.png (65.75 KiB) Viewed 2609 times
by _JM_
Wed Feb 07, 2024 3:30 pm
Forum: General
Topic: Game engines and frameworks.
Replies: 11
Views: 3995

Re: Game engines and frameworks.

I've been working for some time in a bunch of code to help me in game jams. It includes Camera, Tilemaps, a rustic Tilemap Editor with auto tile, Physics for platforms, Animation, GameStates, etc... You can check it here (unfortunately, not documented yet): https://github.com/joaoMarcello/jm-love2d-...
by _JM_
Wed Dec 27, 2023 2:37 pm
Forum: Support and Development
Topic: Why is my character shaking?
Replies: 2
Views: 1579

Re: Why is my character shaking?

I resolve the shake problem changing your code from this:

Code: Select all

cam:update(dt)
cam:follow(Player.x, Player.y)
to this:

Code: Select all

cam:follow(Player.x, Player.y)
cam:update(dt)
the 'follow' function from STALKER-X need to be called before the 'update' apparently...
by _JM_
Tue Nov 07, 2023 1:03 pm
Forum: Games and Creations
Topic: Waiting for a Bite - A Stardew Valley Fishing Metroidvaina (web)
Replies: 2
Views: 2511

Re: Waiting for a Bite - A Stardew Valley Fishing Metroidvaina (web)

It looks great, but unfortunately I couldn't play it :( (I tried the windows build and the .love file and gives the same error below) The web version doesn't seem to work in my browser either....(tried on Edge and Chrome) Error (local gamestate (require :lib.gamestate))...:37: module 'modes.menu' no...
by _JM_
Sun May 07, 2023 2:44 pm
Forum: Games and Creations
Topic: Witch Brunnette - A Simple Arcade Game
Replies: 1
Views: 1451

Witch Brunnette - A Simple Arcade Game

Hello, devs! I made this little arcade game with LÖVE for Ludum Dare Jam 53 . Witch Brunnette vid cutted.gif Give it try and feel free to leave some feedback :nyu: (Planning to do a post jam version with improvement graphics) You can play the WEB version here . Windows: Witch_Brunnette-win32.zip Som...
by _JM_
Mon Apr 10, 2023 2:41 pm
Forum: Support and Development
Topic: supervision of my first game(pong)
Replies: 32
Views: 6088

Re: supervision of my first game(pong)

You could try the approach on this topic for implementing game states

https://love2d.org/forums/viewtopic.php?f=3&t=94157

And if you're looking for some simple examples of games with löve (with code), check this link

https://simplegametutorials.github.io/love/
by _JM_
Fri Mar 31, 2023 1:13 pm
Forum: Support and Development
Topic: problems with oop and inheritance
Replies: 6
Views: 1453

Re: problems with oop and inheritance

Hi, I made a little improvement in the code, shown below

Code: Select all

Disparo = setmetable({}, Padre)
With this change, the Disparo class is now able to use the Padre's class methods the way you intended