From b559c7c383ffdef124b08919a809972f14f13fa4 Mon Sep 17 00:00:00 2001 From: Cyberarm Date: Thu, 26 Sep 2019 16:32:23 -0500 Subject: [PATCH] Add assets readme --- assets/README.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 assets/README.md diff --git a/assets/README.md b/assets/README.md new file mode 100644 index 0000000..96a5857 --- /dev/null +++ b/assets/README.md @@ -0,0 +1,30 @@ +# IMIC FPS Assets +## Directory Structure +* /__package__ + * /__name__ + * /model - + * /scripts + * /textures + * manifest.yaml + +## Manifest File +```yaml +name: "Friendly Name of Object" +model: "model.obj" # path to model relative to package/name/model/ + +# optional options: +# Type of collision detection to use: null, boundingbox, orientated_bb, mesh +collision: "mesh" +# Path to collision model or null to use `model` +collision_mesh: null +# Array of scripts to load, relative to package/name/scripts/ +scripts: [ + "script" +] +# Array of assets to preload that this asset uses/requires +uses: [ + - + package: "base" + name: "door" +] +``` \ No newline at end of file