that’s entirely my fault! This game was built on my PC and I didn’t get a chance to update it for tablet or mobile. I’ll make that a priority for next update! Try landscape mode, that helped another player.
Marble.
Creator of
Recent community posts
omg thank you so much <3 I really appreciate that you’re enjoying it. I’ll go fix the bug. I was messing with that way too much last night and should have left it alone.
Funny enough, the feedback I got before was not enough lore and now it’s too much. Striking that balance for folks has been hard for me. I’ll keep that in mind as I continue writing, but in full transparency I likely will not change the way it’s set up now, mostly because the new version serves as an opening for the entire series.
thank you again <3
edit: bug has been fixed!
Hi Friend! You'll need to add something like this to your Javascript sheet:
// CHANGE FONT FAMILY
var settingFontFamily = ["Montserrat", "Merriweather", "Open Dyslexic"];
var setFont = function() {
var passages = document.getElementById("passages");
switch (settings.fontFamily) {
case "Montserrat":
passages.style.fontFamily = "'Montserrat', sans-serif";
break;
}
switch (settings.fontFamily) {
case "Merriweather":
passages.style.fontFamily = "'Merriweather', serif";
break;
}
switch (settings.fontFamily) {
case "Open Dyslexic":
passages.style.fontFamily = "'Dyslexic', serif";
break;
}
};
You can probably find a template somewhere with the entire code, I got this one from Vahnya.
Happy Coding!
