污小川资源分享
Ir al canal en Telegram
This Channel follows Telegram Terms.No adult content, no violence, no spam.
Mostrar másEl país no está especificadoLa categoría no está especificada
990
Suscriptores
+324 horas
+27 días
+6630 días
Archivo de publicaciones
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");
}
