Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/paullouisageneau/convergence

Multiplayer sandbox game
https://github.com/paullouisageneau/convergence

cpp datachannel emscripten game libdatachannel multiplayer opengl p2p peer-to-peer wasm webassembly webgl webrtc webrtc-datachannel websocket

Last synced: 2 months ago
JSON representation

Multiplayer sandbox game

Awesome Lists containing this project

README

        

# Convergence - Multiplayer sandbox game

Convergence is a multiplayer game for browsers and native platforms.

## Building

### Native executable

```bash
$ cmake -B build-native
$ cd build-native
$ make -j2
```

### Browser Wasm executable

Use Emscripten to output a WebAssembly build for browsers. It requires that you have [emsdk](https://github.com/emscripten-core/emsdk) installed and activated in your environment.

```bash
$ cmake -B build-emscripten -DCMAKE_TOOLCHAIN_FILE=$EMSDK/upstream/emscripten/cmake/Modules/Platform/Emscripten.cmake
$ cd build-emscripten
$ make -j2
```