[Godot] [gdscript] third person 3C implementation of thirdpersoncontroller

Complete code https://github.com/CheapMiao/Godot-ThirdPersonController extends KinematicBody # ---Object properties--- # Moving speed export var moveSpeed : float = 10 # Jump speed export var jumpAcceleration : float = 200 # Falling acceleration export var fallAcceleration : float = 9.8 # Linear velocity var linearVelocity : Vector3 = Vecto ...

Added by alex3 on Mon, 24 Jan 2022 14:03:16 +0200