Interface IBakedModelExtension
- All Known Subinterfaces:
BakedModel
,IDynamicBakedModel
- All Known Implementing Classes:
BakedModelWrapper
,BuiltInModel
,CompositeModel.Baked
,EmptyModel.Baked
,MultiPartBakedModel
,SeparateTransformsModel.Baked
,SimpleBakedModel
,WeightedBakedModel
public interface IBakedModelExtension
Extension interface for
BakedModel
.-
Method Summary
Modifier and TypeMethodDescriptiondefault BakedModel
applyTransform
(ItemDisplayContext transformType, PoseStack poseStack, boolean applyLeftHandTransform) Applies a transform for the givenItemTransforms.TransformType
andapplyLeftHandTransform
, and returns the model to be rendered.default ModelData
getModelData
(BlockAndTintGetter level, BlockPos pos, BlockState state, ModelData modelData) default TextureAtlasSprite
getParticleIcon
(ModelData data) getQuads
(@Nullable BlockState state, @Nullable Direction side, RandomSource rand, ModelData data, @Nullable RenderType renderType) A nullRenderType
is used for the breaking overlay as well as non-standard rendering, so models should return all their quads.default List<BakedModel>
getRenderPasses
(ItemStack itemStack, boolean fabulous) Gets an ordered list of baked models used to render this model as an item.default List<RenderType>
getRenderTypes
(ItemStack itemStack, boolean fabulous) Gets an ordered list ofrender types
to use when drawing this item.default ChunkRenderTypeSet
getRenderTypes
(BlockState state, RandomSource rand, ModelData data) Gets the set ofrender types
to use when drawing this block in the level.private BakedModel
self()
default boolean
useAmbientOcclusion
(BlockState state) default boolean
useAmbientOcclusion
(BlockState state, RenderType renderType)
-
Method Details
-
self
-
getQuads
default List<BakedQuad> getQuads(@Nullable @Nullable BlockState state, @Nullable @Nullable Direction side, RandomSource rand, ModelData data, @Nullable @Nullable RenderType renderType) A nullRenderType
is used for the breaking overlay as well as non-standard rendering, so models should return all their quads. -
useAmbientOcclusion
-
useAmbientOcclusion
-
applyTransform
default BakedModel applyTransform(ItemDisplayContext transformType, PoseStack poseStack, boolean applyLeftHandTransform) Applies a transform for the givenItemTransforms.TransformType
andapplyLeftHandTransform
, and returns the model to be rendered. -
getModelData
default ModelData getModelData(BlockAndTintGetter level, BlockPos pos, BlockState state, ModelData modelData) -
getParticleIcon
-
getRenderTypes
Gets the set ofrender types
to use when drawing this block in the level. Supported types are those returned byRenderType.chunkBufferLayers()
.By default, defers query to
ItemBlockRenderTypes
. -
getRenderTypes
Gets an ordered list ofrender types
to use when drawing this item. All render types using theDefaultVertexFormat.NEW_ENTITY
format are supported.This method will only be called on the models returned by
getRenderPasses(ItemStack, boolean)
.By default, defers query to
ItemBlockRenderTypes
.- See Also:
-
getRenderPasses
Gets an ordered list of baked models used to render this model as an item. Each of those models' render types will be queried viagetRenderTypes(ItemStack, boolean)
.By default, returns the model itself.
- See Also:
-