2024-08-22 15:33:27 -04:00
|
|
|
|
using System.Text.Json.Serialization;
|
2023-08-12 19:08:38 +01:00
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
|
|
namespace LootDumpProcessor.Model.Input
|
|
|
|
|
{
|
|
|
|
|
public class SpawnPointParam
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty("Id", NullValueHandling = NullValueHandling.Ignore)]
|
|
|
|
|
[JsonPropertyName("Id")]
|
|
|
|
|
public string? Id { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("Position", NullValueHandling = NullValueHandling.Ignore)]
|
|
|
|
|
[JsonPropertyName("Position")]
|
|
|
|
|
public Vector3? Position { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("Rotation", NullValueHandling = NullValueHandling.Ignore)]
|
|
|
|
|
[JsonPropertyName("Rotation")]
|
2024-08-22 15:33:27 -04:00
|
|
|
|
public float? Rotation { get; set; }
|
2023-08-12 19:08:38 +01:00
|
|
|
|
|
|
|
|
|
[JsonProperty("Sides", NullValueHandling = NullValueHandling.Ignore)]
|
|
|
|
|
[JsonPropertyName("Sides")]
|
|
|
|
|
public List<string>? Sides { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("Categories", NullValueHandling = NullValueHandling.Ignore)]
|
|
|
|
|
[JsonPropertyName("Categories")]
|
|
|
|
|
public List<string>? Categories { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("Infiltration", NullValueHandling = NullValueHandling.Ignore)]
|
|
|
|
|
[JsonPropertyName("Infiltration")]
|
|
|
|
|
public string? Infiltration { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("DelayToCanSpawnSec", NullValueHandling = NullValueHandling.Ignore)]
|
|
|
|
|
[JsonPropertyName("DelayToCanSpawnSec")]
|
2024-08-22 15:33:27 -04:00
|
|
|
|
public float? DelayToCanSpawnSec { get; set; }
|
2023-08-12 19:08:38 +01:00
|
|
|
|
|
|
|
|
|
[JsonProperty("ColliderParams", NullValueHandling = NullValueHandling.Ignore)]
|
|
|
|
|
[JsonPropertyName("ColliderParams")]
|
|
|
|
|
public ColliderParams? ColliderParams { get; set; }
|
2024-08-22 15:33:27 -04:00
|
|
|
|
|
|
|
|
|
[JsonProperty("BotZoneName", NullValueHandling = NullValueHandling.Ignore)]
|
|
|
|
|
[JsonPropertyName("BotZoneName")]
|
|
|
|
|
public string? BotZoneName { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("CorePointId", NullValueHandling = NullValueHandling.Ignore)]
|
|
|
|
|
[JsonPropertyName("CorePointId")]
|
|
|
|
|
public int? CorePointId { get; set; }
|
2023-08-12 19:08:38 +01:00
|
|
|
|
}
|
|
|
|
|
}
|