Core/AreaTriggers: Update areatrigger scalecurve handling with latest research

Port From (https://github.com/TrinityCore/TrinityCore/commit/361fe56bc87456b63e685a53ffc63ca1694d336a)
This commit is contained in:
hondacrx
2023-08-28 12:55:52 -04:00
parent efd91bfd57
commit 9ecb3449d5
4 changed files with 167 additions and 140 deletions
+11
View File
@@ -877,6 +877,17 @@ namespace Framework.Constants
RaidRestricted = 4
}
public enum CurveInterpolationMode
{
Linear = 0,
Cosine = 1,
CatmullRom = 2,
Bezier3 = 3,
Bezier4 = 4,
Bezier = 5,
Constant = 6,
}
public enum Difficulty : byte
{
None = 0,