Визуальная часть NewCode edition watermark

Начинающий
Статус
Оффлайн
Регистрация
1 Авг 2024
Сообщения
220
Реакции[?]
0
Поинты[?]
0

Перед прочтением основного контента ниже, пожалуйста, обратите внимание на обновление внутри секции Майна на нашем форуме. У нас появились:

  • бесплатные читы для Майнкрафт — любое использование на свой страх и риск;
  • маркетплейс Майнкрафт — абсолютно любая коммерция, связанная с игрой, за исключением продажи читов (аккаунты, предоставления услуг, поиск кодеров читов и так далее);
  • приватные читы для Minecraft — в этом разделе только платные хаки для игры, покупайте группу "Продавец" и выставляйте на продажу свой софт;
  • обсуждения и гайды — всё тот же раздел с вопросами, но теперь модернизированный: поиск нужных хаков, пати с игроками-читерами и другая полезная информация.

Спасибо!

возможно видели этот пиздец не похожий абсолютно

pizdec a ne skid (click)

сливаю свое творение сделанное за 5 минут

Пожалуйста, авторизуйтесь для просмотра ссылки.

Пожалуйста, авторизуйтесь для просмотра ссылки.


Код:
package wtf.season.functions.impl.render;

import com.google.common.eventbus.Subscribe;
import com.mojang.blaze3d.matrix.MatrixStack;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.text.Color;
import net.minecraft.util.text.ITextComponent;
import wtf.season.Expensive;
import wtf.season.events.EventDisplay;
import wtf.season.functions.api.Category;
import wtf.season.functions.api.Function;
import wtf.season.functions.api.FunctionRegister;
import wtf.season.functions.settings.impl.ModeSetting;
import wtf.season.ui.styles.Style;
import wtf.season.utils.render.ColorUtils;
import wtf.season.utils.render.DisplayUtils;
import wtf.season.utils.render.font.Fonts;
import wtf.season.utils.text.GradientUtil;

@FunctionRegister(name = "NCEditionWT", type = Category.Render)
public class WaterMark2 extends Function {



    final ResourceLocation newcodelogo = new ResourceLocation("expensive/images/hud/newcodelogo.png");
    final ResourceLocation user = new ResourceLocation("expensive/images/hud/user.png");
    final ResourceLocation fpslogo = new ResourceLocation("expensive/images/hud/fps.png");



    @Subscribe
    public void render(EventDisplay eventDisplay) {
        MatrixStack ms = eventDisplay.getMatrixStack();
        float posX = 5;
        float posY = 5;
        float padding = 5;
        float fontSize = 8f;
        float fontSize2 = 9f;
        float iconSize = 11.9f;

        Style style = Expensive.getInstance().getStyleManager().getCurrentStyle();

            //texts
            ITextComponent text = GradientUtil.white(" newcode edition");
            ITextComponent fps = GradientUtil.white(" " + mc.debugFPS + " fps");

            float textWidth2 = Fonts.sfsemibold.getWidth(fps, fontSize) - 5;
            float textWidth1 = Fonts.sfsemibold.getWidth(text, fontSize);
            float localPosX = posX + iconSize + padding * 3;
            float textPosX1 = localPosX - 45 + iconSize + padding * 1.5f - 1;
            float textPosY = posY - 1.5f + iconSize / 2 + 1.5f;


            //logo rect
            drawStyledOutline(localPosX - 30, posY, iconSize + 15, iconSize + padding * 1.5f, 6);
            drawStyledRect(localPosX - 30, posY, iconSize + 15, iconSize + padding * 1.5f, 6);

            // def rect
            drawStyledRect(localPosX-10, posY, iconSize + padding * 1.7f + textWidth1+5 + textWidth2 + 25, iconSize + padding * 1.5f, 3);

            //texts
            Fonts.sfsemibold.drawText(ms, fps, textPosX1 * 22f, textPosY, fontSize, 255);
            Fonts.sfsemibold.drawText(ms, text, textPosX1-10 + 39, textPosY, fontSize, 255);

            //logotyps
            DisplayUtils.drawImage(newcodelogo, posX - 1.8f, posY + 3, 13, 13, ColorUtils.getColor(0));
            DisplayUtils.drawImage(user, posX * 5f, posY + 4, 11, 11, ColorUtils.getColor(0));
            DisplayUtils.drawImage(fpslogo, posX * 21.2f, posY + 4, 11, 11, ColorUtils.getColor(0));



    }

