Search found 17 matches

by _JM_
Thu May 09, 2024 9:04 pm
Forum: Games and Creations
Topic: Hungry Bob - An arcade about a hungry cat
Replies: 3
Views: 898

Re: Hungry Bob - An arcade about a hungry cat

Hi knorke, thanks for the detailed feedback. Let me explain some of your points. I played the web version with Firefox on Linux Mint. In the menus, clicking buttons via mouse does not work. It does not click the button that the mouse is placed on but instead it clicks the button that is currently hi...
by _JM_
Wed May 08, 2024 10:29 pm
Forum: General
Topic: [Help] Techniques for scaling
Replies: 15
Views: 527

Re: [Help] Techniques for scaling

Try change the player's max_speed field.
I tried change from 150 to 136 and the jittering appears to be gone.
by _JM_
Wed May 08, 2024 9:53 pm
Forum: General
Topic: [Help] Techniques for scaling
Replies: 15
Views: 527

Re: [Help] Techniques for scaling

Hmm... try round the position of the player's body on syncPhysics method. Like this: function Player:syncPhysics() local bd = self.physics.body bd:setPosition( round(bd:getX()), round(bd:getY()) ) self.x, self.y = self.physics.body:getPosition() self.physics.body:setLinearVelocity(self.vx, self.vy) ...
by _JM_
Wed May 08, 2024 6:37 pm
Forum: General
Topic: [Help] Techniques for scaling
Replies: 15
Views: 527

Re: [Help] Techniques for scaling

I think I resolved the problem flooring player and camera position (maybe you did it the wrong way?) Anyway, I attached a .love file with the fixes These were my changes: add a global "Round" method get from lua programming book; use that function to round the camera position on playercame...
by _JM_
Mon May 06, 2024 12:33 pm
Forum: Games and Creations
Topic: Hungry Bob - An arcade about a hungry cat
Replies: 3
Views: 898

Re: Hungry Bob - An arcade about a hungry cat

Update version 1.2.1:
  • Fix mobile support on web;
  • Minor bugs fixes.

Also, I have attached a Windows version with an online leaderboard.
by _JM_
Fri May 03, 2024 8:39 pm
Forum: Games and Creations
Topic: Hungry Bob - An arcade about a hungry cat
Replies: 3
Views: 898

Hungry Bob - An arcade about a hungry cat

This is my new game made with Löve!

You can play the Web version on my itch page.

hb_v3.gif
hb_v3.gif (2.99 MiB) Viewed 898 times

Some Screenshots:

img_1714762102.png
img_1714762102.png (40.83 KiB) Viewed 898 times
img_1714761906.png
img_1714761906.png (35.13 KiB) Viewed 898 times
img_1714761747.png
img_1714761747.png (47.93 KiB) Viewed 898 times
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: 2288

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: 1244

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: 5517

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: 5545

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 5545 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 5545 times
img_1708893190.png
img_1708893190.png (42.95 KiB) Viewed 5545 times
img_1708893300.png
img_1708893300.png (65.75 KiB) Viewed 5545 times