Skip to content

Commit

Permalink
sync
Browse files Browse the repository at this point in the history
  • Loading branch information
AtomicSponge committed Nov 14, 2024
1 parent d4e1054 commit d40e635
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 23 deletions.
25 changes: 10 additions & 15 deletions tools/README.md
Original file line number Diff line number Diff line change
@@ -1,50 +1,45 @@
# WTEngine Tools
# Silvergun Game Engine Tools

Toolkit for [WTEngine](https://github.com/wtfsystems/wtengine)
Toolkit for [Silvergun](https://github.com/AtomicSponge/silvergun)

Requires [NodeJS](https://nodejs.org/) to install and run

Install per-project as a dev-dependency:
```
npm i -D @spongex/wtengine-tools
```
Requires [NodeJS](https://nodejs.org/) to install and run.

-----

# wte-config
# slv-config

Configure a project for building

## Usage

```
npx wte-config
npx slv-config
```

-----

# wte-mkscript
# slv-mkscript

Convert csv, json or (wip) yml files to WTEngine scripts
Convert csv, json or (wip) yml files to Silvergun Engine scripts

## Usage

```
npx wte-mkscript <inFile> [outFile]
npx slv-mkscript <inFile> [outFile]
```

Output file can be left blank. The script will use `inFile.sdf` automatically.

-----

# wte-syscheck
# slv-syscheck

Checks your system for necessary tools

## Usage

```
npx wte-syscheck
npx slv-syscheck
```

# Changelog
Expand Down
17 changes: 9 additions & 8 deletions tools/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"name": "@wtfsystems/wtengine-tools",
"name": "silvergun-tools",
"version": "0.2.2",
"description": "WTEngine Development Tools",
"author": "Matthew Evans",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wtfsystems/wtengine-tools.git"
"url": "git+https://github.com/AtomicSponge/silvergun.git",
"directory": "tools"
},
"keywords": [
"engine",
Expand All @@ -15,19 +16,19 @@
"tools",
"scripts"
],
"url": "https://www.npmjs.com/package/@wtfsystems/wtengine-tools",
"homepage": "https://github.com/wtfsystems/wtengine-tools#readme",
"url": "https://github.com/AtomicSponge/silvergun",
"homepage": "https://github.com/AtomicSponge/silvergun#readme",
"bugs": {
"url": "https://github.com/wtfsystems/wtengine-tools/issues"
"url": "https://github.com/AtomicSponge/silvergun/issues"
},
"scripts": {
"build": "tsup",
"prepublishOnly": "npm run build"
},
"bin": {
"wte-config": "dist/wte-config.js",
"wte-mkscript": "dist/wte-mkscript.js",
"wte-syscheck": "dist/wte-syscheck.js"
"wte-config": "dist/slv-config.js",
"wte-mkscript": "dist/slv-mkscript.js",
"wte-syscheck": "dist/slv-syscheck.js"
},
"type": "module",
"files": [
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit d40e635

Please sign in to comment.