mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
29 lines
828 B
C#
29 lines
828 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// Does this planet have a shock effect when the nearest star goes supernova? Automatically disabled for stars, focal points, and stellar remnants.
|
|
/// </summary>
|
|
public bool hasSupernovaShockEffect = true;
|
|
|
|
/// <summary>
|
|
/// Asset Bundle that contains the shock effect mesh
|
|
/// </summary>
|
|
public string assetBundle;
|
|
|
|
/// <summary>
|
|
/// Path in the asset bundle that leads a replacement mesh for the planet's supernova shock effect
|
|
/// </summary>
|
|
public string meshPath;
|
|
}
|
|
}
|