forked from virt-mirrors/Sit
33 lines
1.1 KiB
Java
33 lines
1.1 KiB
Java
![]() |
package one.oth3r.sit.screen;
|
||
|
|
||
|
import com.mojang.blaze3d.systems.RenderSystem;
|
||
|
import net.minecraft.client.gui.DrawContext;
|
||
|
import net.minecraft.client.gui.tooltip.Tooltip;
|
||
|
import net.minecraft.client.gui.widget.ButtonWidget;
|
||
|
import net.minecraft.text.Text;
|
||
|
import net.minecraft.util.Identifier;
|
||
|
|
||
|
import java.util.function.Supplier;
|
||
|
|
||
|
public class ClickableImageWidget extends ButtonWidget {
|
||
|
private final Identifier image;
|
||
|
|
||
|
public ClickableImageWidget(int x, int y, int width, int height, Tooltip tooltip, Identifier image, ButtonWidget.PressAction onPress) {
|
||
|
super(x, y, width, height, Text.empty(), onPress, Supplier::get);
|
||
|
this.image = image;
|
||
|
this.setTooltip(tooltip);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
protected void renderWidget(DrawContext context, int mouseX, int mouseY, float delta) {
|
||
|
context.setShaderColor(1.0f, 1.0f, 1.0f, this.alpha);
|
||
|
RenderSystem.enableBlend();
|
||
|
RenderSystem.enableDepthTest();
|
||
|
context.drawTexture(image, this.getX(), this.getY(), 0.0f, 0.0f, this.getWidth(), this.getHeight(), this.getWidth(), this.getHeight());
|
||
|
context.setShaderColor(1.0f, 1.0f, 1.0f, 1.0f);
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
}
|