chewbranca.com

Check-in [7228a6d6b6]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Game metadata updates
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | lisp-game-jam-2020
Files: files | file ages | folders
SHA3-256: 7228a6d6b6be98cc0555be64e944c4f33645d49bd2c83f1ac584b493bc252fe8
User & Date: chewbranca 2020-04-20 03:18:33
Context
2020-04-20
03:23
s/fahombo/worpt/g check-in: 96d35b5c69 user: chewbranca tags: lisp-game-jam-2020
03:18
Game metadata updates check-in: 7228a6d6b6 user: chewbranca tags: lisp-game-jam-2020
03:07
Hack out a playable game check-in: 55dab480a6 user: chewbranca tags: lisp-game-jam-2020
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to src/fahombo/conf.lua.

1
2
3
4
5
6
7
8
9
10
love.conf = function(t)
   t.gammacorrect = true
   t.title, t.identity = "Fahombo", "fahombo"
   t.modules.joystick = false
   t.modules.physics = false
   t.window.width = 768
   t.window.height = 448
   t.window.vsync = false
   t.version = "11.3"
end


|







1
2
3
4
5
6
7
8
9
10
love.conf = function(t)
   t.gammacorrect = true
   t.title, t.identity = "Worpt", "worpt"
   t.modules.joystick = false
   t.modules.physics = false
   t.window.width = 768
   t.window.height = 448
   t.window.vsync = false
   t.version = "11.3"
end

Changes to src/fahombo/makefile.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
VERSION=0.1.0
LOVE_VERSION=11.3
NAME=worpt
ITCH_ACCOUNT=chewbranca
URL="https://chewbranca.com/dir?ci=6f88a252fe2ba468&name=src/worpt"
AUTHOR="Russell Branca {@chewbranca} <chewbranca@gmail.com>"
DESCRIPTION="Worpt is a prototype platformer using the awesome _Warped City_ art assets from https://ansimuz.itch.io/warped-city . Currently this is an engine capable of running the map.json file from the _Warped City_ demo game. The goal was for this to be the intro level and then to create new levels, and the progress is that intro level is playable and nearly complete."
LIBS := $(wildcard lib/*)
LUA := $(wildcard *.lua)
SRC := $(wildcard *.fnl)
OUT := $(patsubst %.fnl,%.lua,$(SRC))


run: $(OUT) ; love .




|
|
|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
VERSION=0.1.0
LOVE_VERSION=11.3
NAME=worpt
ITCH_ACCOUNT=chewbranca
URL=https://chewbranca.com/dir?ci=6f88a252fe2ba468&name=src/worpt
AUTHOR=Russell Branca {@chewbranca} <chewbranca@gmail.com>
DESCRIPTION=Worpt is a prototype platformer using the awesome _Warped City_ art assets from https://ansimuz.itch.io/warped-city . Currently this is an engine capable of running the map.json file from the _Warped City_ demo game. The goal was for this to be the intro level and then to create new levels, and the progress is that intro level is playable and nearly complete.
LIBS := $(wildcard lib/*)
LUA := $(wildcard *.lua)
SRC := $(wildcard *.fnl)
OUT := $(patsubst %.fnl,%.lua,$(SRC))


run: $(OUT) ; love .