From 8118b1756198f7b4dda3d9986de2235755bb273f Mon Sep 17 00:00:00 2001 From: FreezeDriedMangoes Date: Tue, 24 May 2022 12:28:53 -0400 Subject: [PATCH] added comments to the props module --- NewHorizons/External/Modules/PropModule.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/NewHorizons/External/Modules/PropModule.cs b/NewHorizons/External/Modules/PropModule.cs index a70f4634..ad5098ae 100644 --- a/NewHorizons/External/Modules/PropModule.cs +++ b/NewHorizons/External/Modules/PropModule.cs @@ -1,4 +1,4 @@ -using NewHorizons.Utility; +using NewHorizons.Utility; using System.ComponentModel; namespace NewHorizons.External.Modules @@ -142,7 +142,10 @@ namespace NewHorizons.External.Modules public MVector3 position; public MVector3 rotation; public string[] reveals; - public SlideInfo[] slides; + public SlideInfo[] slides; + + // enum values for this property: "autoProjector", "slideReel", "playerVisionTorchTarget", "standingVisionTorch" + // I don't know why the default value is capital 'S' SlideReel. it should be lower case as far as I can tell. public string type = "SlideReel"; }