Envision, Create, Share

Welcome to HBGames, a leading amateur game development forum and Discord server. All are welcome, and amongst our ranks you will find experts in their field from all aspects of video game design and development.

I can't change the color of the font!!! HELP!!

I have RPGVX and i got it to change the font....BUT...I can't seem to change the color!  i want black fonts for the whole game....I've tried different color codes
but i keep getting white ....AAGGGHHH!

here is the code i'm using:

class Font
  begin
    Font.default_color = Color.new(0,0,0,255)
    Font.default_name = "BoBsFrAnTiC"
    Font.default_size = 20
    Font.default_bold = false
    end
end
 
What you did will do nothing.
You need to put
Code:
Font.default_color = Color.new(0,0,0,255)
    Font.default_name = "BoBsFrAnTiC"
    Font.default_size = 20
    Font.default_bold = false
in Main, just below 'begin'
 
Dargor":2e3lg3n1 said:
What you did will do nothing.
You need to put
Code:
Font.default_color = Color.new(0,0,0,255)
    Font.default_name = "BoBsFrAnTiC"
    Font.default_size = 20
    Font.default_bold = false
in Main, just below 'begin'

ok....thank you...but i did that and still white...
here is what i did (in Main)

#==============================================================================
# ** Main
#------------------------------------------------------------------------------
#  After defining each class, actual processing begins here.
#==============================================================================

  begin
    Font.default_color = Color.new(0,0,0,255)
    Font.default_name = "BoBsFrAnTiC"
    Font.default_size = 20
    Font.default_bold = false
  Graphics.freeze
  $scene = Scene_Title.new
  $scene.main while $scene != nil
  Graphics.transition(30)
rescue Errno::ENOENT
  filename = $!.message.sub("No such file or directory - ", "")
  print("Unable to find file #{filename}.")
end
 
oh sorry, you said VX

The go into your windowskin picture (with paint or anything else) and, notice the color palette in the lower right corner? simply change the white color with the color of your choice! The rest (font name, size and bold flag) can stay in Main.
 

Thank you for viewing

HBGames is a leading amateur video game development forum and Discord server open to all ability levels. Feel free to have a nosey around!

Discord

Join our growing and active Discord server to discuss all aspects of game making in a relaxed environment. Join Us

Content

  • Our Games
  • Games in Development
  • Emoji by Twemoji.
    Top