Advertisement
khanhdu

script font

May 20th, 2017
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 1.16 KB | None | 0 0
  1. if true # << Make true to use this script, false to disable.
  2. #===============================================================================
  3. #                     https://rpgmakervn.blogspot.com/
  4. #===============================================================================
  5. #
  6. # This script will change the default font settings..
  7. # *May* not work for non default scripts.
  8. #
  9. #===============================================================================
  10. module Font_Defaults
  11. #===============================================================================
  12.  
  13.   Font.default_name      = ["VL Gothic","Serif","Arial"]
  14.   #["VL Gothic", "Verdana", "Arial", "Courier New"]
  15.   Font.default_size      = 14
  16.   Font.default_bold      = true
  17.   Font.default_italic    = false
  18.   Font.default_shadow    = false
  19.   Font.default_outline   = true
  20.   Font.default_color     = Color.new(255,255,255,255)
  21.   Font.default_out_color = Color.new(0,0,0,182)
  22.  
  23. end
  24. #===============================================================================
  25. #                      https://rpgmakervn.blogspot.com/
  26. #===============================================================================
  27. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement