├── .gitignore ├── 1.3 └── Assemblies │ └── CleanPathfinding.dll ├── 1.4 ├── Assemblies │ └── CleanPathfinding.dll └── Patches │ └── patch.owlchemist.cleanpathfinding.xml ├── About ├── About.xml ├── PublishedFileId.txt └── preview.png ├── LICENSE ├── Languages └── English │ └── Keyed │ └── owlchemist.cleanpathfinding.xml ├── README.md ├── Source ├── CleanPathfinding.csproj ├── CleanPathfindingUtility.cs ├── DoorPathingUtility.cs ├── Mod_CleanPathfinding.cs ├── Patch_Collider.cs ├── Patch_Compat.cs ├── Patch_MapExit.cs ├── Patch_Wander.cs ├── ResourceBank.cs └── Source.code-workspace └── Textures └── UI ├── Owl_DoorPriority.dds ├── Owl_DoorPriority.png └── Owl_Priority.png /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | Source/obj/ 3 | -------------------------------------------------------------------------------- /1.3/Assemblies/CleanPathfinding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owlchemist/clean-pathfinding/HEAD/1.3/Assemblies/CleanPathfinding.dll -------------------------------------------------------------------------------- /1.4/Assemblies/CleanPathfinding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owlchemist/clean-pathfinding/HEAD/1.4/Assemblies/CleanPathfinding.dll -------------------------------------------------------------------------------- /1.4/Patches/patch.owlchemist.cleanpathfinding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owlchemist/clean-pathfinding/HEAD/1.4/Patches/patch.owlchemist.cleanpathfinding.xml -------------------------------------------------------------------------------- /About/About.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owlchemist/clean-pathfinding/HEAD/About/About.xml -------------------------------------------------------------------------------- /About/PublishedFileId.txt: -------------------------------------------------------------------------------- 1 | 2887176193 -------------------------------------------------------------------------------- /About/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owlchemist/clean-pathfinding/HEAD/About/preview.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owlchemist/clean-pathfinding/HEAD/LICENSE -------------------------------------------------------------------------------- /Languages/English/Keyed/owlchemist.cleanpathfinding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owlchemist/clean-pathfinding/HEAD/Languages/English/Keyed/owlchemist.cleanpathfinding.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owlchemist/clean-pathfinding/HEAD/README.md -------------------------------------------------------------------------------- /Source/CleanPathfinding.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owlchemist/clean-pathfinding/HEAD/Source/CleanPathfinding.csproj -------------------------------------------------------------------------------- /Source/CleanPathfindingUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owlchemist/clean-pathfinding/HEAD/Source/CleanPathfindingUtility.cs -------------------------------------------------------------------------------- /Source/DoorPathingUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owlchemist/clean-pathfinding/HEAD/Source/DoorPathingUtility.cs -------------------------------------------------------------------------------- /Source/Mod_CleanPathfinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owlchemist/clean-pathfinding/HEAD/Source/Mod_CleanPathfinding.cs -------------------------------------------------------------------------------- /Source/Patch_Collider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owlchemist/clean-pathfinding/HEAD/Source/Patch_Collider.cs -------------------------------------------------------------------------------- /Source/Patch_Compat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owlchemist/clean-pathfinding/HEAD/Source/Patch_Compat.cs -------------------------------------------------------------------------------- /Source/Patch_MapExit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owlchemist/clean-pathfinding/HEAD/Source/Patch_MapExit.cs -------------------------------------------------------------------------------- /Source/Patch_Wander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owlchemist/clean-pathfinding/HEAD/Source/Patch_Wander.cs -------------------------------------------------------------------------------- /Source/ResourceBank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owlchemist/clean-pathfinding/HEAD/Source/ResourceBank.cs -------------------------------------------------------------------------------- /Source/Source.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owlchemist/clean-pathfinding/HEAD/Source/Source.code-workspace -------------------------------------------------------------------------------- /Textures/UI/Owl_DoorPriority.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owlchemist/clean-pathfinding/HEAD/Textures/UI/Owl_DoorPriority.dds -------------------------------------------------------------------------------- /Textures/UI/Owl_DoorPriority.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owlchemist/clean-pathfinding/HEAD/Textures/UI/Owl_DoorPriority.png -------------------------------------------------------------------------------- /Textures/UI/Owl_Priority.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owlchemist/clean-pathfinding/HEAD/Textures/UI/Owl_Priority.png --------------------------------------------------------------------------------