mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
18 lines
461 B
C#
18 lines
461 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace NewHorizons.External.Modules.Props.Dialogue
|
|
{
|
|
[JsonObject]
|
|
public class RemoteTriggerInfo : GeneralPointPropInfo
|
|
{
|
|
/// <summary>
|
|
/// The radius of the remote trigger volume.
|
|
/// </summary>
|
|
public float radius;
|
|
/// <summary>
|
|
/// This condition must be met for the remote trigger volume to trigger.
|
|
/// </summary>
|
|
public string prereqCondition;
|
|
}
|
|
}
|