Skip to content

Commit 3aa144d

Browse files
authored
Update README.md
1 parent 6e241a7 commit 3aa144d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# A simple multiplayer game using TCP and UDP.
22

33
## Compiling the client
4-
You have to enable unsafe code in your unity project by going to **File > Build Settings > Player > Other settings > Allow 'unsafe' code**
5-
For the movement of the players to work properly, go to **File > Build Settings > Time** then change **Fixed Timestep** and **Maximum Particle Timestep** to **0.033333**
6-
After that, you should be able to build the project without any errors
4+
- You have to enable unsafe code in your unity project by going to **`File > Build Settings > Player > Other settings > Allow 'unsafe' code`**
5+
- For the movement of the players to work properly, go to **`File > Build Settings > Time`** then change **`Fixed Timestep`** and **`Maximum Particle Timestep`** to **`0.033333`**
6+
- After that, you should be able to build the project without any errors
77

88
## Compiling the server
99
- You will have to build and lunch the server inside a linux machine. If you do not have a linux machine, you can use a virtual machine or download and install a linux machine - from the Microsoft Store. [Ubuntu](https://www.microsoft.com/en-us/p/ubuntu/9nblggh4msv6) is recommended but you can use a different distro if you want
1010
- After you are done setting up your linux machine, create a directory and copy the server files in that directory
1111
- Open your terminal to the directory you created or use `cd <your_directory>`
1212
- To compile the server, you will need to have `make` installed. You can check if you have it installed by typing `make` and you should not get any error. Else you have to type `sudo apt install make` (for debian-based distros) or "install package" command for your distro
13-
- After you made sure that `make` is installed, type the following command: `make clean && make` (note: you do not have to use `make clean` if you compile it for the firt time)
13+
- After you made sure that `make` is installed, type the following command: `make clean && make` (note: you do not have to use `make clean` if you compile it for the first time)
1414
- After you are done compiling it, you can run it by typing in your terminal `./server` and pressing enter
1515

1616
## Known issues

0 commit comments

Comments
 (0)