├── .gitattributes ├── .gitignore ├── LICENSE.md ├── gd-mono-thirdpersoncontroller.csproj ├── gd-mono-thirdpersoncontroller.sln ├── icon.png ├── icon.png.import ├── project.godot ├── readme.md ├── scenes ├── main.tscn └── player.tscn └── src ├── player.cs └── window.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaporvee/gd-net-thirdpersoncontroller/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Godot 4+ specific ignores 2 | .godot/ 3 | #custom 4 | .vs/ 5 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaporvee/gd-net-thirdpersoncontroller/HEAD/LICENSE.md -------------------------------------------------------------------------------- /gd-mono-thirdpersoncontroller.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaporvee/gd-net-thirdpersoncontroller/HEAD/gd-mono-thirdpersoncontroller.csproj -------------------------------------------------------------------------------- /gd-mono-thirdpersoncontroller.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaporvee/gd-net-thirdpersoncontroller/HEAD/gd-mono-thirdpersoncontroller.sln -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaporvee/gd-net-thirdpersoncontroller/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaporvee/gd-net-thirdpersoncontroller/HEAD/icon.png.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaporvee/gd-net-thirdpersoncontroller/HEAD/project.godot -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaporvee/gd-net-thirdpersoncontroller/HEAD/readme.md -------------------------------------------------------------------------------- /scenes/main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaporvee/gd-net-thirdpersoncontroller/HEAD/scenes/main.tscn -------------------------------------------------------------------------------- /scenes/player.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaporvee/gd-net-thirdpersoncontroller/HEAD/scenes/player.tscn -------------------------------------------------------------------------------- /src/player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaporvee/gd-net-thirdpersoncontroller/HEAD/src/player.cs -------------------------------------------------------------------------------- /src/window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaporvee/gd-net-thirdpersoncontroller/HEAD/src/window.cs --------------------------------------------------------------------------------