fabric-renderer-api-v1-7.2.3+9be2a36e6f.jar
Download file
package net.fabricmc.fabric.api.renderer.v1.model;
import java.util.function.Predicate;
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
import net.fabricmc.fabric.api.renderer.v1.mesh.QuadEmitter;
import net.fabricmc.fabric.impl.renderer.VanillaBlockModelPartEncoder;
import net.minecraft.class_10889;
import net.minecraft.class_2350;
import org.jetbrains.annotations.Nullable;
@Environment(EnvType.CLIENT)
public interface FabricBlockModelPart {
default void emitQuads(QuadEmitter emitter, Predicate<@Nullable class_2350> cullTest) {
VanillaBlockModelPartEncoder.emitQuads((class_10889)this, emitter, cullTest);
}
}
Download file