Advertisement
Guest User

Untitled

a guest
Jul 17th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. static float f = 0.0f;
  2. ImGuiWindowFlags window_flags = 0;
  3. window_flags |= ImGuiWindowFlags_NoResize;
  4. window_flags |= ImGuiWindowFlags_NoCollapse;
  5. window_flags |= ImGuiWindowFlags_MenuBar;
  6. ImGuiWindowFlags window_flags_about = 0;
  7. window_flags_about |= ImGuiWindowFlags_NoResize;
  8. window_flags_about |= ImGuiWindowFlags_NoCollapse;
  9. window_flags_about |= ImGuiWindowFlags_NoMove;
  10. ImGui::SetNextWindowSize(ImVec2(700.f, 335.f), ImGuiSetCond_FirstUseEver);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement