private final Animation alpha = new EaseInOutQuad(200, 255, Direction.FORWARDS);
@Override
public void render(MatrixStack stack, float mouseX, float mouseY) {
DisplayUtils.drawRoundedRect(x, y, width, height, round, ColorUtils.rgba(r, g, b, alpha.getOutput()));
Fonts.sfMedium.drawText(stack, "бош", x, y, ColorUtils.rgba(r, g, b, alpha.getOutput()), 8);
}