update readme.md

This commit is contained in:
Rokas Puzonas 2023-08-14 23:08:53 +03:00
parent f6780a1a29
commit f4a7936fb4
2 changed files with 23 additions and 1 deletions

View File

@ -1,9 +1,17 @@
# Boids playground # Boids playground
[](./screenshot.png)
A project for playing around with boid simulation paramaters live. This project ain't perfect, there are still
lots of TODO's. But I am content with leaving in this kind of state, it performs pretty well and can compile
to WASM.
WEB version: https://rpuzonas.com/boid-playground
Desktop version: https://git.rpuzonas.com/rpuzonas/boids-playground/releases
## Getting Started ## Getting Started
### Installing Dependencies ### Installing Dependencies
Before building the project, you will need to install all relevant dependencies Before building the project, you will need to install all relevant dependencies
for your platform so that the project has access to all the tools required, and for your platform so that the project has access to all the tools required, and
raylib can compile and link correctly. You can find intructions for raylib can compile and link correctly. You can find intructions for
@ -15,13 +23,27 @@ Once you have cloned this repository and installed dependencies, building the
project is as simple as running these two commands in its root directory: project is as simple as running these two commands in its root directory:
#### macOS & Linux #### macOS & Linux
Desktop:
```console ```console
$ make setup $ make setup
$ make $ make
``` ```
Web:
```console
$ make setup PLATFORM=web
$ make PLATFORM=web
```
#### Windows #### Windows
Desktop:
```console ```console
> mingw32-make setup > mingw32-make setup
> mingw32-make > mingw32-make
``` ```
Web:
```console
> mingw32-make setup PLATFORM=web
> mingw32-make PLATFORM=web
```

BIN
screenshot.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB