1. 我的minecraft版本是1.20.1,Forge端。

  2. Radium和lithium的配置文件都是lithium.properties,文件位置在\.minecraft\versions\1.20.1-Forge\config\中

  3. 接下来是在lithium.properties配置中禁用一些设置。

  4. # This is the configuration file for Radium.
    # This file exists for debugging purposes and should not be configured otherwise.
    #
    # You can find information on editing this file and all the available options here:
    # https://github.com/jellysquid3/lithium-fabric/wiki/Configuration-File
    #
    # By default, this file will be empty except for this notice.
    #上面都是注释,是作者github,里面告诉有哪些配置参数可以关闭的。
    #下面是禁用一些配置,然后重启游戏,小方块的碰撞箱丢失问题即可解决。
    mixin.shapes=false
    mixin.shapes.blockstate_cache=false
    mixin.shapes.lazy_shape_context=false
    mixin.shapes.optimized_matching=false
    mixin.shapes.precompute_shape_arrays=false
    mixin.shapes.shape_merging=false
    mixin.shapes.specialized_shapes=false

保存配置,重启游戏才会有效果产生。效果如图所示,小方块碰撞箱正常了。

解决Little Tiles因lithium和Radium的碰撞箱优化导致雕刻后方块碰撞箱异常-第1张图片