    private void drawStyledOutline(float x,
                                float y,
                                float width,
                                float height,
                                float radius) {


        DisplayUtils.drawRoundedRect(x-0.5f, y+2-0.5f, width-11, height-4, radius, ColorUtils.getColor(0));


    }

    private void drawStyledRect(float x,
                                float y,
                                float width,
                                float height,
                                float radius) {


        DisplayUtils.drawRoundedRect(x, y+2, width-12, height-5, radius, ColorUtils.rgb(21,21,21));


    }
}
 
Забаненный
Статус
Оффлайн
Регистрация
8 Авг 2024
Сообщения
905
Реакции[?]
6
Поинты[?]
5K
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
возможно видели этот пиздец не похожий абсолютно

pizdec a ne skid (click)

сливаю свое творение сделанное за 5 минут

Пожалуйста, авторизуйтесь для просмотра ссылки.

Пожалуйста, авторизуйтесь для просмотра ссылки.


Код:
package wtf.season.functions.impl.render;

import com.google.common.eventbus.Subscribe;
import com.mojang.blaze3d.matrix.MatrixStack;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.text.Color;
import net.minecraft.util.text.ITextComponent;
import wtf.season.Expensive;
import wtf.season.events.EventDisplay;
import wtf.season.functions.api.Category;
import wtf.season.functions.api.Function;
import wtf.season.functions.api.FunctionRegister;
import wtf.season.functions.settings.impl.ModeSetting;
import wtf.season.ui.styles.Style;
import wtf.season.utils.render.ColorUtils;
import wtf.season.utils.render.DisplayUtils;
import wtf.season.utils.render.font.Fonts;
import wtf.season.utils.text.GradientUtil;

@FunctionRegister(name = "NCEditionWT", type = Category.Render)
public class WaterMark2 extends Function {



    final ResourceLocation newcodelogo = new ResourceLocation("expensive/images/hud/newcodelogo.png");
    final ResourceLocation user = new ResourceLocation("expensive/images/hud/user.png");
    final ResourceLocation fpslogo = new ResourceLocation("expensive/images/hud/fps.png");



    @Subscribe
    public void render(EventDisplay eventDisplay) {
        MatrixStack ms = eventDisplay.getMatrixStack();
        float posX = 5;
        float posY = 5;
        float padding = 5;
        float fontSize = 8f;
        float fontSize2 = 9f;
        float iconSize = 11.9f;

        Style style = Expensive.getInstance().getStyleManager().getCurrentStyle();

            //texts
            ITextComponent text = GradientUtil.white(" newcode edition");
            ITextComponent fps = GradientUtil.white(" " + mc.debugFPS + " fps");

            float textWidth2 = Fonts.sfsemibold.getWidth(fps, fontSize) - 5;
            float textWidth1 = Fonts.sfsemibold.getWidth(text, fontSize);
            float localPosX = posX + iconSize + padding * 3;
            float textPosX1 = localPosX - 45 + iconSize + padding * 1.5f - 1;
            float textPosY = posY - 1.5f + iconSize / 2 + 1.5f;


            //logo rect
            drawStyledOutline(localPosX - 30, posY, iconSize + 15, iconSize + padding * 1.5f, 6);
            drawStyledRect(localPosX - 30, posY, iconSize + 15, iconSize + padding * 1.5f, 6);

            // def rect
            drawStyledRect(localPosX-10, posY, iconSize + padding * 1.7f + textWidth1+5 + textWidth2 + 25, iconSize + padding * 1.5f, 3);

            //texts
            Fonts.sfsemibold.drawText(ms, fps, textPosX1 * 22f, textPosY, fontSize, 255);
            Fonts.sfsemibold.drawText(ms, text, textPosX1-10 + 39, textPosY, fontSize, 255);

            //logotyps
            DisplayUtils.drawImage(newcodelogo, posX - 1.8f, posY + 3, 13, 13, ColorUtils.getColor(0));
            DisplayUtils.drawImage(user, posX * 5f, posY + 4, 11, 11, ColorUtils.getColor(0));
            DisplayUtils.drawImage(fpslogo, posX * 21.2f, posY + 4, 11, 11, ColorUtils.getColor(0));



    }

    private void drawStyledOutline(float x,
                                float y,
                                float width,
                                float height,
                                float radius) {


        DisplayUtils.drawRoundedRect(x-0.5f, y+2-0.5f, width-11, height-4, radius, ColorUtils.getColor(0));


    }

