added comments to the props module

This commit is contained in:
FreezeDriedMangoes 2022-05-24 12:28:53 -04:00
parent 667e68f7ac
commit 8118b17561

View File

@ -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";
}