小丑牌吧 关注:4,222贴子:10,445
  • 8回复贴,共1
求助

怎么开窗口模式

只看楼主收藏回复

兄弟们怎么开小窗玩,急


IP属地:安徽来自Android客户端1楼2024-03-22 19:14回复
    分辨率调低,打开窗口模式


    IP属地:陕西来自iPhone客户端2楼2024-03-25 17:41
    收起回复
      2025-06-03 03:26:06
      广告
      我也想知道怎么开窗口模式


      IP属地:广东3楼2025-02-26 10:24
      回复
        找到游戏本地安装位置,Balatro\Content\Assets文件里,找到conf.lua文件,记事本打开,,
        _RELEASE_MODE = true
        _DEMO = false
        function love.conf(t)
        t.console = not _RELEASE_MODE
        t.title = 'Balatro'
        t.window.width = 1280
        t.window.height = 768
        t.window.fullscreen = false
        t.window.minwidth = 100
        t.window.minheight = 100
        local support_kbm = love._os == "gdkpc"
        t.modules.keyboard = support_kbm -- Enable the keyboard module (boolean)
        t.modules.mouse = support_kbm -- Enable the mouse module (boolean)
        end


        IP属地:北京4楼2025-02-28 14:21
        收起回复