Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
30d3f878ee |
@ -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.**
|
||||
|
||||
|
@ -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",
|
||||
}
|
||||
);
|
||||
|
||||
|
@ -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
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue
Block a user