using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NewHorizons.External.Modules { [JsonObject] public class ShockEffectModule { /// /// Does this planet have a shock effect when the nearest star goes supernova? Automatically disabled for stars, focal points, and stellar remnants. /// public bool hasSupernovaShockEffect = true; /// /// Asset Bundle that contains the shock effect mesh /// public string assetBundle; /// /// Path in the asset bundle that leads a replacement mesh for the planet's supernova shock effect /// public string meshPath; } }