Advertisement
bombillo

[Snippet] Change Studio Interface Color

Aug 30th, 2019
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.96 KB | None | 0 0
  1. static  r3dColor    bkgColor(30, 114, 186); // Studio btn color #1e72ba
  2.  
  3.     const void* imgui_val = NULL;       // current editable value. == pointer to FOCUS
  4.     float       imgui_mx;
  5.     float       imgui_my;
  6.     float       imgui_mmx;
  7.     float       imgui_mmy;
  8.  
  9.     int     imgui_lbp = 0;
  10.     int     imgui_rbp = 0;
  11.     int     imgui_lbr = 0;
  12.     int     imgui_rbr = 0;
  13.     int     imgui_mzMotion;
  14.     bool        imgui_disabled = false;
  15.    
  16.     float       imgui_th  = 20;     // text height (for clicking)
  17.     float       imgui_dy  = 25;
  18.  
  19. static  bool        imgui_textEditActive = false;
  20. static  bool        imgui_textDirty = false;
  21. static  char        imgui_editText[100]  = "";
  22.  
  23.         r3dColor    imgui_bkgDlg    = r3dColor(22,85,138,220); // background color #16558a
  24.  
  25. static  r3dColor    imgui_borderCol = r3dColor(132,132,132); // border large btn #848484
  26. static  r3dColor    imgui_bkgCol    = r3dColor(128,128,128);
  27. static  r3dColor    imgui_nameCol   = r3dColor(255,255,155);
  28. static  r3dColor    imgui_nameColH  = r3dColor(255,255,210);
  29. static  r3dColor    imgui_valCol    = r3dColor(255,255,255);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement