├── .gitattributes ├── .gitignore ├── Assets ├── Animations │ ├── 00_T-Pose.res │ ├── 01_Idle.res │ ├── 02_Run.res │ ├── 03_Walk.res │ └── 04_Air.res ├── Models │ └── Characters │ │ ├── Object_Character.glb │ │ └── Object_Character.glb.import └── Textures │ ├── Black.png │ ├── Black.png.import │ ├── Green.png │ ├── Green.png.import │ ├── Orange.png │ ├── Orange.png.import │ ├── Purple.png │ ├── Purple.png.import │ ├── Red.png │ ├── Red.png.import │ ├── Sky.png │ ├── Sky.png.import │ ├── White.png │ └── White.png.import ├── LICENSE.txt ├── README.txt ├── Scenes ├── Characters │ └── player.tscn └── Levels │ └── prototype.tscn ├── Scripts └── Characters │ ├── Player.gd │ └── SpringArmPivot.gd ├── icon.svg ├── icon.svg.import └── project.godot /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Godot 4+ specific ignores 2 | .godot/ 3 | -------------------------------------------------------------------------------- /Assets/Animations/00_T-Pose.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/Assets/Animations/00_T-Pose.res -------------------------------------------------------------------------------- /Assets/Animations/01_Idle.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/Assets/Animations/01_Idle.res -------------------------------------------------------------------------------- /Assets/Animations/02_Run.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/Assets/Animations/02_Run.res -------------------------------------------------------------------------------- /Assets/Animations/03_Walk.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/Assets/Animations/03_Walk.res -------------------------------------------------------------------------------- /Assets/Animations/04_Air.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/Assets/Animations/04_Air.res -------------------------------------------------------------------------------- /Assets/Models/Characters/Object_Character.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/Assets/Models/Characters/Object_Character.glb -------------------------------------------------------------------------------- /Assets/Models/Characters/Object_Character.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/Assets/Models/Characters/Object_Character.glb.import -------------------------------------------------------------------------------- /Assets/Textures/Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/Assets/Textures/Black.png -------------------------------------------------------------------------------- /Assets/Textures/Black.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/Assets/Textures/Black.png.import -------------------------------------------------------------------------------- /Assets/Textures/Green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/Assets/Textures/Green.png -------------------------------------------------------------------------------- /Assets/Textures/Green.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/Assets/Textures/Green.png.import -------------------------------------------------------------------------------- /Assets/Textures/Orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/Assets/Textures/Orange.png -------------------------------------------------------------------------------- /Assets/Textures/Orange.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/Assets/Textures/Orange.png.import -------------------------------------------------------------------------------- /Assets/Textures/Purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/Assets/Textures/Purple.png -------------------------------------------------------------------------------- /Assets/Textures/Purple.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/Assets/Textures/Purple.png.import -------------------------------------------------------------------------------- /Assets/Textures/Red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/Assets/Textures/Red.png -------------------------------------------------------------------------------- /Assets/Textures/Red.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/Assets/Textures/Red.png.import -------------------------------------------------------------------------------- /Assets/Textures/Sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/Assets/Textures/Sky.png -------------------------------------------------------------------------------- /Assets/Textures/Sky.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/Assets/Textures/Sky.png.import -------------------------------------------------------------------------------- /Assets/Textures/White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/Assets/Textures/White.png -------------------------------------------------------------------------------- /Assets/Textures/White.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/Assets/Textures/White.png.import -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/README.txt -------------------------------------------------------------------------------- /Scenes/Characters/player.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/Scenes/Characters/player.tscn -------------------------------------------------------------------------------- /Scenes/Levels/prototype.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/Scenes/Levels/prototype.tscn -------------------------------------------------------------------------------- /Scripts/Characters/Player.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/Scripts/Characters/Player.gd -------------------------------------------------------------------------------- /Scripts/Characters/SpringArmPivot.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/Scripts/Characters/SpringArmPivot.gd -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/icon.svg -------------------------------------------------------------------------------- /icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/icon.svg.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaffleAWT/Godot-4.3-Third-Person-Controller/HEAD/project.godot --------------------------------------------------------------------------------