diff --git a/README.md b/README.md index 632247f..5ceb8e5 100644 --- a/README.md +++ b/README.md @@ -1,105 +1,19 @@ -# bingle-arbiter +

Warrior Logo

+

A new era.

+

+ Discord Server + GitHub Followers + Twitter +

+

+ This is the official repository for Warrior's Arbiter.JS +

+
-The Bingle arbiter is designed to be used with almost any revival backend. +The Bingle arbiter was created by cirroskais & unexp. It is designed to be used with almost any revival backend. -It comes preloaded with some Lua scripts made by kinery and jackd900. +It comes preloaded with some LUA scripts made by kinery and skul (d9mz / oa6z). -You **will** have to replace/modify these scripts when implementing for your own projects. +You may have to replace/modify these scripts when implementing for your own projects. Set your desired settings in `.env.example`, then rename it to `.env`. - -## Routes - -### GET /render/asset/:id - -
-200 OK - -``` -iVBORw0KGgoAAAANSUhEUgAAAtAAAALQCAYAAAC... -``` - -
- -### GET /render/asset/3d/:id - -
-200 OK - -```json -{ - "camera": { - "position": { "x": 0, "y": 0, "z": 0 }, - "direction": { "x": 0, "y": 0, "z": 0 } - }, - "AABB": { - "min": { "x": 0, "y": 0, "z": 0 }, - "max": { "x": 0, "y": 0, "z": 0 } - }, - "files": { - "scene.obj": { "content": "..." }, - "scene.mtl": { "content": "..." }, - "Handle1Tex.png": { "content": "..." } - } -} -``` - -
- -### GET /render/texture/:id - -
-200 OK - -``` -iVBORw0KGgoAAAANSUhEUgAAAtAAAALQCAYAAAC... -``` - -
- -### GET /render/user/headshot/:id - -
-200 OK - -``` -iVBORw0KGgoAAAANSUhEUgAAAtAAAALQCAYAAAC... -``` - -
- -### GET /render/user/bodyshot/:id - -
-200 OK - -``` -iVBORw0KGgoAAAANSUhEUgAAAtAAAALQCAYAAAC... -``` - -
- -### GET /render/user/3d/:id - -
-200 OK - -```json -{ - "camera": { - "position": { "x": 0, "y": 0, "z": 0 }, - "direction": { "x": 0, "y": 0, "z": 0 } - }, - "AABB": { - "min": { "x": 0, "y": 0, "z": 0 }, - "max": { "x": 0, "y": 0, "z": 0 } - }, - "files": { - "scene.obj": { "content": "..." }, - "scene.mtl": { "content": "..." }, - "Handle1Tex.png": { "content": "..." } - } -} -``` - -