|
@@ -11,11 +11,8 @@ You will also need a Windows PC to build your projects for Linux using Game Stud
|
|
|
You need the following packages:
|
|
You need the following packages:
|
|
|
|
|
|
|
|
* [FreeType](#freetype)
|
|
* [FreeType](#freetype)
|
|
|
-
|
|
|
|
|
* [OpenAL](#openal)
|
|
* [OpenAL](#openal)
|
|
|
-
|
|
|
|
|
* [SDL2](#sdl2)
|
|
* [SDL2](#sdl2)
|
|
|
-
|
|
|
|
|
* either Mono or .NET Core (it's OK to install both)
|
|
* either Mono or .NET Core (it's OK to install both)
|
|
|
|
|
|
|
|
## FreeType
|
|
## FreeType
|
|
@@ -34,8 +31,6 @@ sudo apt-get install libfreetype6-dev
|
|
|
sudo dnf install freetype-devel
|
|
sudo dnf install freetype-devel
|
|
|
```
|
|
```
|
|
|
|
|
|
|
|
----
|
|
|
|
|
-
|
|
|
|
|
## OpenAL
|
|
## OpenAL
|
|
|
|
|
|
|
|
To play sounds and music, we use the [OpenAL](https://www.openal.org/) library. It can be installed via:
|
|
To play sounds and music, we use the [OpenAL](https://www.openal.org/) library. It can be installed via:
|
|
@@ -52,8 +47,6 @@ sudo apt-get install libopenal-dev
|
|
|
sudo dnf install openal-soft-devel
|
|
sudo dnf install openal-soft-devel
|
|
|
```
|
|
```
|
|
|
|
|
|
|
|
----
|
|
|
|
|
-
|
|
|
|
|
## SDL2
|
|
## SDL2
|
|
|
|
|
|
|
|
To run games on Linux, we use the [SDL2](https://www.libsdl.org/) library which provides the ability to create windows, handle mouse, keyboard and joystick events. The minimum required version is 2.0.4 and can be installed via:
|
|
To run games on Linux, we use the [SDL2](https://www.libsdl.org/) library which provides the ability to create windows, handle mouse, keyboard and joystick events. The minimum required version is 2.0.4 and can be installed via:
|
|
@@ -70,8 +63,6 @@ sudo apt-get install libsdl2-dev
|
|
|
sudo dnf install SDL2-devel
|
|
sudo dnf install SDL2-devel
|
|
|
```
|
|
```
|
|
|
|
|
|
|
|
----
|
|
|
|
|
-
|
|
|
|
|
## .NET Core
|
|
## .NET Core
|
|
|
|
|
|
|
|
For information about how to install .NET Core, see the [.NET Core instructions for Linux](https://docs.microsoft.com/en-us/dotnet/core/linux-prerequisites).
|
|
For information about how to install .NET Core, see the [.NET Core instructions for Linux](https://docs.microsoft.com/en-us/dotnet/core/linux-prerequisites).
|
|
@@ -84,4 +75,4 @@ dotnet --info
|
|
|
|
|
|
|
|
## See also
|
|
## See also
|
|
|
|
|
|
|
|
-* * [Create a Linux game](create-a-linux-game.md)
|
|
|
|
|
|
|
+* [Create a Linux game](create-a-linux-game.md)
|