Congrats, You're a Game Dev Now! 🎉 Your First 3D Platformer Tutorial in Godot 4.3
This is a Godot 4.3 tutorial for absolute beginners. I will teach you how to set up a project, add a character, create a smooth camera, and use a gridmap. Let me know in the comments below what tutorials you'd like to see next.
Example code for smooth camera:
var camera_position = $Camera_Controller.position
camera_position.x = lerp(camera_position.x, position.x, 0.05)
camera_position.z = lerp(camera_position.z, position.z, 0.05)
camera_position.y = lerp(camera_position.y, position.y, 0.05)
$Camera_Controller.position = camera_position
00:00 - Intro
00:14 - Installation & project setup
01:43 - Player & platform
18:19 - Smooth Camera
26:47 - Grid System
32:32 - Creating blocks in Blender
37:42 - Importing Blender blocks
40:35 - Outro
Become a Chappie get access to perks:
/ @chapc_yt
Join us on discord: / discord
#gotot #gamedevelopment #3dgames