GreyHeartBrony
Newbie
- Feb 8, 2018
- 22
- 9
How the hell to you use the debug menu? I try selecting options and nothing happens????
Where is the cheat menu located?????
Where is the cheat menu located?????
Well...Has the UI gotten better?
It was literally just updated to 0.8.3, hold your horses0.8.4?
0.8.4 on patreonIt was literally just updated to 0.8.3, hold your horses
Do you replace every #story in the html file with this one or just insert this one anywhere in the file?Obviously the UI has been spoken about a lot, and for a lot of people it's completely unplayable on a computer monitor since everything gets scaled up so massively.
I messed around using Inspect Element to change some styles, and believe it or not it doesn't take much to make it so much better.
The game doesn't use css files so unfortunately I can't upload an easy file to add to your folder, but if the dev wants to consider adding the following simple styles, it might get people off their back for a while. Until then players can also just add these styles too.
That last one is the most important imo, it just sets a simple max size to images in speech bubbles so that they don't get too big.You don't have permission to view the spoiler content. Log in or register now.
I've uploaded a simple before and after comparison.
View attachment 2013556 View attachment 2013555
I haven't done it myself since I was only playing around in Dev Tools, but if you find the <style> tags you should just be able to addDo you replace every #story in the html file with this one or just insert this one anywhere in the file?
You can use the "Stylus" browser addon to inject css into any page you like.Do you replace every #story in the html file with this one or just insert this one anywhere in the file?
Lol... That's kind of funny. Wonder why the UI has been so bad for so long if it doesn't take more than a few lines of code to make good again.Obviously the UI has been spoken about a lot, and for a lot of people it's completely unplayable on a computer monitor since everything gets scaled up so massively.
I messed around using Inspect Element to change some styles, and believe it or not it doesn't take much to make it so much better.
The game doesn't use css files so unfortunately I can't upload an easy file to add to your folder, but if the dev wants to consider adding the following simple styles, it might get people off their back for a while. Until then players can also just add these styles too.
#story {
max-width:1200px;
margin-left:auto!important;
margin-right:auto!important;
}
.passage {
padding:5px 10px;
}
.passage img {
max-width:450px;
}
That last one is the most important imo, it just sets a simple max size to images in speech bubbles so that they don't get too big.
I've uploaded a simple before and after comparison.
View attachment 2013556 View attachment 2013555
Hi,#story {
max-width:1200px;
margin-left:auto!important;
margin-right:auto!important;
}
.passage {
padding:5px 10px;
}
.passage img {
max-width:450px;
}
That last one is the most important imo, it just sets a simple max size to images in speech bubbles so that they don't get too big.
I've uploaded a simple before and after comparison.
View attachment 2013556 View attachment 2013555
Well you clearly have a better concept as to why then I do, All I could tell is "something in code not right or missing". Hopefully the dev is able to figure out why and patch it for future updates! Thanks for trying though!If you look a bit up you'll find:
which sadly does not solve the problem, or I am too dumb to put it at the correct spot...
so, it is a wait and see for either a patch, an update, or a better coder...