Nutcha0751 / dobby

3 stars 1 forks source link

Decorate #10

Closed Nutcha0751 closed 7 months ago

Nutcha0751 commented 7 months ago

PK jpg

Sweetypie28 commented 7 months ago

77C8DB5D-DB27-455F-B263-F22C8642710F

Sweetypie28 commented 7 months ago

42973643-5EC9-4701-908B-F0241C32F3A5

Nutcha0751 commented 7 months ago

เปลี่ยนสีตัวหนังสือ >> https://github.com/AhoyDev/Rubens-Engine/blob/master/ModuleEditor.cpp How can I change text color of my InputText in ImGui? >> https://stackoverflow.com/questions/61853584/how-can-i-change-text-color-of-my-inputtext-in-imgui

Nutcha0751 commented 7 months ago

//Adjust the text to be centered on the screen. float textWidth = ImGui::CalcTextSize("Dobby's Calculator").x; float windowWidth = ImGui::GetWindowWidth(); float centerPosX = (windowWidth - textWidth) / 2.0f; ImGui::SetCursorPosX(centerPosX);

//Adjust font size ImGui::SetWindowFontScale(2.0f); ImGui::Text("Dobby's Calculator"); ImGui::SetWindowFontScale(1.0f);