CustomModelDataExpandFix.java

net.minecraft.util.datafix.fixes.CustomModelDataExpandFix

信息

  • 全限定名:net.minecraft.util.datafix.fixes.CustomModelDataExpandFix
  • 类型:public class
  • 包:net.minecraft.util.datafix.fixes
  • 源码路径:src/main/java/net/minecraft/util/datafix/fixes/CustomModelDataExpandFix.java
  • 起始行号:L11
  • 继承:DataFix
  • 职责:

    TODO

字段/常量

内部类/嵌套类型

构造器

public CustomModelDataExpandFix(Schema outputSchema) @ L12

  • 构造器名:CustomModelDataExpandFix
  • 源码定位:L12
  • 修饰符:public

参数:

  • outputSchema: Schema

说明:

TODO

方法

下面的方法块按源码顺序生成。

protected TypeRewriteRule makeRule() @ L16

  • 方法名:makeRule
  • 源码定位:L16
  • 返回类型:TypeRewriteRule
  • 修饰符:protected

参数:

说明:

TODO

代码

public class CustomModelDataExpandFix extends DataFix {
    public CustomModelDataExpandFix(Schema outputSchema) {
        super(outputSchema, false);
    }
 
    @Override
    protected TypeRewriteRule makeRule() {
        Type<?> componentsType = this.getInputSchema().getType(References.DATA_COMPONENTS);
        return this.fixTypeEverywhereTyped(
            "Custom Model Data expansion",
            componentsType,
            component -> component.update(DSL.remainderFinder(), tag -> tag.update("minecraft:custom_model_data", cmd -> {
                float currentValue = cmd.asNumber(0.0F).floatValue();
                return cmd.createMap(Map.of(cmd.createString("floats"), cmd.createList(Stream.of(cmd.createFloat(currentValue)))));
            }))
        );
    }
}

引用的其他类