├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── FuturePlan.md ├── LICENSE ├── Project ├── Assets │ ├── Audios │ │ ├── footstep_concrete_001.ogg │ │ ├── footstep_concrete_001.ogg.import │ │ ├── footstep_grass_000.ogg │ │ └── footstep_grass_000.ogg.import │ ├── Icons │ │ ├── ATPCTitle.png │ │ ├── ATPCTitle.png.import │ │ ├── Logo.png │ │ └── Logo.png.import │ ├── Models │ │ ├── Godette_Model.fbx │ │ ├── Tex_Godette.png │ │ ├── godot_plush V2.glb │ │ ├── godot_plush V2_godot_plush_basecolor.png │ │ ├── godot_plush V2_godot_plush_normal.png │ │ └── godot_plush V2_godot_plush_roughness.png │ └── Textures │ │ ├── texture_01.png │ │ ├── texture_01.png.import │ │ ├── texture_02.png │ │ ├── texture_02.png.import │ │ ├── texture_02_orange.png │ │ ├── texture_02_orange.png.import │ │ ├── texture_04.png │ │ ├── texture_04.png.import │ │ ├── texture_05.png │ │ ├── texture_05.png.import │ │ ├── texture_06.png │ │ ├── texture_06.png.import │ │ ├── texture_08.png │ │ ├── texture_08.png.import │ │ ├── texture_09.png │ │ └── texture_09.png.import ├── Enemies │ ├── enemy.gd │ └── enemy.tscn ├── Global.gd ├── Menu │ ├── menu.gd │ └── menu.tscn ├── Objects │ ├── PickableObject.gd │ └── godot_plush.tscn ├── Player │ ├── player.gd │ └── player.tscn ├── World │ ├── world.gd │ ├── world.tscn │ └── world_day.tres ├── icon.svg └── project.godot └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/.gitignore -------------------------------------------------------------------------------- /FuturePlan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/FuturePlan.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/LICENSE -------------------------------------------------------------------------------- /Project/Assets/Audios/footstep_concrete_001.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Audios/footstep_concrete_001.ogg -------------------------------------------------------------------------------- /Project/Assets/Audios/footstep_concrete_001.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Audios/footstep_concrete_001.ogg.import -------------------------------------------------------------------------------- /Project/Assets/Audios/footstep_grass_000.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Audios/footstep_grass_000.ogg -------------------------------------------------------------------------------- /Project/Assets/Audios/footstep_grass_000.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Audios/footstep_grass_000.ogg.import -------------------------------------------------------------------------------- /Project/Assets/Icons/ATPCTitle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Icons/ATPCTitle.png -------------------------------------------------------------------------------- /Project/Assets/Icons/ATPCTitle.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Icons/ATPCTitle.png.import -------------------------------------------------------------------------------- /Project/Assets/Icons/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Icons/Logo.png -------------------------------------------------------------------------------- /Project/Assets/Icons/Logo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Icons/Logo.png.import -------------------------------------------------------------------------------- /Project/Assets/Models/Godette_Model.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Models/Godette_Model.fbx -------------------------------------------------------------------------------- /Project/Assets/Models/Tex_Godette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Models/Tex_Godette.png -------------------------------------------------------------------------------- /Project/Assets/Models/godot_plush V2.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Models/godot_plush V2.glb -------------------------------------------------------------------------------- /Project/Assets/Models/godot_plush V2_godot_plush_basecolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Models/godot_plush V2_godot_plush_basecolor.png -------------------------------------------------------------------------------- /Project/Assets/Models/godot_plush V2_godot_plush_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Models/godot_plush V2_godot_plush_normal.png -------------------------------------------------------------------------------- /Project/Assets/Models/godot_plush V2_godot_plush_roughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Models/godot_plush V2_godot_plush_roughness.png -------------------------------------------------------------------------------- /Project/Assets/Textures/texture_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Textures/texture_01.png -------------------------------------------------------------------------------- /Project/Assets/Textures/texture_01.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Textures/texture_01.png.import -------------------------------------------------------------------------------- /Project/Assets/Textures/texture_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Textures/texture_02.png -------------------------------------------------------------------------------- /Project/Assets/Textures/texture_02.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Textures/texture_02.png.import -------------------------------------------------------------------------------- /Project/Assets/Textures/texture_02_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Textures/texture_02_orange.png -------------------------------------------------------------------------------- /Project/Assets/Textures/texture_02_orange.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Textures/texture_02_orange.png.import -------------------------------------------------------------------------------- /Project/Assets/Textures/texture_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Textures/texture_04.png -------------------------------------------------------------------------------- /Project/Assets/Textures/texture_04.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Textures/texture_04.png.import -------------------------------------------------------------------------------- /Project/Assets/Textures/texture_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Textures/texture_05.png -------------------------------------------------------------------------------- /Project/Assets/Textures/texture_05.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Textures/texture_05.png.import -------------------------------------------------------------------------------- /Project/Assets/Textures/texture_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Textures/texture_06.png -------------------------------------------------------------------------------- /Project/Assets/Textures/texture_06.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Textures/texture_06.png.import -------------------------------------------------------------------------------- /Project/Assets/Textures/texture_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Textures/texture_08.png -------------------------------------------------------------------------------- /Project/Assets/Textures/texture_08.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Textures/texture_08.png.import -------------------------------------------------------------------------------- /Project/Assets/Textures/texture_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Textures/texture_09.png -------------------------------------------------------------------------------- /Project/Assets/Textures/texture_09.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Assets/Textures/texture_09.png.import -------------------------------------------------------------------------------- /Project/Enemies/enemy.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Enemies/enemy.gd -------------------------------------------------------------------------------- /Project/Enemies/enemy.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Enemies/enemy.tscn -------------------------------------------------------------------------------- /Project/Global.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Global.gd -------------------------------------------------------------------------------- /Project/Menu/menu.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Menu/menu.gd -------------------------------------------------------------------------------- /Project/Menu/menu.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Menu/menu.tscn -------------------------------------------------------------------------------- /Project/Objects/PickableObject.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Objects/PickableObject.gd -------------------------------------------------------------------------------- /Project/Objects/godot_plush.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Objects/godot_plush.tscn -------------------------------------------------------------------------------- /Project/Player/player.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Player/player.gd -------------------------------------------------------------------------------- /Project/Player/player.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/Player/player.tscn -------------------------------------------------------------------------------- /Project/World/world.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/World/world.gd -------------------------------------------------------------------------------- /Project/World/world.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/World/world.tscn -------------------------------------------------------------------------------- /Project/World/world_day.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/World/world_day.tres -------------------------------------------------------------------------------- /Project/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/icon.svg -------------------------------------------------------------------------------- /Project/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/Project/project.godot -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonfireStudio/godot-advanced-third-person-controller/HEAD/README.md --------------------------------------------------------------------------------