gamemaker-make-project

1.1.0 • Public • Published

GameMaker-Make-Project

Generates a blank GameMaker Studio 2 Project.

CLI Usage

npm i gamemaker-make-project -g

gamemaker-make-project <target folder or yyp path>

gamemaker-make-project . - Shorthand for current directory.

NodeJS Dependency Usage

npm i gamemaker-make-project --save

Call from js...

const { makeBlankProject } = require("gamemaker-make-project");
 
// give a path to a non-existant project.
makeBlankProject("new-project/game.yyp").then(() => {
    console.log("Done!");
});

... or use typescript.

import { makeBlankProject } from "gamemaker-make-project";
 
// give a path to a non-existant project.
makeBlankProject("new-project/game.yyp").then(() => {
    console.log("Done!");
});

Readme

Keywords

none

Package Sidebar

Install

npm i gamemaker-make-project

Weekly Downloads

0

Version

1.1.0

License

MIT

Unpacked Size

21 kB

Total Files

5

Last publish

Collaborators

  • davecaruso