From 221a5b7697415540b8af3a74d1f40ab1ce548c8b Mon Sep 17 00:00:00 2001 From: Raphtalia Date: Tue, 21 Jan 2025 21:43:39 +0000 Subject: [PATCH] Update Setup --- Setup.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Setup.md b/Setup.md index 09da0ab..62dae7a 100644 --- a/Setup.md +++ b/Setup.md @@ -71,7 +71,7 @@ public class Plugin : BaseUnityPlugin { You may want to use these callbacks if you want to have configs for your dungeon generation. For example, my interior has a config to allow the player to specify how many multiple main paths they want spawned. Small party groups may want only two main paths, large party groups may want three, or maybe they just want a vanilla experience with just one main path. As such, I use this callback to easily modify the `MainPathCount` before dungeon generation. -> **NOTE:** The copy of the `DunGenExtender's` properties is only a shallow copy. You can replace any value in the copy and it won't affect the corresponding value in the original properties. You **CANNOT** modify any value if it's a reference value. For example, the list `NormalNodeArchetypes` is a reference value; it is the same object for the original and copied properties. You can replace this value in the copy as it will still exist in the original properties. If you modify the value by adding or removing elements, then the changes would be reflected in the original properties as well since they are both the same object. +> **NOTE** The copy of the `DunGenExtender's` properties is only a shallow copy. You can replace any value in the copy and it won't affect the corresponding value in the original properties. You **CANNOT** modify any value if it's a reference value. For example, the list `NormalNodeArchetypes` is a reference value; it is the same object for the original and copied properties. You can replace this value in the copy as it will still exist in the original properties. If you modify the value by adding or removing elements, then the changes would be reflected in the original properties as well since they are both the same object. The following is a code example of how you may want to use it. Here is also an [example](https://git.touhou.dev/Raphtalia/SDM_LethalCompany_Mod/src/commit/4413d12ea3710b00a7bce3db5f236deb61855f00/ScarletMansion/ScarletMansion/DunGenPatch/Patch.cs#L73) of how my interior uses it. ```cs @@ -86,4 +86,4 @@ public class Plugin : BaseUnityPlugin { ``` -> **NOTE:** The purpose of `EventCallbackScenario` is purely for DevDebug mode. That mode replicates how Lethal Company generates dungeons for perfect accuracy, which also includes invoking the event `DunGenExtender.Events.OnModifyDunGenExtenderProperties`. If you don't want that callback to called and affect the dungeon generation during DevDebug mode, then you can return early by checking for `EventCallbackScenario.IsDevDebug`. +> **NOTE** The purpose of `EventCallbackScenario` is purely for DevDebug mode. That mode replicates how Lethal Company generates dungeons for perfect accuracy, which also includes invoking the event `DunGenExtender.Events.OnModifyDunGenExtenderProperties`. If you don't want that callback to called and affect the dungeon generation during DevDebug mode, then you can return early by checking for `EventCallbackScenario.IsDevDebug`.