forked from liza/Questionable
19 lines
540 B
C#
19 lines
540 B
C#
using System.Numerics;
|
|
using System.Text.Json.Serialization;
|
|
using Questionable.Model.Common.Converter;
|
|
using Questionable.Model.Questing.Converter;
|
|
|
|
namespace Questionable.Model.Questing;
|
|
|
|
public sealed class JumpDestination
|
|
{
|
|
[JsonConverter(typeof(VectorConverter))]
|
|
public Vector3 Position { get; set; }
|
|
|
|
public float? StopDistance { get; set; }
|
|
public float? DelaySeconds { get; set; }
|
|
public EJumpType Type { get; set; } = EJumpType.SingleJump;
|
|
|
|
public float CalculateStopDistance() => StopDistance ?? 1f;
|
|
}
|