ラベル Godot の投稿を表示しています。 すべての投稿を表示
ラベル Godot の投稿を表示しています。 すべての投稿を表示

2022年10月23日日曜日

GodotをUbuntu22.04にインストールする

Godotはクロスプラットフォームのゲーム開発環境です。GodotをUbuntu22.04にインストールするには、以下の手順を実行します。

〇Godotの画面(Ubuntu 22.04)

インストール手順

以下のコマンドを実行します。
sudo mkdir -p /opt/godot

cd /opt/godot

sudo wget https://downloads.tuxfamily.org/godotengine/3.5.1/Godot_v3.5.1-stable_x11.64.zip

sudo unzip Godot_v3.5.1-stable_x11.64.zip

cat << EOF | sudo tee /usr/share/applications/godot.desktop
[Desktop Entry]
Version=1.0
Type=Application
Terminal=false
Exec=/opt/godot/Godot_v3.5.1-stable_x11.64
Name=Godot
Categories=Development;
EOF

関連情報

・Godotのウェブサイト
https://godotengine.org/

2022年4月6日水曜日

GodotをAlmaLinux 8/Rocky Linux 8にインストールする

Godotはクロスプラットフォームのゲーム開発環境です。GodotをAlmaLinux 8/Rocky Linux 8にインストールするには、以下の手順を実行します。

〇Godotの画面(AlmaLinux 8)

〇Godotの画面(Rocky Linux 8)

インストール手順

以下のコマンドを実行します。
sudo mkdir -p /opt/godot

cd /opt/godot

sudo wget https://downloads.tuxfamily.org/godotengine/3.4.3/Godot_v3.4.3-stable_x11.64.zip

sudo unzip Godot_v3.4.3-stable_x11.64.zip

cat << EOF | sudo tee /usr/share/applications/godot.desktop
[Desktop Entry]
Version=1.0
Type=Application
Terminal=false
Exec=/opt/godot/Godot_v3.4.3-stable_x11.64
Name=Godot
Categories=Development;
EOF

関連情報

・Godotのウェブサイト
https://godotengine.org/

2022年3月13日日曜日

GodotをUbuntu20.04/Debian 11(Bullseye)にインストールする

Godotはクロスプラットフォームのゲーム開発環境です。GodotをUbuntu20.04/Debian 11(Bullseye)にインストールするには、以下の手順を実行します。

〇Godotの画面(Ubuntu 20.04)

〇Godotの画面(Debian 11)

インストール手順

以下のコマンドを実行します。
sudo mkdir -p /opt/godot

cd /opt/godot

sudo wget https://downloads.tuxfamily.org/godotengine/3.4.3/Godot_v3.4.3-stable_x11.64.zip

sudo unzip Godot_v3.4.3-stable_x11.64.zip

cat << EOF | sudo tee /usr/share/applications/godot.desktop
[Desktop Entry]
Version=1.0
Type=Application
Terminal=false
Exec=/opt/godot/Godot_v3.4.3-stable_x11.64
Name=Godot
Categories=Development;
EOF

関連情報

・Godotのウェブサイト
https://godotengine.org/