    private void drawStyledRect(float x,
                                float y,
                                float width,
                                float height,
                                float radius) {


        DisplayUtils.drawRoundedRect(x, y+2, width-12, height-5, radius, ColorUtils.rgb(21,21,21));


    }
}
Какой эдишн? Премиум? Или какой? Скажи пожалуйста, это очень важно
 
Начинающий
Статус
Оффлайн
Регистрация
4 Дек 2024
Сообщения
155
Реакции[?]
0
Поинты[?]
0
возможно видели этот пиздец не похожий абсолютно

pizdec a ne skid (click)

сливаю свое творение сделанное за 5 минут

Пожалуйста, авторизуйтесь для просмотра ссылки.

Пожалуйста, авторизуйтесь для просмотра ссылки.


Код:
package wtf.season.functions.impl.render;

import com.google.common.eventbus.Subscribe;
import com.mojang.blaze3d.matrix.MatrixStack;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.text.Color;
import net.minecraft.util.text.ITextComponent;
import wtf.season.Expensive;
import wtf.season.events.EventDisplay;
import wtf.season.functions.api.Category;
import wtf.season.functions.api.Function;
import wtf.season.functions.api.FunctionRegister;
import wtf.season.functions.settings.impl.ModeSetting;
import wtf.season.ui.styles.Style;
import wtf.season.utils.render.ColorUtils;
import wtf.season.utils.render.DisplayUtils;
import wtf.season.utils.render.font.Fonts;
import wtf.season.utils.text.GradientUtil;

@FunctionRegister(name = "NCEditionWT", type = Category.Render)
public class WaterMark2 extends Function {



    final ResourceLocation newcodelogo = new ResourceLocation("expensive/images/hud/newcodelogo.png");
    final ResourceLocation user = new ResourceLocation("expensive/images/hud/user.png");
    final ResourceLocation fpslogo = new ResourceLocation("expensive/images/hud/fps.png");



    @Subscribe
    public void render(EventDisplay eventDisplay) {
        MatrixStack ms = eventDisplay.getMatrixStack();
        float posX = 5;
        float posY = 5;
        float padding = 5;
        float fontSize = 8f;
        float fontSize2 = 9f;
        float iconSize = 11.9f;

        Style style = Expensive.getInstance().getStyleManager().getCurrentStyle();

            //texts
            ITextComponent text = GradientUtil.white(" newcode edition");
            ITextComponent fps = GradientUtil.white(" " + mc.debugFPS + " fps");

            float textWidth2 = Fonts.sfsemibold.getWidth(fps, fontSize) - 5;
            float textWidth1 = Fonts.sfsemibold.getWidth(text, fontSize);
            float localPosX = posX + iconSize + padding * 3;
            float textPosX1 = localPosX - 45 + iconSize + padding * 1.5f - 1;
            float textPosY = posY - 1.5f + iconSize / 2 + 1.5f;


            //logo rect
            drawStyledOutline(localPosX - 30, posY, iconSize + 15, iconSize + padding * 1.5f, 6);
            drawStyledRect(localPosX - 30, posY, iconSize + 15, iconSize + padding * 1.5f, 6);

            // def rect
            drawStyledRect(localPosX-10, posY, iconSize + padding * 1.7f + textWidth1+5 + textWidth2 + 25, iconSize + padding * 1.5f, 3);

            //texts
            Fonts.sfsemibold.drawText(ms, fps, textPosX1 * 22f, textPosY, fontSize, 255);
            Fonts.sfsemibold.drawText(ms, text, textPosX1-10 + 39, textPosY, fontSize, 255);

            //logotyps
            DisplayUtils.drawImage(newcodelogo, posX - 1.8f, posY + 3, 13, 13, ColorUtils.getColor(0));
            DisplayUtils.drawImage(user, posX * 5f, posY + 4, 11, 11, ColorUtils.getColor(0));
            DisplayUtils.drawImage(fpslogo, posX * 21.2f, posY + 4, 11, 11, ColorUtils.getColor(0));



    }

    private void drawStyledOutline(float x,
                                float y,
                                float width,
                                float height,
                                float radius) {


        DisplayUtils.drawRoundedRect(x-0.5f, y+2-0.5f, width-11, height-4, radius, ColorUtils.getColor(0));


    }

    private void drawStyledRect(float x,
                                float y,
                                float width,
                                float height,
                                float radius) {


        DisplayUtils.drawRoundedRect(x, y+2, width-12, height-5, radius, ColorUtils.rgb(21,21,21));


    }
}
фу блять угробил вт /del
 
