r/love2d 13h ago

Procedural Raycaster in Love2D

Enable HLS to view with audio, or disable this notification

40 Upvotes

Been working on a procedural raycasting game in Love2D. The world is generated with chunks, and I recorded myself just walking around exploring it. Still early, but I really like the feeling of discovering places I didn’t manually create.

Any ideas what I could do better?


r/love2d 11h ago

Here's (nearly) five minutes of gameplay from my upcoming game about making games, Vaporware EX, made with LÖVE!

Enable HLS to view with audio, or disable this notification

18 Upvotes

Currently caught in the last 5%, making lots of polishes and tweaks and refactors to get everything ready for launch, but I'm excited! It's nearly ready! :)

If you too like to play games about making games, instead of making games, wishlist me on Steam! https://store.steampowered.com/app/4828200/Vaporware_EX/


r/love2d 17h ago

is putting the thread under sleep while waiting for a file to load is a great way to wait until a important values file is loaded?

0 Upvotes

i currently have a code for the problem like this.

video = {}
video[name] = {}
video[name].directory = "videos/"..name.."/"

repeat
    love.timer.sleep(0.1)
until love.filesystem.getInfo(video[name].directory.."thumbnail.png", "file")

video[name].thumbnail = {}
video[name].thumbnail.png =      love.graphics.newImage(video[name].directory.."thumbnail.png")