• Our software update is now concluded. You will need to reset your password to log in. In order to do this, you will have to click "Log in" in the top right corner and then "Forgot your password?".
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

Size of Font

mane

I need more class of English:/
17
Posts
13
Years
  • Hello everybody
    how can do to change to size of font or the font when i show a text?
    i don't know as used the script of "pbSetSystemFont"
     

    FL

    Pokémon Island Creator
    2,454
    Posts
    13
    Years
    • Seen yesterday
    https://pokemonessentials.wikia.com/wiki/Messages#Modifying_text said:
    <fn=X>...</fn> Makes the text between these commands display is a specified font (or Arial if the font doesn't exist).
    <fs=X>...</fs> Makes the text between these commands font size "X". Text will be squished if this is greater than 32.
    ---------------------------------------------
     

    mane

    I need more class of English:/
    17
    Posts
    13
    Years
  • I do not think that this serve me.
    is for this script:
    Code:
    @sprites["overlay"]=BitmapSprite.new(Graphics.width,Graphics.height,@viewport)
        overlay=@sprites["overlay"].bitmap
        overlay.clear
        pbSetSystemFont(@sprites["overlay"].bitmap)
     

    venom12

    Pokemon Crystal Rain Relased
    476
    Posts
    17
    Years
    • Age 33
    • Seen Dec 28, 2023
    you need to use.
    Code:
    @sprites["overlay"].bitmap.font.size=28
    also you can change font which you want to use by using.
    Code:
    @sprites["overlay"]bitmap.font.name="name of font"
     
    Back
    Top