Skip to content

Games written in https://love2d.org/, a framework for making 2D games in Lua.

Notifications You must be signed in to change notification settings

alifeee/love-games

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Love games!

Games written in https://love2d.org/, a framework for making 2D games in Lua.

To run games

Follow Love install directions.

Either run the games with love in the terminal (or lovec for console support - for print())

love ./game-directory

or drag the folder onto love.exe

To build games into executables

Following instructions from https://love2d.org/wiki/Game_Distribution

In Windows, using command prompt (for "catch-ball" game, replace as necessary).

With love.exe moved to root repository directory.

cd catch-ball
tar -a -c -f ../catch-ball.zip *
cd ..
ren catch-ball.zip catch-ball.love
copy /b love.exe+catch-ball.love build\catch-ball.exe

Then, you need to put the .exe in a folder with all contents from ./dlls.

The final game is shareable as the folder (zipped).