Last active
October 14, 2024 07:40
-
-
Save Pikachuxxxx/8049de8bd30e02853e5f4d34c61065dc to your computer and use it in GitHub Desktop.
ImGui Transform Component with RBG for XYZ than can be used for position, rotation and scaling components
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void DrawVec3Control(const std::string& label, glm::vec3& values, float resetValue = 0.0f, float columnWidth = 100.0f) | |
{ | |
ImGuiIO& io = ImGui::GetIO(); | |
auto boldFont = io.Fonts->Fonts[0]; | |
ImGui::PushID(label.c_str()); | |
ImGui::Columns(2); | |
ImGui::SetColumnWidth(0, columnWidth); | |
ImGui::Text("%s", label.c_str()); | |
ImGui::NextColumn(); | |
ImGui::PushMultiItemsWidths(3, ImGui::CalcItemWidth()); | |
ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2{ 0, 0 }); | |
float lineHeight = GImGui->Font->FontSize + GImGui->Style.FramePadding.y * 2.0f; | |
ImVec2 buttonSize = { lineHeight + 3.0f, lineHeight }; | |
ImGui::PushStyleColor(ImGuiCol_Button, ImVec4{ 0.8f, 0.1f, 0.15f, 1.0f }); | |
ImGui::PushStyleColor(ImGuiCol_ButtonHovered, ImVec4{ 0.9f, 0.2f, 0.2f, 1.0f }); | |
ImGui::PushStyleColor(ImGuiCol_ButtonActive, ImVec4{ 0.8f, 0.1f, 0.15f, 1.0f }); | |
ImGui::PushFont(boldFont); | |
if (ImGui::Button("X", buttonSize)) | |
values.x = resetValue; | |
ImGui::PopFont(); | |
ImGui::PopStyleColor(3); | |
ImGui::SameLine(); | |
ImGui::DragFloat("##X", &values.x, 0.1f, 0.0f, 0.0f, "%.2f"); | |
ImGui::PopItemWidth(); | |
ImGui::SameLine(); | |
ImGui::PushStyleColor(ImGuiCol_Button, ImVec4{ 0.2f, 0.7f, 0.2f, 1.0f }); | |
ImGui::PushStyleColor(ImGuiCol_ButtonHovered, ImVec4{ 0.3f, 0.8f, 0.3f, 1.0f }); | |
ImGui::PushStyleColor(ImGuiCol_ButtonActive, ImVec4{ 0.2f, 0.7f, 0.2f, 1.0f }); | |
ImGui::PushFont(boldFont); | |
if (ImGui::Button("Y", buttonSize)) | |
values.y = resetValue; | |
ImGui::PopFont(); | |
ImGui::PopStyleColor(3); | |
ImGui::SameLine(); | |
ImGui::DragFloat("##Y", &values.y, 0.1f, 0.0f, 0.0f, "%.2f"); | |
ImGui::PopItemWidth(); | |
ImGui::SameLine(); | |
ImGui::PushStyleColor(ImGuiCol_Button, ImVec4{ 0.1f, 0.25f, 0.8f, 1.0f }); | |
ImGui::PushStyleColor(ImGuiCol_ButtonHovered, ImVec4{ 0.2f, 0.35f, 0.9f, 1.0f }); | |
ImGui::PushStyleColor(ImGuiCol_ButtonActive, ImVec4{ 0.1f, 0.25f, 0.8f, 1.0f }); | |
ImGui::PushFont(boldFont); | |
if (ImGui::Button("Z", buttonSize)) | |
values.z = resetValue; | |
ImGui::PopFont(); | |
ImGui::PopStyleColor(3); | |
ImGui::SameLine(); | |
ImGui::DragFloat("##Z", &values.z, 0.1f, 0.0f, 0.0f, "%.2f"); | |
ImGui::PopItemWidth(); | |
ImGui::PopStyleVar(); | |
ImGui::Columns(1); | |
ImGui::PopID(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment