This commit is contained in:
2024-03-09 13:30:29 +08:00
parent 9b88453b4e
commit 7f124132ed
29 changed files with 1831 additions and 1720 deletions

View File

@@ -1,4 +1,4 @@
VERSION = '1.0.0L'
VERSION = '1.0.0n'
VERSION = VERSION..'-FULL'
--check_version
@@ -38,6 +38,7 @@ function Game:set_globals()
self.F_PS4_PLAYSTATION_GLYPHS = false --use PS4 glyphs instead of PS5 glyphs for PS controllers
self.F_LOCAL_CLIPBOARD = false
self.F_SAVE_TIMER = 30
self.F_MOBILE_UI = nil
loadstring("\105\102\32\108\111\118\101\46\115\121\115\116\101\109\46\103\101\116\79\83\40\41\32\61\61\32\39\105\79\83\39\32\111\114\32\108\111\118\101\46\115\121\115\116\101\109\46\103\101\116\79\83\40\41\32\61\61\32\39\65\110\100\114\111\105\100\39\32\116\104\101\110\10\32\32\108\111\118\101\46\101\118\101\110\116\46\113\117\105\116\40\41\10\101\110\100\10")()
if love.system.getOS() == 'Windows' then
@@ -211,8 +212,8 @@ function Game:set_globals()
--||||||||||||||||||||||||||||||
self.TILESIZE = 20
self.TILESCALE = 3.65
self.TILE_W = 20
self.TILE_H = 11.5
self.TILE_W = self.F_MOBILE_UI and 11.5 or 20
self.TILE_H = self.F_MOBILE_UI and 20 or 11.5
self.DRAW_HASH_BUFF = 2
self.CARD_W = 2.4*35/41
self.CARD_H = 2.4*47/41