污小川资源分享
Открыть в Telegram
This Channel follows Telegram Terms.No adult content, no violence, no spam.
БольшеСтрана не указанаКатегория не указана
990
Подписчики
+324 часа
+27 дней
+6630 дней
Архив постов
990
bool test = true;
if (test){
static ImVec2 dvdPos(100.0f, 100.0f);
static ImVec2 dvdVelocity(4.0f, 3.0f);
float screenWidth = ImGui::GetIO().DisplaySize.x;
float screenHeight = ImGui::GetIO().DisplaySize.y;
float textWidth = 200.0f;
float textHeight = 50.0f;
dvdPos.x += dvdVelocity.x;
dvdPos.y += dvdVelocity.y;
if (dvdPos.x <= 0 || dvdPos.x + textWidth >= screenWidth) {
dvdVelocity.x = -dvdVelocity.x;
}
if (dvdPos.y <= 0 || dvdPos.y + textHeight >= screenHeight) {dvdVelocity.y = -dvdVelocity.y;}
ImDrawList* drawList = ImGui::GetBackgroundDrawList();
drawList->AddText(ImGui::GetFont(),60.0f,ImVec2(dvdPos.x, dvdPos.y),IM_COL32(255, 255, 255, 180),"text");
}