Начинающий
Статус
Оффлайн
Регистрация
4 Июл 2021
Сообщения
298
Реакции[?]
1
Поинты[?]
2K
Начинающий
Статус
Оффлайн
Регистрация
11 Янв 2025
Сообщения
56
Реакции[?]
0
Поинты[?]
0
возможно видели этот пиздец не похожий абсолютно

pizdec a ne skid (click)

сливаю свое творение сделанное за 5 минут

Пожалуйста, авторизуйтесь для просмотра ссылки.

Пожалуйста, авторизуйтесь для просмотра ссылки.


Код:
package wtf.season.functions.impl.render;

import com.google.common.eventbus.Subscribe;
import com.mojang.blaze3d.matrix.MatrixStack;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.text.Color;
import net.minecraft.util.text.ITextComponent;
import wtf.season.Expensive;
import wtf.season.events.EventDisplay;
import wtf.season.functions.api.Category;
import wtf.season.functions.api.Function;
import wtf.season.functions.api.FunctionRegister;
import wtf.season.functions.settings.impl.ModeSetting;
import wtf.season.ui.styles.Style;
import wtf.season.utils.render.ColorUtils;
import wtf.season.utils.render.DisplayUtils;
import wtf.season.utils.render.font.Fonts;
import wtf.season.utils.text.GradientUtil;

@FunctionRegister(name = "NCEditionWT", type = Category.Render)
public class WaterMark2 extends Function {



    final ResourceLocation newcodelogo = new ResourceLocation("expensive/images/hud/newcodelogo.png");
    final ResourceLocation user = new ResourceLocation("expensive/images/hud/user.png");
    final ResourceLocation fpslogo = new ResourceLocation("expensive/images/hud/fps.png");



    @Subscribe
    public void render(EventDisplay eventDisplay) {
        MatrixStack ms = eventDisplay.getMatrixStack();
        float posX = 5;
        float posY = 5;
        float padding = 5;
        float fontSize = 8f;
        float fontSize2 = 9f;
        float iconSize = 11.9f;

        Style style = Expensive.getInstance().getStyleManager().getCurrentStyle();

            //texts
            ITextComponent text = GradientUtil.white(" newcode edition");
            ITextComponent fps = GradientUtil.white(" " + mc.debugFPS + " fps");

            float textWidth2 = Fonts.sfsemibold.getWidth(fps, fontSize) - 5;
            float textWidth1 = Fonts.sfsemibold.getWidth(text, fontSize);
            float localPosX = posX + iconSize + padding * 3;
            float textPosX1 = localPosX - 45 + iconSize + padding * 1.5f - 1;
            float textPosY = posY - 1.5f + iconSize / 2 + 1.5f;


            //logo rect
            drawStyledOutline(localPosX - 30, posY, iconSize + 15, iconSize + padding * 1.5f, 6);
            drawStyledRect(localPosX - 30, posY, iconSize + 15, iconSize + padding * 1.5f, 6);

            // def rect
            drawStyledRect(localPosX-10, posY, iconSize + padding * 1.7f + textWidth1+5 + textWidth2 + 25, iconSize + padding * 1.5f, 3);

            //texts
            Fonts.sfsemibold.drawText(ms, fps, textPosX1 * 22f, textPosY, fontSize, 255);
            Fonts.sfsemibold.drawText(ms, text, textPosX1-10 + 39, textPosY, fontSize, 255);

            //logotyps
            DisplayUtils.drawImage(newcodelogo, posX - 1.8f, posY + 3, 13, 13, ColorUtils.getColor(0));
            DisplayUtils.drawImage(user, posX * 5f, posY + 4, 11, 11, ColorUtils.getColor(0));
            DisplayUtils.drawImage(fpslogo, posX * 21.2f, posY + 4, 11, 11, ColorUtils.getColor(0));



    }

    private void drawStyledOutline(float x,
                                float y,
                                float width,
                                float height,
                                float radius) {


        DisplayUtils.drawRoundedRect(x-0.5f, y+2-0.5f, width-11, height-4, radius, ColorUtils.getColor(0));


    }

    private void drawStyledRect(float x,
                                float y,
                                float width,
                                float height,
                                float radius) {


        DisplayUtils.drawRoundedRect(x, y+2, width-12, height-5, radius, ColorUtils.rgb(21,21,21));


    }
}
что поменял ток уменьшил, у лого сзади градиент бок выперает
 
Начинающий
Статус
Оффлайн
Регистрация
26 Дек 2023
Сообщения
1,173
Реакции[?]
15
Поинты[?]
6K
возможно видели этот пиздец не похожий абсолютно

