mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
26 lines
629 B
C#
26 lines
629 B
C#
using Newtonsoft.Json;
|
|
using System.ComponentModel;
|
|
|
|
namespace NewHorizons.External.Modules.Props.EchoesOfTheEye
|
|
{
|
|
[JsonObject]
|
|
public class RaftInfo : GeneralPropInfo
|
|
{
|
|
/// <summary>
|
|
/// Acceleration of the raft. Default acceleration is 5.
|
|
/// </summary>
|
|
[DefaultValue(5f)] public float acceleration = 5f;
|
|
|
|
/// <summary>
|
|
/// Path to the dock this raft will start attached to.
|
|
/// </summary>
|
|
public string dockPath;
|
|
|
|
/// <summary>
|
|
/// Uses the raft model from the dreamworld
|
|
/// </summary>
|
|
public bool pristine;
|
|
}
|
|
|
|
}
|