(Help) Does Ren'py have a tenacity to lower image quality?
Posted: Thu Aug 23, 2012 7:52 pm
Cause this is really weird to me. I'm 100% Sure my images are sharp, and crisp, png Images. But looking at them in game..
IMAGES
(How It's Displaying)
(How it should be)
It's NOT looking the way it should... And I'm really confused. Maybe I'm coding wrong...or the size is bad. But please do look at it and tell me what's wrong. Blurry Images drive me insane.
My Thanks ~~~[/color]
IMAGES
(How It's Displaying)
(How it should be)
It's NOT looking the way it should... And I'm really confused. Maybe I'm coding wrong...or the size is bad. But please do look at it and tell me what's wrong. Blurry Images drive me insane.
Code: Select all
#██▓▒░ CUSTOM NAMEBOX ░▒▓███████████████████████████████████
style.say_who_window.background = Frame("name box.png", 20, 20) #Background skin
style.say_who_window.xalign = 0.0
style.say_who_window.yalign = 1.0
style.say_who_window.xpos = 220 #For precise placement
style.say_who_window.ypos = 110 #For precise placement
style.say_who_window.left_padding = 15
style.say_who_window.top_padding = 15
style.say_who_window.right_padding = 15
style.say_who_window.bottom_padding = 15
style.say_who_window.xminimum = 150
style.say_who_window.yminimum = 15
style.say_who_window.xfill = False
style.say_label.color="#835631"
style.say_label.drop_shadow = [(1, 1)]
style.say_label.drop_shadow_color = "#b69e84"
style.say_label.size = 18
style.say_label.text_align = 0.5
style.say_label.xpos = 29
style.say_label.xalign = 0.5Code: Select all
#██▓▒░CUSTOM TEXTBOX ░▒▓███████████████████████████████████
## The background of the window. In a Frame, the two numbers
## are the size of the left/right and top/bottom borders,
## respectively.
style.window.background = Frame("text box.png", 45, 45)
## Margin is space surrounding the window, where the background
## is not drawn.
style.window.left_margin = 0
style.window.right_margin = 0
style.window.top_margin = 0
style.window.bottom_margin = 0
## Padding is space inside the window, where the background is
## drawn.
style.window.left_padding = 215
style.window.right_padding = 35
style.window.top_padding = 75
style.window.bottom_padding = 35
## This is the minimum height of the window, including the margins
## and padding.
style.window.yminimum = 254