Skip to content

Commit 459b611

Browse files
authored
Bug fix for custom logics - Change default angular values to degrees, to account for change made in previous PR (#561)
1 parent a7d8508 commit 459b611

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

TheForceEngine/TFE_ExternalData/dfLogics.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace TFE_ExternalData
1212
const char* logicName;
1313
bool hasGravity = true;
1414
bool isFlying = false;
15-
u32 fov = 9557;
15+
u32 fov = 210; // 9557 in DF angle
1616
u32 awareRange = 20;
1717

1818
const char* alertSound = "";
@@ -45,8 +45,8 @@ namespace TFE_ExternalData
4545

4646
u32 speed = 4;
4747
u32 verticalSpeed = 10;
48-
u32 rotationSpeed = 0x7fff;
49-
u32 approachVariation = 4096;
48+
u32 rotationSpeed = 720; // 0x7fff in DF angle
49+
u32 approachVariation = 90; // 4096 in DF angle
5050
u32 approachOffset = 3;
5151
u32 thinkerDelay = 2;
5252

0 commit comments

Comments
 (0)