OldBlueWater/BlueWater/Assets/02.Scripts/Utility/GlobalValue.cs

43 lines
1.4 KiB
C#
Raw Normal View History

2023-08-31 06:46:13 +00:00
// ReSharper disable once CheckNamespace
namespace BlueWaterProject
2023-08-16 05:40:33 +00:00
{
2023-08-31 06:46:13 +00:00
public class GlobalValue
2023-08-16 05:40:33 +00:00
{
2023-08-31 06:46:13 +00:00
public const int CARD_DATA_CAPACITY = 50;
2023-09-12 14:46:57 +00:00
public const int ENEMY_VIEW_DATA_CAPACITY = 50;
public const int PIRATE_VIEW_DATA_CAPACITY = 50;
2023-09-12 07:41:11 +00:00
public const int ENEMY_STAT_DATA_CAPACITY = 50;
public const int PIRATE_STAT_DATA_CAPACITY = 50;
2023-09-12 14:46:57 +00:00
public const int ENEMY_UNIT_STAT_DATA_CAPACITY = 50;
public const int PIRATE_UNIT_STAT_DATA_CAPACITY = 50;
2023-08-31 06:46:13 +00:00
public const int ISLAND_DATA_CAPACITY = 50;
public const int ONE_UNIT_CAPACITY = 16;
public const int AI_ANIMATOR_CAPACITY = 10;
public const int MAX_CANON_COUNT = 5;
2023-09-18 05:02:11 +00:00
public const float MINIMUM_STOP_DISTANCE = 0.05f;
2023-10-17 07:31:10 +00:00
public const float MAXIMUM_STOP_DISTANCE = 1.5f;
/// <summary> Radar 바늘이 레이더에 겹치는 허용 범위 </summary>
public const float RADAR_OVERLAP_TOLERANCE = 5f;
2023-09-11 05:15:18 +00:00
public const float RADAR_RANGE = 100f;
public const string ENEMY_LAYER = "Enemy";
2023-08-31 06:46:13 +00:00
public enum UnitType
{
NONE = -1,
ARCHER_E,
SPEAR_KNIGHT_E,
SPEARMAN_E,
SWORD_KNIGHT_E,
SWORDMAN_E,
ARCHER_P,
AXEMAN_P,
SPEARMAN_P,
SWORD_KNIGHT_P,
SWORDMAN_P
}
2023-08-16 05:40:33 +00:00
}
}