Skip to content

Instantly share code, notes, and snippets.

@saronpasu
Last active June 8, 2016 15:17
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saronpasu/b17c47b0f96f5a62390e to your computer and use it in GitHub Desktop.
Save saronpasu/b17c47b0f96f5a62390e to your computer and use it in GitHub Desktop.

RPGMakerMV's Project packaging for Linux.

This is not official support.


Step 1) install node.js

required node.js

this document not support for node.js install.


Step 2) install nw-builder

next, install nw-builder.

$ npm install nw-builder -g

Step 3) write package.json

your game project directory in write "package.json" file.

{
    "name": "Game",
    "version": "0.0.1",
    "main": "index.html",
    "js-flags": "--expose-gc",
    "window": {
        "title": "",
        "toolbar": false,
        "width": 816,
        "height": 624
    }
}

packaging game for linux

your game project directory in this command.

$ nwbuild --quiet -p linux64 -v 0.12.3 .

output "build/Game/linux64".

that files is packaging for linux your game project.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment