1.1.0 • Published 6 years ago

gamemaker-make-project v1.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
6 years ago

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!");
});