Search found 659 matches

by BrotSagtMist
Fri Dec 13, 2024 9:08 am
Forum: General
Topic: Retro handheld consoles anyone?
Replies: 31
Views: 19128

Re: Retro handheld consoles anyone?

Nice one. Yea ive been buying a few of these now but as it turns out i dont have the time to work on them, so, its all on the do later pile. I am basically interested in what OS you are running there, afaik none of the devices have here have an OS that has Löve just preinstalled, altough they do hav...
by BrotSagtMist
Sat Nov 23, 2024 8:19 pm
Forum: Support and Development
Topic: Sha 256 or 512 to verify the download
Replies: 2
Views: 951

Re: Sha 256 or 512 to verify the download

Yea you are misreading that part, at least for linux. Checksums are meant to check for data integrety, they tell you if the file was properly transferred or if your drive is broken. Theoretically speaking if someone is able to pitch a compromissed program file they are 100% also able to pitch a modi...
by BrotSagtMist
Mon Oct 21, 2024 7:37 am
Forum: Support and Development
Topic: Only the last element of a table being rendered
Replies: 7
Views: 2133

Re: Only the last element of a table being rendered

Using objects is a shortcut to failure.
You where looking to make a metatable prototype, not objects.

Also

Code: Select all

function love.draw()
  local background = love.graphics.newImage("assets/bg.png")
You are constantly recreating resources.
by BrotSagtMist
Tue Oct 15, 2024 4:51 pm
Forum: Support and Development
Topic: Im completely new to programing and don't know how to install openGL to run LOVE2d 2024
Replies: 4
Views: 6002

Re: Im completely new to programing and don't know how to install openGL to run LOVE2d 2024

Thats an ARM chip.
You are running an ARM version of windows.
Big chance that nothing you read online will work for this thing.
You need to grab the orginal driver files for this laptop/tablet specifically from the manufactorer.
by BrotSagtMist
Sat Sep 14, 2024 8:59 pm
Forum: Support and Development
Topic: Trouble with move to mouse when clicked
Replies: 6
Views: 14078

Re: Trouble with move to mouse when clicked

Ohgosh please learn the basics first. You are not calling anything whithin love.update, you are creating stuff instead. You recreate the same thing 60 times a second. This is a call: movePlayer() This is a creation: function movePlayer() And creating alone does not run the code so essentially your l...
by BrotSagtMist
Fri Sep 06, 2024 3:19 pm
Forum: General
Topic: LÖVE 11.5 released!
Replies: 36
Views: 606226

Re: LÖVE 11.5 released!

Nothing of this is a bug.
by BrotSagtMist
Thu Sep 05, 2024 6:46 pm
Forum: Support and Development
Topic: Sound and music cut out after a while for no apparent reason.
Replies: 8
Views: 14515

Re: Sound and music cut out after a while for no apparent reason.

Nice game, not the stuff i like to play tho.
I seem to be unable to trigger any bugs. Where yourself able to trigger it on more than just your own box?
by BrotSagtMist
Sat Aug 24, 2024 5:14 pm
Forum: Support and Development
Topic: Fullscreen on mobile causing issues with love.graphics.getWidth()
Replies: 7
Views: 6259

Re: Fullscreen on mobile causing issues with love.graphics.getWidth()

love.resize Is a callback, it calls itself :D
It only needs to exist somewhere.
by BrotSagtMist
Sat Aug 24, 2024 4:30 pm
Forum: Support and Development
Topic: Fullscreen on mobile causing issues with love.graphics.getWidth()
Replies: 7
Views: 6259

Re: Fullscreen on mobile causing issues with love.graphics.getWidth()

Yea thats dpi scale for you.
Thinking out loud here:
If getWidth shows the window size then the side bar phasing out should trigger a resize. So having

Code: Select all

function love.resize(w, h)
 Width=w 
end
Should work.
by BrotSagtMist
Sat Aug 24, 2024 3:06 pm
Forum: Support and Development
Topic: How often can I update the window title?
Replies: 7
Views: 7103

Re: How often can I update the window title?

Window titles are a bad idea to place information in because you never know what window management your users have and how it will be cut away. Does the user even have a Title? This also affects how changable it is, different OS and WMs and such, likely you can do framerate speed for 90% of users bu...