Dimenticare

Game Maker - Outlined Text

Mar 20th, 2015
2,146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /// draw_text_outline(x, y, text, textColor, outlineColor);
  2.  
  3. var xx=argument0;
  4. var yy=argument1;
  5. var text=argument2;
  6. var tcolor=argument3;
  7. var ocolor=argument4;
  8.  
  9. var pcolor=draw_get_color();
  10.  
  11. draw_set_color(ocolor);
  12. draw_text(xx-1, yy, text);
  13. draw_text(xx+1, yy, text);
  14. draw_text(xx, yy-1, text);
  15. draw_text(xx, yy+1, text);
  16.  
  17. draw_set_color(tcolor);
  18. draw_text(xx, yy, text);
Advertisement
Add Comment
Please, Sign In to add comment