本篇教程来自MC百科(mcmod.cn) 使用 CC BY-NC-SA 协议。

# Configuration file

#这是内置网页浏览器的配置文件说明,基于游戏版本1.12.2,模组版本1.0。其中ture为开启,false为关闭。

client {【客户端设置】

    # If true, the volume of YouTube videos will change depending on how far you are

    #【开启后,播放油管视频时声音会随着距离屏幕的远近改变,默认为开启】

    B:enableSoundDistance=true


    # All screens outside this range will be unloaded

    #【超出此距离的屏幕会被卸载,默认为30】

    D:loadDistance=30.0


    # All unloaded screens inside this range will be loaded

    #【已卸载的屏幕进入该距离后会被重新加载,默认为32】

    D:unloadDistance=32.0


    # Volume for YouTube videos. This will have no effect if enableSoundDistance is set to false

    #【油管视频音量设置。该选项仅在第一项(根据距离调节音量)启用时生效,默认为100】

    D:ytVolume=100.0

}

main {【模组主体设置】

    # An array of domain names you don't want to load.

    #【禁止加载的域名列表】

    S:blacklist <

     >


    # If true, the ownership thief item will be disabled

    #【开启后,所有权窃取器将被禁用,默认为关闭】

    B:disableOwnershipThief=false


    # If true, breaking the minePad is required to craft upgrades.

    #【开启后,合成升级组件需要破损的平板电脑】

    B:hardRecipes=true


    # The URL that will be loaded each time you create a screen

    #【创建屏幕时默认显示的界面(即首页)】

    S:homepage=mod://webdisplays/main.html


    # Maximum horizontal screen resolution, in pixels

    #【屏幕的最大横向分辨率,单位为像素.默认为1920】

    I:maxResolutionX=1920


    # Maximum vertical screen resolution, in pixels

    #【屏幕的最大竖向分辨率,单位为像素。默认为1080】

    I:maxResolutionY=1080


    # Maximum screen width, in blocks. Resolution will be clamped by maxResolutionX.

    #【搭建屏幕时的最大宽度,单位为方块。分辨率由最大横向分辨率控制。默认为16】

    I:maxScreenSizeX=16


    # Maximum screen height, in blocks. Resolution will be clamped by maxResolutionY.

    #【搭建屏幕时的最大高度,单位为方块。分辨率由最大竖向分辨率控制。默认为16】

    I:maxScreenSizeY=16


    # The port used by miniserv. 0 to disable.

    #【miniserv可用的接口数,设置为0将禁用,默认为25566】

    I:miniservPort=25566


    # The amount of data that can be uploaded to miniserv, in KiB (so 1024 = 1 MiO)

    #【可上传至miniserv的最大数据量,单位为KiB(即1024 = 1MiO),默认为1024】

    I:miniservQuota=1024


    # The minePad Y resolution in pixels. padWidth = padHeight * 1.9666666666666666

    #【平板电脑的竖向分辨率,单位为像素。横向分辨率为竖向分辨率x1.9666666666666666】

    I:padHeight=480

}