Вопрос How to fix this error with logs

Начинающий
Статус
Оффлайн
Регистрация
28 Авг 2019
Сообщения
120
Реакции[?]
8
Поинты[?]
0
i am trying to add a rect to the logs just like in neverlose V1 but i just isnt working for me someone pls help me if you know how to fix it
im trying to get this:
2021-01-26 15_50_11-(2) neverlose.cc HvH highlights #4 - YouTube.png
But in end up with this:
2021-01-26 17_23_06-Counter-Strike_ Global Offensive.png
This i the code i have now
Код:
auto logs_size_inverted = 10 - logs.size ();
        render :: get (). rect_filled (log.x, last_y + log.y - logs_size_inverted * 0.5f, 120, 20, Color (20, 36, 61, 255)); // test
        render :: get (). text (fonts [LOGS], log.x, last_y + log.y - logs_size_inverted * 14, log.color, HFONT_CENTERED_NONE, log.message.c_str ());
[/ CODE]
 
Забаненный
Статус
Оффлайн
Регистрация
31 Дек 2018
Сообщения
12
Реакции[?]
3
Поинты[?]
0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Something like this:
C++:
void RenderLogs()
{
    int nextPosition = 5;
    
    for (auto &log : g_Logs)
    {
        float textSize = g_Render->GetTextSize( pFont, iFontSize, log.text );
        g_Render->RectFilled( Vec2(5, nextPosition), Vec2(textSize.x, nextPosition + textSize.y + 5), Color(34, 34, 34, 255) ); //main rect
        g_Render->RectFilled( Vec2(textSize.x, nextPosition), Vec2(5 + textSize.x, nextPosition + textSize.y + 5), Color(50, 170, 220, 255) ); //border

        //...
        nextPosition += textSize.y + 5;
    }
}
 
Забаненный
Статус
Оффлайн
Регистрация
18 Июн 2020
Сообщения
506
Реакции[?]
90
Поинты[?]
0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Тебе ещё нужны эти логи? Если да, могу дать
 
Начинающий
Статус
Оффлайн
Регистрация
28 Авг 2019
Сообщения
120
Реакции[?]
8
Поинты[?]
0
[QUOTE = "t4pp3r, post: 1995550, member: 374022"]
Do you still need these logs? If yes, I can give
[/ QUOTE]
yes pls!
@NobodyLess
 
Последнее редактирование:
Сверху Снизу