Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Visual Novel Maker Plugins

A collection of bug fixes and plugins for Visual Novel Maker · By IristoId

Visual Novel Maker Tutorials Sticky Locked

A topic by IristoId created 19 days ago Views: 24 Replies: 1
This topic was locked by IristoId 19 days ago
Viewing posts 1 to 4
Developer (2 edits)

A collection of Visual Novel Maker Tutorials since RPG Maker Web has shut down.

Game Behaviour Changes:

Developer unlocked this topic
Developer (1 edit)

How to change the right-click / cancel behavior from Settings Menu to Save Menu:

  1. Look for Layout_Game in the Script Tab: image.png

  2. Replace it with this snippet:

        {
            "type": "ui.Panel",
            "frame": [0, 0, Graphics.width, Graphics.height],
            "updateBehavior": "continuous",
            "formulas": [$ -> o.ui.enabled = $dataFields.tempSettings.menuAccess],
            "actions": [
                { "name": "prepareSaveGame", "event": "onCancel", "params": { "snapshot": true } }
                { "name": "switchLayout",    "event": "onCancel", "params": { "name": "saveMenuLayout", "savePrevious": true } }
            ]
        },

image.png

Developer locked this topic