This Video Could Make You A Game Programmer

Channel:
Subscribers:
1,810
Published on ● Video Link: https://www.youtube.com/watch?v=dmKKBYzdOt4



Duration: 4:17
1,218 views
64


If you like video games, then you may have always wanted to make them. But maybe you don't know where to start, or you don't have the resources to download a big Game Engine. In this video, I aim to provide everything you would need to know to get started with programming games and start your Gam Dev journey. We use Godot in this tutorial, a lightweight game editor that takes minimal system resources.

--CODE--
extends Sprite

func _process(delta):
if Input.is_action_pressed("ui_right"):
position.x += 5
if Input.is_action_pressed("ui_left"):
position.x -= 5
if Input.is_action_pressed("ui_down"):
position.y += 5
if Input.is_action_pressed("ui_up"):
position.y -= 5
--END CODE--

Timestamps
0:00 Downloading Godot
0:45 Set up the Sprite
1:15 Code the Sprite
3:07 Finish the Code
3:55 Your Future