Alpha V0.4

This commit is contained in:
MrZ_26
2020-02-04 19:27:13 +08:00
parent dd7beca9ce
commit 4c4bae854f
26 changed files with 625 additions and 481 deletions

View File

@@ -1,49 +1,48 @@
function love.conf(t)
local X=nil
t.identity="Techmino"--The name of the save directory (string)
t.appendidentity=X--Search files in source directory before save directory (boolean)
t.version="11.1"
t.console=X
t.accelerometerjoystick=X--Enable the accelerometer on iOS and Android by exposing it as a Joystick (boolean)
t.gammacorrect=true
t.audio.mixwithsystem=true--Switch on to keep background music playing
local X=nil
t.identity="Techmino"--The name of the save directory (string)
t.appendidentity=X--Search files in source directory before save directory (boolean)
t.version="11.1"
t.console=X
t.accelerometerjoystick=X--Enable the accelerometer on iOS and Android by exposing it as a Joystick (boolean)
t.gammacorrect=true
t.audio.mixwithsystem=true--Switch on to keep background music playing
t.window.title="Techmino V0.3"
t.window.icon="/image/icon.png"
t.window.width=1280
t.window.height=720
t.window.borderless=X
t.window.resizable=true
t.window.minwidth=640
t.window.minheight=360
t.window.fullscreen=X
t.window.fullscreentype="desktop"--Choose between "desktop" fullscreen or "exclusive" fullscreen mode (string)
t.window.vsync=1
t.window.msaa=X--The number of samples to use with multi-sampled antialiasing (number)
t.window.depth=X--The number of bits per sample in the depth buffer
t.window.stencil=1--The number of bits per sample in the stencil buffer
t.window.display=1--Monitor ID
t.window.highdpi=X--Enable high-dpi mode for the window on a Retina display (boolean)
t.window.x=nil
t.window.y=nil
local W=t.window
W.title="Techmino V0.4"
W.icon="/image/icon.png"
W.width,W.height=1280,720
W.borderless=X
W.resizable=true
W.minwidth,W.minheight=640,360
W.fullscreentype="desktop"--Choose between "desktop" fullscreen or "exclusive" fullscreen mode (string)
W.fullscreen=X
W.vsync=1
W.msaa=X--The number of samples to use with multi-sampled antialiasing (number)
W.depth=X--The number of bits per sample in the depth buffer
W.stencil=1--The number of bits per sample in the stencil buffer
W.display=1--Monitor ID
W.highdpi=X--Enable high-dpi mode for the window on a Retina display (boolean)
W.x,W.y=nil
t.modules.window=true
t.modules.system=true
t.modules.audio=true
t.modules.data=true
t.modules.event=true
t.modules.font=true
t.modules.graphics=true
t.modules.image=true
t.modules.joystick=true
t.modules.keyboard=true
t.modules.math=true
t.modules.mouse=true
t.modules.sound=true
t.modules.timer=true
t.modules.touch=true
local M=t.modules
M.window=true
M.system=true
M.audio=true
M.data=true
M.event=true
M.font=true
M.graphics=true
M.image=true
M.joystick=true
M.keyboard=true
M.math=true
M.mouse=true
M.sound=true
M.timer=true
M.touch=true
t.modules.physics=X
t.modules.thread=X
t.modules.video=X
M.physics=X
M.thread=X
M.video=X
end