e6mill
Forum Fanatic
- Aug 4, 2022
- 4,032
- 8,072
The same way I sleep with that pea under my mattress...how are you people even reading this thing without wanting to tear your eyes out?
The same way I sleep with that pea under my mattress...how are you people even reading this thing without wanting to tear your eyes out?
So wait, are you peeing under your mattress, or is someone else doing it?The same way I sleep with that pea under my mattress...
I guess ace didn't add them for some reason. It's easy enough. I never noticed because I have a simple mod I made that I use for every renpy game so they all have an outline and no punches when I play. Also, acewinz, your preferences screen has two entries for display for me.This game has high praise but I have to ask how are you people even reading this thing without wanting to tear your eyes out? I can't even get past the first scene. The white font on white background (how does a VN even get made without a black outline in the font) is making this simply unplayable.
Does this get fixed at some point? There's just no reality where this font is actually used the whole game, surely?
Edit: Found Mr Benny's patch to make the game actually readable. One can only wonder how many people gave this a try and dropped it immediately because of this utterly baffling font choice. Thanks to Mr Benny, it was at least one less than it could have been.
init python:
vpunch = ""
hpunch = ""
define gui.dialogue_text_outlines = [(3, "#000")]
define gui.name_text_outlines = [(3, "#000")]
The font and the black background is default as I recall, but the opacity you can change from your preferences. Why it wasn't changed by me is I guess because your the first to mention it being an issue. I am aware there some shots where the light reflecting off an object is too bright when the text overlays on it, which is why I generally play/recommend light opacity.This game has high praise but I have to ask how are you people even reading this thing without wanting to tear your eyes out? I can't even get past the first scene. The white font on white background (how does a VN even get made without a black outline in the font) is making this simply unplayable.
Does this get fixed at some point? There's just no reality where this font is actually used the whole game, surely?
Edit: Found Mr Benny's patch to make the game actually readable. One can only wonder how many people gave this a try and dropped it immediately because of this utterly baffling font choice. Thanks to Mr Benny, it was at least one less than it could have been.
No problem. As for the dialogue box opacity, your persistent.dialogueBoxOpacity is defaulted to 0.0 so any new player will start with a completely transparent textbox. Adding those two lines to your gui rpy will set the outline no matter what so if someone doesn't want the background the outline will already be there. It doesn't have to be three pixels, you can use whatever you want. Not important at all but you could show the percentage for the box as well.The font and the black background is default as I recall, but the opacity you can change from your preferences. Why it wasn't changed by me is I guess because your the first to mention it being an issue. I am aware there some shots where the light reflecting off an object is too bright when the text overlays on it, which is why I generally play/recommend light opacity.You don't have permission to view the spoiler content. Log in or register now.
Skeltom Thanks, fixed for next version.
Thanks again! I honestly did plan for a text outline early on, and forgot about it. lolNo problem. As for the dialogue box opacity, your persistent.dialogueBoxOpacity is defaulted to 0.0 so any new player will start with a completely transparent textbox. Adding those two lines to your gui rpy will set the outline no matter what so if someone doesn't want the background the outline will already be there. It doesn't have to be three pixels, you can use whatever you want. Not important at all but you could show the percentage for the box as well.
You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.
Another heads up and a small suggestion if I may. You have two of the original choice screens in your screens rpy and the outline for the style right_choice_button: don't need to be there, they need to be on the style right_choice_button_text:. It was set to black for the button which was pointless as the text was black as well and that is only for a title. I added a four pixel grey outline because it was hard for me to read. I don't know which one you used so I just changed all three styles. Again it doesn't have to be four or grey.Thanks again! I honestly did plan for a text outline early on, and forgot about it. lol
Going to add your touches to the next version along with a slightly higher than 0 default opacity just in case.
For those who might like the text outline now though, here is an updated gui.rpy you can toss in your game folder (backups recommended as usual)
style choice_button_text:
color "#000000" # Black text color
outlines [(4, "#808080", 0, 0)]
xalign 0.5
style right_choice_button_text:
color "#000000" # Black text color
outlines [(4, "#808080", 0, 0)]
xalign 0.5
Haha, thanks! Copy enough code you going to dupe some!Another heads up and a small suggestion if I may. You have two of the original choice screens in your screens rpy and the outline for the style right_choice_button: don't need to be there, they need to be on the style right_choice_button_text:. It was set to black for the button which was pointless as the text was black as well and that is only for a title. I added a four pixel grey outline because it was hard for me to read. I don't know which one you used so I just changed all three styles. Again it doesn't have to be four or grey.
Python:style choice_button_text: color "#000000" # Black text color outlines [(4, "#808080", 0, 0)] xalign 0.5 style right_choice_button_text: color "#000000" # Black text color outlines [(4, "#808080", 0, 0)] xalign 0.5
You don't have permission to view the spoiler content. Log in or register now.
It is easier to see, but for whatever reason, my color scheme perhaps, the choice box for me are much whiter compared to the screenshot taken. Not sure why though. And you could also add a opacity to the choice box like the dialogue instead of just hard coding an alpha. It would take a little tweaking on your end, but something to think about I guess. This is what I set up for a project I'm working on as an example. Note I'm still working on the UI.Haha, thanks! Copy enough code you going to dupe some!
As for the black outline on black text, I got a good laugh because I totally forgot I did that! I initially was doing what we are doing now and setting up to tweak a highlighting outline, but it ended up just making it bolder when I didn't change the default and I kind of liked it on the grey background and left it. Can definitely clean this up now.
Also, I'm all for suggestions! I honestly don't get as much feedback on the technical side of things as I could use.
I do actually have a harder time reading your grey outlines on grey background, but that could just be because I have some slight blurring when it comes to that kind of detail. What do you think of this?Here I did a proper bold and the white outline seemed more readable to me after trying a few others.You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.
Also attached the updated screens.rpy for anyone who likes the above.
Could it be whiter for you because your gamma is set higher? I'm using the default there, (which is actually 33% if using the new percentage scale)It is easier to see, but for whatever reason, my color scheme perhaps, the choice box for me are much whiter compared to the screenshot taken. Not sure why though. And you could also add a opacity to the choice box like the dialogue instead of just hard coding an alpha. It would take a little tweaking on your end, but something to think about I guess. This is what I set up for a project I'm working on as an example. Note I'm still working on the UI.
You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.
I don't have the gamma slider, never downloaded the attachment. It could be my contrast and backlight settings, brighter whites, you know?Could it be whiter for you because your gamma is set higher? I'm using the default there, (which is actually 33% if using the new percentage scale)
And yeah, I'll probably provide a choice for preferences or game start to personalize the settings at some point if I get more input.
Another quick fix for reading dialog without much effort is 'Shift + A'This game has high praise but I have to ask how are you people even reading this thing without wanting to tear your eyes out? I can't even get past the first scene. The white font on white background (how does a VN even get made without a black outline in the font) is making this simply unplayable.