unrealgd
v1.6.9
Published
Simplest Geometry Dash .gmd file wrapper you can think of.<br> This is a "revamp" of rgdforge since it's blowing up (F-for some reason)<br> Example:<br> ```js const gd = require('unrealgd') const level = new gd.Level('the balls','description')
Downloads
2
Readme
Unreal GMD
Simplest Geometry Dash .gmd file wrapper you can think of. This is a "revamp" of rgdforge since it's blowing up (F-for some reason) Example:
const gd = require('unrealgd')
const level = new gd.Level('the balls','description')
level.AffixObject({ // Append an object to the level
id: 1, // Default object, you can find object IDs in the level "Object IDs" by GDColon.
position: [15, 15] // In units
})
level.write({
directory: '/absolute/path/also/pls/uwu'
})