using NewHorizons.External.Modules.Props; using Newtonsoft.Json; using System.ComponentModel; namespace NewHorizons.External.Modules.Volumes.VolumeInfos { [JsonObject] public class VolumeInfo : GeneralPropInfo { /// /// The radius of this volume, if a shape is not specified. /// [DefaultValue(1f)] public float radius = 1f; /// /// The shape of this volume. Defaults to a sphere with a radius of `radius` if not specified. /// public ShapeInfo shape; } }