Compare commits

...

1 Commits

Author SHA1 Message Date
30d3f878ee Change name of fixed point plugin to fixed math 2023-02-12 12:32:35 -05:00
3 changed files with 6 additions and 6 deletions

View File

@ -2,7 +2,7 @@
A collision detection library for Unreal Engine using fixed point math for coordinates and dimensions of collision shapes.
**Please note: this library depends on [the UnrealFixedPoint library](https://git.kevinporetti.com/poret/UnrealFixedPoint).**
**Please note: this library depends on [the UnrealFixedMath library](https://git.kevinporetti.com/poret/UnrealFixedMath).**
**Please note: this is NOT a physics library. This library aims to only provide collision detection. Any collision resolution must be handled on a project by project basis.**

View File

@ -10,7 +10,7 @@ public class UnrealFixedCollision : ModuleRules
PublicIncludePaths.AddRange(
new string[] {
"../../UnrealFixedPoint/Source/UnrealFixedPoint/Public/"
"../../UnrealFixedMath/Source/UnrealFixedMath/Public/"
}
);
@ -26,7 +26,7 @@ public class UnrealFixedCollision : ModuleRules
new string[]
{
"Core",
"UnrealFixedPoint",
"UnrealFixedMath",
}
);

View File

@ -2,7 +2,7 @@
"FileVersion": 3,
"Version": 1,
"VersionName": "1.0",
"FriendlyName": "UnrealFixedCollision",
"FriendlyName": "Unreal Fixed Collision",
"Description": "A collision detection library for Unreal Engine using fixed point math for coordinates and dimensions of collision shapes.",
"Category": "Other",
"CreatedBy": "Kevin Poretti",
@ -23,8 +23,8 @@
],
"Plugins": [
{
"Name": "UnrealFixedPoint",
"Enabled": true
"Name": "UnrealFixedMath",
"Enabled": true
}
]
}