pizdec a ne skid (click)

сливаю свое творение сделанное за 5 минут

Пожалуйста, авторизуйтесь для просмотра ссылки.

Пожалуйста, авторизуйтесь для просмотра ссылки.


Код:
package wtf.season.functions.impl.render;

import com.google.common.eventbus.Subscribe;
import com.mojang.blaze3d.matrix.MatrixStack;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.text.Color;
import net.minecraft.util.text.ITextComponent;
import wtf.season.Expensive;
import wtf.season.events.EventDisplay;
import wtf.season.functions.api.Category;
import wtf.season.functions.api.Function;
import wtf.season.functions.api.FunctionRegister;
import wtf.season.functions.settings.impl.ModeSetting;
import wtf.season.ui.styles.Style;
import wtf.season.utils.render.ColorUtils;
import wtf.season.utils.render.DisplayUtils;
import wtf.season.utils.render.font.Fonts;
import wtf.season.utils.text.GradientUtil;

@FunctionRegister(name = "NCEditionWT", type = Category.Render)
public class WaterMark2 extends Function {



    final ResourceLocation newcodelogo = new ResourceLocation("expensive/images/hud/newcodelogo.png");
    final ResourceLocation user = new ResourceLocation("expensive/images/hud/user.png");
    final ResourceLocation fpslogo = new ResourceLocation("expensive/images/hud/fps.png");



    @Subscribe
    public void render(EventDisplay eventDisplay) {
        MatrixStack ms = eventDisplay.getMatrixStack();
        float posX = 5;
        float posY = 5;
        float padding = 5;
        float fontSize = 8f;
        float fontSize2 = 9f;
        float iconSize = 11.9f;

        Style style = Expensive.getInstance().getStyleManager().getCurrentStyle();

            //texts
            ITextComponent text = GradientUtil.white(" newcode edition");
            ITextComponent fps = GradientUtil.white(" " + mc.debugFPS + " fps");

            float textWidth2 = Fonts.sfsemibold.getWidth(fps, fontSize) - 5;
            float textWidth1 = Fonts.sfsemibold.getWidth(text, fontSize);
            float localPosX = posX + iconSize + padding * 3;
            float textPosX1 = localPosX - 45 + iconSize + padding * 1.5f - 1;
            float textPosY = posY - 1.5f + iconSize / 2 + 1.5f;


            //logo rect
            drawStyledOutline(localPosX - 30, posY, iconSize + 15, iconSize + padding * 1.5f, 6);
            drawStyledRect(localPosX - 30, posY, iconSize + 15, iconSize + padding * 1.5f, 6);

            // def rect
            drawStyledRect(localPosX-10, posY, iconSize + padding * 1.7f + textWidth1+5 + textWidth2 + 25, iconSize + padding * 1.5f, 3);

            //texts
            Fonts.sfsemibold.drawText(ms, fps, textPosX1 * 22f, textPosY, fontSize, 255);
            Fonts.sfsemibold.drawText(ms, text, textPosX1-10 + 39, textPosY, fontSize, 255);

            //logotyps
            DisplayUtils.drawImage(newcodelogo, posX - 1.8f, posY + 3, 13, 13, ColorUtils.getColor(0));
            DisplayUtils.drawImage(user, posX * 5f, posY + 4, 11, 11, ColorUtils.getColor(0));
            DisplayUtils.drawImage(fpslogo, posX * 21.2f, posY + 4, 11, 11, ColorUtils.getColor(0));



    }

    private void drawStyledOutline(float x,
                                float y,
                                float width,
                                float height,
                                float radius) {


        DisplayUtils.drawRoundedRect(x-0.5f, y+2-0.5f, width-11, height-4, radius, ColorUtils.getColor(0));


    }

    private void drawStyledRect(float x,
                                float y,
                                float width,
                                float height,
                                float radius) {


        DisplayUtils.drawRoundedRect(x, y+2, width-12, height-5, radius, ColorUtils.rgb(21,21,21));


    }
}
у калитки лучше, тут кривой текст, ректы уебские
 
Начинающий
Статус
Оффлайн
Регистрация
10 Июл 2022
Сообщения
157
Реакции[?]
5
Поинты[?]
0
Брат не надо кормить нас kallom. (Против скида не имею нечего)
 
Начинающий
Статус
Онлайн
Регистрация
15 Май 2021
Сообщения
368
Реакции[?]
18
Поинты[?]
14K
глоу добавить на иконку newcode и прозрачность сделать - хоть что-то да будет похожим. А чем - хуй знает.
 
