-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Moved namespaces - Updated for SPT rebranding - Cleaned up crap
- Loading branch information
Showing
37 changed files
with
952 additions
and
958 deletions.
There are no files selected for viewing
35 changes: 0 additions & 35 deletions
35
Fika.Core/AkiSupport/Airdrops/Models/FikaAirdropParametersModel.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...Airdrops/Models/FikaAirdropConfigModel.cs → ...Airdrops/Models/FikaAirdropConfigModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...t/Airdrops/Models/FikaAirdropLootModel.cs → ...p/Airdrops/Models/FikaAirdropLootModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
Fika.Core/Coop/Airdrops/Models/FikaAirdropParametersModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
using Newtonsoft.Json; | ||
using UnityEngine; | ||
|
||
namespace Fika.Core.Coop.Airdrops.Models | ||
{ | ||
/// <summary> | ||
/// Created by: SPT team | ||
/// Link: https://dev.sp-tarkov.com/SPT/Modules/src/branch/master/project/SPT.Custom/Airdrops/Models | ||
/// </summary> | ||
public class FikaAirdropParametersModel | ||
{ | ||
public FikaAirdropConfigModel Config; | ||
public bool AirdropAvailable; | ||
public bool PlaneSpawned; | ||
public bool BoxSpawned; | ||
public float DistanceTraveled; | ||
public float DistanceToTravel; | ||
public float DistanceToDrop; | ||
public float Timer; | ||
public int DropHeight; | ||
public int TimeToStart; | ||
public Vector3 StartPosition; | ||
public Vector3 SpawnPoint; | ||
public Vector3 LookPoint; | ||
|
||
[JsonIgnore] | ||
public Vector3 RandomAirdropPoint = Vector3.zero; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.