-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconf.lua
More file actions
35 lines (23 loc) · 791 Bytes
/
conf.lua
File metadata and controls
35 lines (23 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
--[[
This software is released under the MIT License. See LICENSE.txt for details.
Also, on a non-legal note: I do not recommend reading my code, especially not for educative
purposes. It was written over like three years, and I often forgot how I implemented several
things over time. Also, I was mostly drunk and listening to the Katamari Damacy soundtrack.
So yeah.
]]
function love.conf(t)
t.identity="hatcat"
t.author = "T-Bone IndepEndent Software Solutions"
t.title = "Hat Cat and the Obvious Crimes Against the Fundamental Laws of Physics"
t.modules.physics = false
--t.console = true
--t.release = false
t.console = false
t.release = true
if t.window then
t.window.icon = "res/icon.png"
t.window.vsync = false
else
t.screen.vsync = false
end
end