Начинающий
Статус
Оффлайн
Регистрация
6 Июл 2024
Сообщения
50
Реакции[?]
0
Поинты[?]
0
возможно видели этот пиздец не похожий абсолютно

pizdec a ne skid (click)

сливаю свое творение сделанное за 5 минут

Пожалуйста, авторизуйтесь для просмотра ссылки.

Пожалуйста, авторизуйтесь для просмотра ссылки.


Код:
package wtf.season.functions.impl.render;

import com.google.common.eventbus.Subscribe;
import com.mojang.blaze3d.matrix.MatrixStack;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.text.Color;
import net.minecraft.util.text.ITextComponent;
import wtf.season.Expensive;
import wtf.season.events.EventDisplay;
import wtf.season.functions.api.Category;
import wtf.season.functions.api.Function;
import wtf.season.functions.api.FunctionRegister;
import wtf.season.functions.settings.impl.ModeSetting;
import wtf.season.ui.styles.Style;
import wtf.season.utils.render.ColorUtils;
import wtf.season.utils.render.DisplayUtils;
import wtf.season.utils.render.font.Fonts;
import wtf.season.utils.text.GradientUtil;

@FunctionRegister(name = "NCEditionWT", type = Category.Render)
public class WaterMark2 extends Function {



    final ResourceLocation newcodelogo = new ResourceLocation("expensive/images/hud/newcodelogo.png");
    final ResourceLocation user = new ResourceLocation("expensive/images/hud/user.png");
    final ResourceLocation fpslogo = new ResourceLocation("expensive/images/hud/fps.png");



    @Subscribe
    public void render(EventDisplay eventDisplay) {
        MatrixStack ms = eventDisplay.getMatrixStack();
        float posX = 5;
        float posY = 5;
        float padding = 5;
        float fontSize = 8f;
        float fontSize2 = 9f;
        float iconSize = 11.9f;

        Style style = Expensive.getInstance().getStyleManager().getCurrentStyle();

            //texts
            ITextComponent text = GradientUtil.white(" newcode edition");
            ITextComponent fps = GradientUtil.white(" " + mc.debugFPS + " fps");

            float textWidth2 = Fonts.sfsemibold.getWidth(fps, fontSize) - 5;
            float textWidth1 = Fonts.sfsemibold.getWidth(text, fontSize);
            float localPosX = posX + iconSize + padding * 3;
            float textPosX1 = localPosX - 45 + iconSize + padding * 1.5f - 1;
            float textPosY = posY - 1.5f + iconSize / 2 + 1.5f;


            //logo rect
            drawStyledOutline(localPosX - 30, posY, iconSize + 15, iconSize + padding * 1.5f, 6);
            drawStyledRect(localPosX - 30, posY, iconSize + 15, iconSize + padding * 1.5f, 6);

            // def rect
            drawStyledRect(localPosX-10, posY, iconSize + padding * 1.7f + textWidth1+5 + textWidth2 + 25, iconSize + padding * 1.5f, 3);

            //texts
            Fonts.sfsemibold.drawText(ms, fps, textPosX1 * 22f, textPosY, fontSize, 255);
            Fonts.sfsemibold.drawText(ms, text, textPosX1-10 + 39, textPosY, fontSize, 255);

            //logotyps
            DisplayUtils.drawImage(newcodelogo, posX - 1.8f, posY + 3, 13, 13, ColorUtils.getColor(0));
            DisplayUtils.drawImage(user, posX * 5f, posY + 4, 11, 11, ColorUtils.getColor(0));
            DisplayUtils.drawImage(fpslogo, posX * 21.2f, posY + 4, 11, 11, ColorUtils.getColor(0));



    }

    private void drawStyledOutline(float x,
                                float y,
                                float width,
                                float height,
                                float radius) {


        DisplayUtils.drawRoundedRect(x-0.5f, y+2-0.5f, width-11, height-4, radius, ColorUtils.getColor(0));


    }

    private void drawStyledRect(float x,
                                float y,
                                float width,
                                float height,
                                float radius) {


        DisplayUtils.drawRoundedRect(x, y+2, width-12, height-5, radius, ColorUtils.rgb(21,21,21));


    }
}
Че за убогая хуетень блять я хуем по клаве проведу лучше будет или прост и так убогий ватермарк у Невкода
 
Начинающий
Статус
Оффлайн
Регистрация
6 Июл 2024
Сообщения
50
Реакции[?]
0
Поинты[?]
0
Сверху Снизу