Advertisement
Guest User

EOManager UI

a guest
Dec 21st, 2018
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /// @description Insert description here
  2. // You can write your code in this editor
  3.  
  4. roommiddle = room_width / 2;
  5.  
  6. draw_set_halign(fa_middle);
  7. draw_set_valign(fa_center);
  8.  
  9. draw_sprite(EobotLogo,roommiddle,10,roommiddle)
  10.  
  11. draw_set_colour(make_color_rgb(31,40,230));
  12. draw_set_font(TitleFont);
  13.  
  14. titlestring = "Manager";
  15.  
  16. titleheightmid = string_height(titlestring) / 2;
  17. titleypos = sprite_get_height(EobotLogo) + 10 + titleheightmid;
  18.  
  19. draw_text(roommiddle, titleypos, titlestring );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement