如题,版本是1.12.2,具体求助内容如下:
有没有什么方法可以让一个原本没有亮度的物品发出光,且光源强度与下届核心/烈焰棒相似
玩家拿在手上配合动态光源可以做成低亮火把
mod、插件、原版什么的都可以
Optifine 拥有 dynamic_light.properties 文件,可以达到这种效果。
官方文档:
复制代码
官方文档:
- ###############################################################################
- # Sample configuration for OptiFine's Dynamic Lights feature.
- ###############################################################################
- # dynamic_lights.properties
- ###############################################################################
- # This file is offered without any copyright restrictions.
- # Please copy and modify it to suit your needs.
- #
- # This configuration file allows mods to define dynamic light levels for entities and items.
- # Location: "/assets/<mod_id>/optifine/dynamic_lights.properties"
- # Entity light levels
- # The entity name is automatically expanded with the mod_id.
- # The light level should be between 0 and 15.
- # For exaple:
- # entities=basalz:15 blitz:7
- entities=<entity:light> ...
- # Item light levels
- # The item name is automatically expanded with the mod_id.
- # The light level should be between 0 and 15.
- # For exaple:
- # items=florb:15 morb:7
- items=<item:light> ...