IMGUI_API ImVec2 CalcTextSize(const char* text, const char* text_end = NULL, bool hide_text_after_double_hash = false, float wrap_width = -1.0f); // Color Utilities IMGUI_API ImVec4 ColorConvertU32ToFloat4(ImU32 in);
IMGUI_API ImVec2 GetWindowContentRegionMax(); // content boundaries max for the full window (roughly (0,0)+Size-Scroll) where Size can be overridden with SetNextWindowContentSize(), in window coordinates // Windows Scrolling // - Any change of Scroll will be applied at the beginning of...
Most of these tools were written with UE 4.27, then it was later updated to UE 5.0 (it was a very minimal change). So currently only UE 5.0 is currently supported, but I plan to formalize 4.27 support with a flag or something in the future. For now, if you drop this in 4.27 it ...
ImGui::Text("Hello, world %d", 123); if (ImGui::Button("Save")) MySaveFunction(); ImGui::InputText("string", buf, IM_ARRAYSIZE(buf)); ImGui::SliderFloat("float", &f, 0.0f, 1.0f);// Create a window called "My First Tool", with a menu bar. ImGui::Begin("My First ...
2 changes: 1 addition & 1 deletion 2 libs/zgui/libs/imgui/imstb_textedit.h Original file line numberDiff line numberDiff line change @@ -41,7 +41,7 @@ // 1.13 (2019-02-07) fix bug in undo size management // 1.12 (2018-01-29) user can change STB_TEXTEDIT_KEYTYPE, fix r...
ImGui::InputTextWithHint("input text (w/ hint)", "enter text here", str1, IM_ARRAYSIZE(str1)); 输入数字框:作者太有想法了,支持在框里输入+100,就可以累计。 static int i0 = 123; ImGui::InputInt("input int", &i0); 单精度输入框:单精度有6位小数,双精度有15位小数。如果是记录经纬...
included beacause i've tested some draw functions. This both files imgui_impl_dx9(cpp and h) are from an example in (imgui-master\examples\directx9_example) folder the project they have is a exe i'm trying to implement it on a dll, i don't know if this really change things a ...
IMGUI_API ImVec2 CalcTextSize(const char* text, const char* text_end = NULL, bool hide_text_after_double_hash = false, float wrap_width = -1.0f); // Color Utilities IMGUI_API ImVec4 ColorConvertU32ToFloat4(ImU32 in);
ImGui::InputTextWithHint("input text (w/ hint)", "enter text here", str1, IM_ARRAYSIZE(str1)); 输入数字框:作者太有想法了,支持在框里输入+100,就可以累计。 static int i0 = 123; ImGui::InputInt("input int", &i0); 单精度输入框:单精度有6位小数,双精度有15位小数。如果是记录经纬...
included beacause i've tested some draw functions. This both files imgui_impl_dx9(cpp and h) are from an example in (imgui-master\examples\directx9_example) folder the project they have is a exe i'm trying to implement it on a dll, i don't know if this really change things a ...