├── LICENSE.md ├── README.md ├── godot-pathfinding-demo.png ├── icon.png ├── icon.png.flags ├── level.tscn ├── player.gd ├── player.tscn ├── project.godot ├── res ├── floor.png ├── hero-down.png ├── hero-down.png.flags └── obstacle-grass.png ├── tileset.tres └── tileset_src.tscn /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FEDE0D/godot-pathfinding2d-demo/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FEDE0D/godot-pathfinding2d-demo/HEAD/README.md -------------------------------------------------------------------------------- /godot-pathfinding-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FEDE0D/godot-pathfinding2d-demo/HEAD/godot-pathfinding-demo.png -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FEDE0D/godot-pathfinding2d-demo/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.flags: -------------------------------------------------------------------------------- 1 | gen_mipmaps=false 2 | -------------------------------------------------------------------------------- /level.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FEDE0D/godot-pathfinding2d-demo/HEAD/level.tscn -------------------------------------------------------------------------------- /player.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FEDE0D/godot-pathfinding2d-demo/HEAD/player.gd -------------------------------------------------------------------------------- /player.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FEDE0D/godot-pathfinding2d-demo/HEAD/player.tscn -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FEDE0D/godot-pathfinding2d-demo/HEAD/project.godot -------------------------------------------------------------------------------- /res/floor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FEDE0D/godot-pathfinding2d-demo/HEAD/res/floor.png -------------------------------------------------------------------------------- /res/hero-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FEDE0D/godot-pathfinding2d-demo/HEAD/res/hero-down.png -------------------------------------------------------------------------------- /res/hero-down.png.flags: -------------------------------------------------------------------------------- 1 | filter=false 2 | -------------------------------------------------------------------------------- /res/obstacle-grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FEDE0D/godot-pathfinding2d-demo/HEAD/res/obstacle-grass.png -------------------------------------------------------------------------------- /tileset.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FEDE0D/godot-pathfinding2d-demo/HEAD/tileset.tres -------------------------------------------------------------------------------- /tileset_src.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FEDE0D/godot-pathfinding2d-demo/HEAD/tileset_src.tscn --------------------------------------------------------------------------------