Interface UnbakedStandaloneModel<T>

Type Parameters:
T - The type of the baked model.
All Superinterfaces:
net.minecraft.client.resources.model.ResolvableModel
All Known Implementing Classes:
StandaloneModelBakerWrapper

public interface UnbakedStandaloneModel<T> extends net.minecraft.client.resources.model.ResolvableModel
An unbaked standalone model.

Similar to ItemModel.Unbaked and other ResolvableModels, this model can depend on one or more model files, and then combine them into a single baked model.

The baked object can be retrieved later using ModelManager.getStandaloneModel(StandaloneModelKey).

See Also:
  • Nested Class Summary

    Nested classes/interfaces inherited from interface net.minecraft.client.resources.model.ResolvableModel

    net.minecraft.client.resources.model.ResolvableModel.Resolver
  • Method Summary

    Modifier and Type
    Method
    Description
    bake(net.minecraft.client.resources.model.ModelBaker baker)
    Bake this model.

    Methods inherited from interface net.minecraft.client.resources.model.ResolvableModel

    resolveDependencies
  • Method Details

    • bake

      T bake(net.minecraft.client.resources.model.ModelBaker baker)
      Bake this model.
      Parameters:
      baker - The current model baker.
      Returns:
      The fully-baked model.