├── 3D Movement and Animations ├── codes │ ├── 3rd-person_movement.gd │ └── camera_script.gd ├── default_env.tres ├── icon.png ├── icon.png.import ├── models │ ├── Material_001.material │ ├── Robot_01_mat.material │ ├── atomic-robot.glb │ ├── atomic-robot.glb.import │ ├── testplane.glb │ └── testplane.glb.import ├── project.godot ├── scenes │ ├── KinematicBody.tscn │ └── Spatial.tscn └── screenshot │ └── Screenshot from 2022-01-03 14-45-02.png ├── LICENSE └── README.md /3D Movement and Animations/codes/3rd-person_movement.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warrpy/3D-Movement-and-Animations/HEAD/3D Movement and Animations/codes/3rd-person_movement.gd -------------------------------------------------------------------------------- /3D Movement and Animations/codes/camera_script.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warrpy/3D-Movement-and-Animations/HEAD/3D Movement and Animations/codes/camera_script.gd -------------------------------------------------------------------------------- /3D Movement and Animations/default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warrpy/3D-Movement-and-Animations/HEAD/3D Movement and Animations/default_env.tres -------------------------------------------------------------------------------- /3D Movement and Animations/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warrpy/3D-Movement-and-Animations/HEAD/3D Movement and Animations/icon.png -------------------------------------------------------------------------------- /3D Movement and Animations/icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warrpy/3D-Movement-and-Animations/HEAD/3D Movement and Animations/icon.png.import -------------------------------------------------------------------------------- /3D Movement and Animations/models/Material_001.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warrpy/3D-Movement-and-Animations/HEAD/3D Movement and Animations/models/Material_001.material -------------------------------------------------------------------------------- /3D Movement and Animations/models/Robot_01_mat.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warrpy/3D-Movement-and-Animations/HEAD/3D Movement and Animations/models/Robot_01_mat.material -------------------------------------------------------------------------------- /3D Movement and Animations/models/atomic-robot.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warrpy/3D-Movement-and-Animations/HEAD/3D Movement and Animations/models/atomic-robot.glb -------------------------------------------------------------------------------- /3D Movement and Animations/models/atomic-robot.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warrpy/3D-Movement-and-Animations/HEAD/3D Movement and Animations/models/atomic-robot.glb.import -------------------------------------------------------------------------------- /3D Movement and Animations/models/testplane.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warrpy/3D-Movement-and-Animations/HEAD/3D Movement and Animations/models/testplane.glb -------------------------------------------------------------------------------- /3D Movement and Animations/models/testplane.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warrpy/3D-Movement-and-Animations/HEAD/3D Movement and Animations/models/testplane.glb.import -------------------------------------------------------------------------------- /3D Movement and Animations/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warrpy/3D-Movement-and-Animations/HEAD/3D Movement and Animations/project.godot -------------------------------------------------------------------------------- /3D Movement and Animations/scenes/KinematicBody.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warrpy/3D-Movement-and-Animations/HEAD/3D Movement and Animations/scenes/KinematicBody.tscn -------------------------------------------------------------------------------- /3D Movement and Animations/scenes/Spatial.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warrpy/3D-Movement-and-Animations/HEAD/3D Movement and Animations/scenes/Spatial.tscn -------------------------------------------------------------------------------- /3D Movement and Animations/screenshot/Screenshot from 2022-01-03 14-45-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warrpy/3D-Movement-and-Animations/HEAD/3D Movement and Animations/screenshot/Screenshot from 2022-01-03 14-45-02.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warrpy/3D-Movement-and-Animations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warrpy/3D-Movement-and-Animations/HEAD/README.md --------------------------------------------------------------------------------