From 414aee7d404c1749fac446bf276aca39370a21ff Mon Sep 17 00:00:00 2001 From: Lucas Schwiderski Date: Thu, 16 Mar 2023 19:53:58 +0100 Subject: [PATCH] Update 'dtmt.cfg Reference' --- dtmt.cfg-Reference.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dtmt.cfg-Reference.md b/dtmt.cfg-Reference.md index dbc056a..e600108 100644 --- a/dtmt.cfg-Reference.md +++ b/dtmt.cfg-Reference.md @@ -11,7 +11,7 @@ See [Autodesk Stingray: About the SJSON data format](https://help.autodesk.com/v ## Example ```sjson -// The unique mod ID. Both DTMM and DMF will run into issues if this duplicates with another mod +// The unique mod ID. Both DTMM and DMF will run into issues if this overlaps with another mod id = DMF // The human-readable name of the mod. This will show up in places like DTMM's mod list and DMF's options view name = "Darktide Mod Framework" @@ -19,7 +19,7 @@ name = "Darktide Mod Framework" summary = "An open-source, community-run framework that provides enhanced Darktide modding support." // A version number to track changes in your mod with. Shows up in DTMM version = "2023-03-12" -// Name of the individual or group that made this mod +// Name of the individual or group that made this mod. Shows up in DTMM author = "Darktide Modders" // A file path with extension to an image to show in DTMM. Recommended width: 500 - 1000 px image = "assets/icon.png" @@ -46,7 +46,7 @@ depends = [ } ] -// File paths to Lua files, as passed in the second parameter of DMF's `new_mod` +// File paths to Lua files (without extension), as passed in the second parameter of DMF's `new_mod` resources = { // The Lua file to be called by DMF when it initializes your mod. init = "scripts/mods/DMF/init" @@ -57,7 +57,7 @@ resources = { } packages = [ - // At least one package file to load your files. It doesn't have to be named after your mod's ID value, but it is good practice to do so. + // At least one package file (without extension) to load your files. It doesn't have to be named after your mod's ID value, but it is good practice to do so. "packages/mods/DMF" ]