Split Files
Splitting your Script into multiple files.
Formatting Your Second Script File
monogatari.script ({
// The game starts here.
'Start': [
"y Hello there Protaganist-senpai!",
"y Wow after one line of dialog this is starting to feel pretty long.",
"y Let's jump to another label in another file!",
"jump theNextLabel",
]
});monogatari.script ({
// The Game Continues!!
'theNextLabel': [
"y Yeah there we go! That feels so much better.",
"end"
]
});Getting Monogatari to read your Split Files
Internationalization with Split Files
Another Way, for Splitting Internationalized Files
Related
Last updated
Was this helpful?