Aiekick

Results 44 comments of Aiekick

My new soft "Lumo" thanks to @thedmd for his cool node graph (especially the zooming feature) [Full video](https://vimeo.com/717615358/2e613cba95) ![Lumo_Windows_x64_X6S8DxZy1F](https://user-images.githubusercontent.com/1434736/172258779-a111e323-c31d-4b9d-88bf-87eb5489bfdc.png)

@Hoek67 if you need a flexible and simple icon system for your buttons , you can jsut load in imgui a font icon like fontawesome or others. Then use the...

Base theme (Green / Blue) of ImGuiFontStudio ![ImGuiFontStudio_Msvc_x64_lpmmbmBHE3](https://user-images.githubusercontent.com/1434736/104601190-3891a500-567a-11eb-95e5-4214f6c7fbe8.png) ```cpp ImVec4* colors = ImGui::GetStyle().Colors; colors[ImGuiCol_Text] = ImVec4(1.00f, 1.00f, 1.00f, 1.00f); colors[ImGuiCol_TextDisabled] = ImVec4(0.50f, 0.50f, 0.50f, 1.00f); colors[ImGuiCol_WindowBg] = ImVec4(0.06f, 0.06f, 0.06f,...

Alternative Red/Dark theme in ImGuiFontStudio : ![ImGuiFontStudio_Msvc_x64_RqUe1iwNMG](https://user-images.githubusercontent.com/1434736/104601393-7ee70400-567a-11eb-923d-6e96f93ff9c8.png) ```cpp ImVec4* colors = ImGui::GetStyle().Colors; colors[ImGuiCol_Text] = ImVec4(0.75f, 0.75f, 0.75f, 1.00f); colors[ImGuiCol_TextDisabled] = ImVec4(0.35f, 0.35f, 0.35f, 1.00f); colors[ImGuiCol_WindowBg] = ImVec4(0.00f, 0.00f, 0.00f, 0.94f);...

thanks. its the Roboto-Medium.ttf font. you have it in imgui/misc/font directory

@LocalPtr its better i thinck if you can post the resulting picture too :)

A soft for generate a mesh from a distance field. the slice path is fully controled by the glsl directly :) but work always in progress at this moment :)...

for thoses who are interested i just merged the StackLayout Implementation In External to Imgui by following the explains of @thedmd https://github.com/aiekick/imgui/tree/docking_layout_external

Hello, i have an issue with the docking_layout_external branch (i have the same with docking_layout) i have a generic widget who si using two iother widget separeted by a ImGui::SameLine()...

Hello, ok thanks, i will test. can you give your font file for a test case ? if you cant, can you open the merged font file in the soft...