0.190726α

This commit is contained in:
MrZ_26
2020-02-04 19:24:43 +08:00
parent f62613638e
commit 17094b988b
13 changed files with 611 additions and 463 deletions

View File

@@ -2,27 +2,27 @@ 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.2"
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.externalstorage=X
t.gammacorrect=true
-- t.audio.mixwithsystem=true--Keep background music playing when opening LOVE (boolean, iOS and Android only)
t.window.title="Techmino"
t.window.title="Techmino Alpha"
t.window.icon="/image/icon.png"
t.window.width=1000
t.window.height=600
t.window.width=1280
t.window.height=720
t.window.borderless=X
t.window.resizable=true
t.window.minwidth=500
t.window.minheight=300
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=0--The number of samples to use with multi-sampled antialiasing (number)
t.window.depth=nil--The number of bits per sample in the depth buffer
t.window.stencil=nil--The number of bits per sample in the stencil buffer
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--Index of the monitor to show the window in (number)
t.window.highdpi=X--Enable high-dpi mode for the window on a Retina display (boolean)
t.window.x=nil