Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed Binaries/Win64/UE4Editor-DonAINavigation.dll
Binary file not shown.
Binary file removed Binaries/Win64/UE4Editor-DonAINavigation.pdb
Binary file not shown.
7 changes: 0 additions & 7 deletions Binaries/Win64/UE4Editor.modules

This file was deleted.

2 changes: 1 addition & 1 deletion DonAINavigation.uplugin
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"FriendlyName" : "DoN AI Navigation Plugin (Flying AI /3D Aerial Pathfinding)",
"Version" : 10,
"VersionName" : "1.10",
"EngineVersion" : "4.19.0",
"EngineVersion" : "4.25.0",
"Category" : "AI Navigation",
"CreatedBy" : "Venugopalan Sreedharan",
"CreatedByURL" : "http://www.drunkonnectar.com/3d-pathfinding-ue4/",
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,7 @@ Technical Overview
For a technical overview of the project, please visit this link:<br>
http://www.drunkonnectar.com/3d-pathfinding-ue4/#TechnicalOverview

=============================================
Update
=============================================
Update by yhyu13@github from 4.19 to 4.25
4 changes: 2 additions & 2 deletions Source/DonAINavigation/Classes/DonNavigationCommon.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include <vector>

#if PLATFORM_WINDOWS
#include "AllowWindowsPlatformTypes.h"
#include "Windows/AllowWindowsPlatformTypes.h"
#elif PLATFORM_XBOXONE
#include "XboxOneAllowPlatformTypes.h"
#endif
Expand Down Expand Up @@ -95,5 +95,5 @@ namespace DoNNavigation
}

#if PLATFORM_WINDOWS
#include "HideWindowsPlatformTypes.h"
#include "Windows/HideWindowsPlatformTypes.h"
#endif
2 changes: 1 addition & 1 deletion Source/DonAINavigation/Classes/DonNavigationManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include "Multithreading/DonDrawDebugThreadSafe.h"
#include "CollisionQueryParams.h"
#include "WorldCollision.h"
#include "Queue.h"
#include "Containers/Queue.h"
#include "Components/BoxComponent.h"

#include "DonNavigationManager.generated.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

#include "DonEnvQueryTest_Navigation.h"
#include "EnvironmentQuery/DonEnvQueryTest_Navigation.h"
#include "../DonAINavigationPrivatePCH.h"

#include "DonNavigationManager.h"
Expand Down
3 changes: 1 addition & 2 deletions Source/DonAINavigation/Public/IDonAINavigation.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@

#pragma once

#include "ModuleManager.h"

#include "Modules/ModuleManager.h"
DECLARE_LOG_CATEGORY_EXTERN(DoNNavigationLog, Log, All);

/**
Expand Down