Godot Engine on Raspberry Pi
Introduction
Section titled “Introduction”
Godot is a free and open source community-driven 2D and 3D game engine!
You can find the documentation here:
Godot Docs Last stable release of Godot Engine
Install the Engine
Section titled “Install the Engine”Click on Godot download page and install the linux - arm64 version of the engine.
You will need to scroll down to “All downloads” section.
You’ll get an archive file like Godot_v4.5.1-stable_linux.arm64.zip.
Extract the only file held by the archive: in this case is Godot_v4.5.1-stable_linux.arm64.
Rename it as godot4, then move it to /opt/godot directory:
sudo mv Godot_v4.5.1-stable_linux.arm64 /opt/godot/godot4Download the Godot icon from here: godot icon_color.png and move it into /opt/godot/ directory.
You can also use the following commands:
cd ~/Downloadswget https://godotengine.org/assets/press/icon_color.pngsudo mv icon_color.png /opt/godotCreate the desktop entity
Section titled “Create the desktop entity”cd /usr/share/applications
sudo nano godot.applicationThe content of the file is:
[Desktop Entry]Name=Godot EngineGenericName=Libre Game EngineComment=Multi-platform 2D and 3D game engineExec=/opt/godot/godot4Icon=/opt/godot/icon_color.pngTerminal=falseType=ApplicationCategories=Development;IDE;Game;StartupWMClass=GodotSave and update the desktop application database:
update-desktop-databaseYou can now follow Godot Engine tutorials!