Search found 15 matches

by Leonardo2450
Mon Sep 09, 2019 10:01 pm
Forum: Support and Development
Topic: I need to save variables
Replies: 3
Views: 3890

I need to save variables

Actually my project in Love2D is moving on the right track. However, I need to start with the loading / saving system and I have no idea how to do it. Can you help me? What is the easiest way and which is the most efficient?

First of all, Thanks
by Leonardo2450
Wed Aug 14, 2019 12:08 am
Forum: Support and Development
Topic: I need help with the compilation (Resolved)
Replies: 3
Views: 2128

I need help with the compilation (Resolved)

I was compiling my game but for some reason this error comes out. Attached images of the code and the organization of the attached files.

Update 14/08
Apparently it was the Ñ that did not allow loading the file. Thank you all for your ideas.
by Leonardo2450
Wed Jul 17, 2019 8:25 pm
Forum: Support and Development
Topic: Does anyone know how to keep the window above others?
Replies: 6
Views: 4513

Re: Does anyone know how to keep the window above others?

If you're only targeting Windows, you can use ffi to call the relevant WinApi functions directly - you'd need FindWindow and SetWindowPos: - Set the title of the window to some unique string (in love) - Call FindWindow [ffi] with that string to retrieve the HWND of the main window - Call SetWindowP...
by Leonardo2450
Wed Jul 17, 2019 12:15 pm
Forum: Support and Development
Topic: Does anyone know how to keep the window above others?
Replies: 6
Views: 4513

Re: Does anyone know how to keep the window above others?

raidho36 wrote: Wed Jul 17, 2019 1:43 am SDL supports this feature but it's not currently exposed in LOVE.
So what should I do?
by Leonardo2450
Wed Jul 17, 2019 12:50 am
Forum: Support and Development
Topic: Does anyone know how to keep the window above others?
Replies: 6
Views: 4513

Does anyone know how to keep the window above others?

I'm using Love2D and currently I need to make my window always the first one to be displayed. Does anyone have any idea how to do it?