gamemaker-make-project
v1.1.0
Published
Generates blank GameMaker Studio 2 projects.
Downloads
1
Readme
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!");
});