Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Marble.

4
Posts
118
Followers
8
Following
A member registered Jan 03, 2024 · View creator page →

Creator of

Recent community posts

(1 edit)

Hello!! 

You can become best friends with Pantella, but they are not romanceable as they are not interested in romantic or sexual relationships.

Thank you so much!!!! I loved Viatica!! 

I appreciate the note about the vagueness, I’ll work on that! I am also building a compendium + glossary to ease some of that, and chapter two will expand more on the lore (especially MC motivation, core usage, and prophethood)! 

Excited to have your support! <3

I loved reading this and can't wait for more! 

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!