So Lil withdrawal is a real thing so I started a replay with the transparency mod but seeing the choices without the box behind it is very disorienting and I don't think I will ever get used to it, it there a way to make it make only the text box transparent?
I had the same problem. I received the transparency mod in the form of a file
y_outline.rpy
. If you also have that file, search it for a line
## choice button background
. Comment out the two lines below (by prepending a hash symbol) like so:
Code:
# style choice_button:
# background None
You can also delete these lines. Either way, delete the file
y_outline.rpyc
(this is a compilation artifact which will be regenerated) and start the program.
The mod loads after all other code, superseding previous settings in the original. By removing the
choice_button
entry there, we allow the original setting to prevail, and thus retain the classic pink smiley-face buttons.
If your transparency mod isn't the same file as mine, search the directory for the text
style choice_button:
. Wherever you find that line with
background None
beneath, just comment out or delete both lines, then delete the
.rpyc version of the
.rpy file you edited.