Class SpriteContents.Interpolation

java.lang.Object
net.minecraft.client.texture.SpriteContents.Interpolation
All Implemented Interfaces:
AutoCloseable
Enclosing class:
SpriteContents

@Environment(CLIENT) private final class SpriteContents.Interpolation extends Object implements AutoCloseable
Mappings:
Namespace Name
named net/minecraft/client/texture/SpriteContents$Interpolation
intermediary net/minecraft/class_7764$class_4728
official gov$c
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final NativeImage[]
     
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    (package private) void
    apply(int x, int y, SpriteContents.AnimatorImpl animator)
    Linearly interpolate between the current and next frame on all mip levels based on the tick position within the current frame, and upload the results to the currently bound texture to the frame slot at position (0,0).
    void
     
    private int
    getPixelColor(SpriteContents.Animation animation, int frameIndex, int layer, int x, int y)
    Returns the pixel color at frame frameIndex within mipmap layer at sprite relative coordinates.
    private int
    lerp(double delta, int to, int from)
    Purely mathematical single-value linear interpolation.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • images

      private final NativeImage[] images
      Mappings:
      Namespace Name Mixin selector
      named images Lnet/minecraft/client/texture/SpriteContents$Interpolation;images:[Lnet/minecraft/client/texture/NativeImage;
      intermediary field_21758 Lnet/minecraft/class_7764$class_4728;field_21758:[Lnet/minecraft/class_1011;
      official b Lgov$c;b:[Lezb;
  • Constructor Details

    • Interpolation

      Interpolation()
  • Method Details

    • apply

      void apply(int x, int y, SpriteContents.AnimatorImpl animator)
      Linearly interpolate between the current and next frame on all mip levels based on the tick position within the current frame, and upload the results to the currently bound texture to the frame slot at position (0,0).
      Mappings:
      Namespace Name Mixin selector
      named apply Lnet/minecraft/client/texture/SpriteContents$Interpolation;apply(IILnet/minecraft/client/texture/SpriteContents$AnimatorImpl;)V
      intermediary method_24128 Lnet/minecraft/class_7764$class_4728;method_24128(IILnet/minecraft/class_7764$class_7765;)V
      official a Lgov$c;a(IILgov$d;)V
    • getPixelColor

      private int getPixelColor(SpriteContents.Animation animation, int frameIndex, int layer, int x, int y)
      Returns the pixel color at frame frameIndex within mipmap layer at sprite relative coordinates.
      Returns:
      the pixel color at frame frameIndex within mipmap layer at sprite relative coordinates
      Mappings:
      Namespace Name Mixin selector
      named getPixelColor Lnet/minecraft/client/texture/SpriteContents$Interpolation;getPixelColor(Lnet/minecraft/client/texture/SpriteContents$Animation;IIII)I
      intermediary method_24130 Lnet/minecraft/class_7764$class_4728;method_24130(Lnet/minecraft/class_7764$class_5790;IIII)I
      official a Lgov$c;a(Lgov$a;IIII)I
    • lerp

      private int lerp(double delta, int to, int from)
      Purely mathematical single-value linear interpolation. lerp(0, a, b) == b, lerp(1, a, b) == a.
      Mappings:
      Namespace Name Mixin selector
      named lerp Lnet/minecraft/client/texture/SpriteContents$Interpolation;lerp(DII)I
      intermediary method_24129 Lnet/minecraft/class_7764$class_4728;method_24129(DII)I
      official a Lgov$c;a(DII)I
    • close

      public void close()
      Specified by:
      close in interface AutoCloseable