This commit is contained in:
2026-05-06 22:42:28 -05:00
parent 581dbc2b3c
commit d8fe0f6923
12 changed files with 693 additions and 3 deletions
+8
View File
@@ -21,6 +21,14 @@ function CubeScene() {
Cutscene.play(new MoveCubeCutscene({ cube: this.cube })).then(function() {
scene.inputEnabled = true;
});
Textbox.setText(
"Hello! This is a visual novel textbox. It automatically " +
"wraps long lines and splits into pages when the content " +
"is too tall to fit. Press advance to continue...\t" +
"This is a second paragraph on a new page."
);
}
CubeScene.prototype = Object.create(Scene.prototype);