├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── FlyingNavBenchmark ├── .gitattributes ├── .gitignore ├── Config │ ├── DefaultEditor.ini │ ├── DefaultEngine.ini │ └── DefaultGame.ini ├── Content │ ├── Benchmark.umap │ ├── BenchmarkData.uasset │ ├── BenchmarkSettings.uasset │ ├── DragonBenchmark.umap │ ├── SM_Dragon.uasset │ └── SM_Floor.uasset ├── FlyingNavBenchmark.uproject ├── LICENSE.md └── Source │ ├── FlyingNavBenchmark.Target.cs │ ├── FlyingNavBenchmark │ ├── BenchmarkActor.cpp │ ├── BenchmarkActor.h │ ├── CSVExporter.cpp │ ├── CSVExporter.h │ ├── FlyingNavBenchmark.Build.cs │ ├── FlyingNavBenchmark.cpp │ └── FlyingNavBenchmark.h │ └── FlyingNavBenchmarkEditor.Target.cs ├── FlyingQuickstart ├── Config │ ├── DefaultEditor.ini │ ├── DefaultEditorPerProjectUserSettings.ini │ ├── DefaultEngine.ini │ ├── DefaultGame.ini │ └── DefaultInput.ini ├── Content │ ├── Flying │ │ └── Meshes │ │ │ ├── BaseMaterial.uasset │ │ │ ├── GrayMaterial.uasset │ │ │ ├── UFO.uasset │ │ │ └── UFOMaterial.uasset │ ├── FlyingBP │ │ ├── AI │ │ │ ├── AIC_FollowingController.uasset │ │ │ ├── BB_FollowingPawn.uasset │ │ │ ├── BP_FollowingPawn.uasset │ │ │ └── BT_FollowingBehavior.uasset │ │ ├── Blueprints │ │ │ ├── FlyingGameMode.uasset │ │ │ └── FlyingPawn.uasset │ │ ├── FlyingOverview.uasset │ │ └── Maps │ │ │ ├── FlyingExampleMap.umap │ │ │ └── FlyingExampleMap_BuiltData.uasset │ └── Geometry │ │ └── Meshes │ │ ├── 1M_Cube.uasset │ │ ├── 1M_Cube_Chamfer.uasset │ │ ├── CubeMaterial.uasset │ │ └── TemplateFloor.uasset └── FlyingQuickstart.uproject └── README.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /FlyingNavBenchmark/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingNavBenchmark/.gitattributes -------------------------------------------------------------------------------- /FlyingNavBenchmark/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingNavBenchmark/.gitignore -------------------------------------------------------------------------------- /FlyingNavBenchmark/Config/DefaultEditor.ini: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /FlyingNavBenchmark/Config/DefaultEngine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingNavBenchmark/Config/DefaultEngine.ini -------------------------------------------------------------------------------- /FlyingNavBenchmark/Config/DefaultGame.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingNavBenchmark/Config/DefaultGame.ini -------------------------------------------------------------------------------- /FlyingNavBenchmark/Content/Benchmark.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingNavBenchmark/Content/Benchmark.umap -------------------------------------------------------------------------------- /FlyingNavBenchmark/Content/BenchmarkData.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingNavBenchmark/Content/BenchmarkData.uasset -------------------------------------------------------------------------------- /FlyingNavBenchmark/Content/BenchmarkSettings.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingNavBenchmark/Content/BenchmarkSettings.uasset -------------------------------------------------------------------------------- /FlyingNavBenchmark/Content/DragonBenchmark.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingNavBenchmark/Content/DragonBenchmark.umap -------------------------------------------------------------------------------- /FlyingNavBenchmark/Content/SM_Dragon.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingNavBenchmark/Content/SM_Dragon.uasset -------------------------------------------------------------------------------- /FlyingNavBenchmark/Content/SM_Floor.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingNavBenchmark/Content/SM_Floor.uasset -------------------------------------------------------------------------------- /FlyingNavBenchmark/FlyingNavBenchmark.uproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingNavBenchmark/FlyingNavBenchmark.uproject -------------------------------------------------------------------------------- /FlyingNavBenchmark/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingNavBenchmark/LICENSE.md -------------------------------------------------------------------------------- /FlyingNavBenchmark/Source/FlyingNavBenchmark.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingNavBenchmark/Source/FlyingNavBenchmark.Target.cs -------------------------------------------------------------------------------- /FlyingNavBenchmark/Source/FlyingNavBenchmark/BenchmarkActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingNavBenchmark/Source/FlyingNavBenchmark/BenchmarkActor.cpp -------------------------------------------------------------------------------- /FlyingNavBenchmark/Source/FlyingNavBenchmark/BenchmarkActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingNavBenchmark/Source/FlyingNavBenchmark/BenchmarkActor.h -------------------------------------------------------------------------------- /FlyingNavBenchmark/Source/FlyingNavBenchmark/CSVExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingNavBenchmark/Source/FlyingNavBenchmark/CSVExporter.cpp -------------------------------------------------------------------------------- /FlyingNavBenchmark/Source/FlyingNavBenchmark/CSVExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingNavBenchmark/Source/FlyingNavBenchmark/CSVExporter.h -------------------------------------------------------------------------------- /FlyingNavBenchmark/Source/FlyingNavBenchmark/FlyingNavBenchmark.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingNavBenchmark/Source/FlyingNavBenchmark/FlyingNavBenchmark.Build.cs -------------------------------------------------------------------------------- /FlyingNavBenchmark/Source/FlyingNavBenchmark/FlyingNavBenchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingNavBenchmark/Source/FlyingNavBenchmark/FlyingNavBenchmark.cpp -------------------------------------------------------------------------------- /FlyingNavBenchmark/Source/FlyingNavBenchmark/FlyingNavBenchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingNavBenchmark/Source/FlyingNavBenchmark/FlyingNavBenchmark.h -------------------------------------------------------------------------------- /FlyingNavBenchmark/Source/FlyingNavBenchmarkEditor.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingNavBenchmark/Source/FlyingNavBenchmarkEditor.Target.cs -------------------------------------------------------------------------------- /FlyingQuickstart/Config/DefaultEditor.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingQuickstart/Config/DefaultEditor.ini -------------------------------------------------------------------------------- /FlyingQuickstart/Config/DefaultEditorPerProjectUserSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingQuickstart/Config/DefaultEditorPerProjectUserSettings.ini -------------------------------------------------------------------------------- /FlyingQuickstart/Config/DefaultEngine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingQuickstart/Config/DefaultEngine.ini -------------------------------------------------------------------------------- /FlyingQuickstart/Config/DefaultGame.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingQuickstart/Config/DefaultGame.ini -------------------------------------------------------------------------------- /FlyingQuickstart/Config/DefaultInput.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingQuickstart/Config/DefaultInput.ini -------------------------------------------------------------------------------- /FlyingQuickstart/Content/Flying/Meshes/BaseMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingQuickstart/Content/Flying/Meshes/BaseMaterial.uasset -------------------------------------------------------------------------------- /FlyingQuickstart/Content/Flying/Meshes/GrayMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingQuickstart/Content/Flying/Meshes/GrayMaterial.uasset -------------------------------------------------------------------------------- /FlyingQuickstart/Content/Flying/Meshes/UFO.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingQuickstart/Content/Flying/Meshes/UFO.uasset -------------------------------------------------------------------------------- /FlyingQuickstart/Content/Flying/Meshes/UFOMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingQuickstart/Content/Flying/Meshes/UFOMaterial.uasset -------------------------------------------------------------------------------- /FlyingQuickstart/Content/FlyingBP/AI/AIC_FollowingController.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingQuickstart/Content/FlyingBP/AI/AIC_FollowingController.uasset -------------------------------------------------------------------------------- /FlyingQuickstart/Content/FlyingBP/AI/BB_FollowingPawn.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingQuickstart/Content/FlyingBP/AI/BB_FollowingPawn.uasset -------------------------------------------------------------------------------- /FlyingQuickstart/Content/FlyingBP/AI/BP_FollowingPawn.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingQuickstart/Content/FlyingBP/AI/BP_FollowingPawn.uasset -------------------------------------------------------------------------------- /FlyingQuickstart/Content/FlyingBP/AI/BT_FollowingBehavior.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingQuickstart/Content/FlyingBP/AI/BT_FollowingBehavior.uasset -------------------------------------------------------------------------------- /FlyingQuickstart/Content/FlyingBP/Blueprints/FlyingGameMode.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingQuickstart/Content/FlyingBP/Blueprints/FlyingGameMode.uasset -------------------------------------------------------------------------------- /FlyingQuickstart/Content/FlyingBP/Blueprints/FlyingPawn.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingQuickstart/Content/FlyingBP/Blueprints/FlyingPawn.uasset -------------------------------------------------------------------------------- /FlyingQuickstart/Content/FlyingBP/FlyingOverview.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingQuickstart/Content/FlyingBP/FlyingOverview.uasset -------------------------------------------------------------------------------- /FlyingQuickstart/Content/FlyingBP/Maps/FlyingExampleMap.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingQuickstart/Content/FlyingBP/Maps/FlyingExampleMap.umap -------------------------------------------------------------------------------- /FlyingQuickstart/Content/FlyingBP/Maps/FlyingExampleMap_BuiltData.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingQuickstart/Content/FlyingBP/Maps/FlyingExampleMap_BuiltData.uasset -------------------------------------------------------------------------------- /FlyingQuickstart/Content/Geometry/Meshes/1M_Cube.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingQuickstart/Content/Geometry/Meshes/1M_Cube.uasset -------------------------------------------------------------------------------- /FlyingQuickstart/Content/Geometry/Meshes/1M_Cube_Chamfer.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingQuickstart/Content/Geometry/Meshes/1M_Cube_Chamfer.uasset -------------------------------------------------------------------------------- /FlyingQuickstart/Content/Geometry/Meshes/CubeMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingQuickstart/Content/Geometry/Meshes/CubeMaterial.uasset -------------------------------------------------------------------------------- /FlyingQuickstart/Content/Geometry/Meshes/TemplateFloor.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingQuickstart/Content/Geometry/Meshes/TemplateFloor.uasset -------------------------------------------------------------------------------- /FlyingQuickstart/FlyingQuickstart.uproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/FlyingQuickstart/FlyingQuickstart.uproject -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlenderSleuth/FlyingNavSystemSupport/HEAD/README.md --------------------------------------------------------------------------------