Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix build config |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | lisp-game-jam-2020 |
Files: | files | file ages | folders |
SHA3-256: |
c1b0bf682ac7f4aada1ea3916f9a9655 |
User & Date: | chewbranca 2020-04-20 05:39:26 |
Context
2020-04-20
| ||
05:39 | Fix build config Leaf check-in: c1b0bf682a user: chewbranca tags: lisp-game-jam-2020 | |
03:23 | s/fahombo/worpt/g check-in: 96d35b5c69 user: chewbranca tags: lisp-game-jam-2020 | |
Changes
Changes to src/worpt/conf.lua.
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
|
| |
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/worpt/makefile.
1
2
3
4
5
6
7
8
9
10
11
12
..
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
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)) ................................................................................ cleansrc: ; rm -rf $(OUT) %.lua: %.fnl; lua lib/fennel --compile --correlate $< > $@ LOVEFILE=releases/$(NAME)-$(VERSION).love $(LOVEFILE): $(LUA) $(OUT) $(LIBS) #assets text mkdir -p releases/ find $^ -type f | LC_ALL=C sort | env TZ=UTC zip -r -q -9 -X $@ -@ love: $(LOVEFILE) # platform-specific distributables |
|
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
..
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
VERSION=0.1.3 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)) ................................................................................ cleansrc: ; rm -rf $(OUT) %.lua: %.fnl; lua lib/fennel --compile --correlate $< > $@ LOVEFILE=releases/$(NAME)-$(VERSION).love $(LOVEFILE): $(LUA) $(OUT) $(LIBS) assets #text mkdir -p releases/ find $^ -type f | LC_ALL=C sort | env TZ=UTC zip -r -q -9 -X $@ -@ love: $(LOVEFILE) # platform-specific distributables |