mirror of
https://github.com/IntQuant/noita_entangled_worlds.git
synced 2025-10-19 07:03:16 +00:00
Added contributing.md
This commit is contained in:
parent
6777fcbba0
commit
45bda37495
1 changed files with 20 additions and 0 deletions
20
contributing.md
Normal file
20
contributing.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# Building Noita Proxy
|
||||
|
||||
Rust toolchain can be acquired from https://rustup.rs
|
||||
|
||||
Another option is to use your distributions rust toolchain, but it might be too old. Proxy is currently built with rustc 1.77.1.
|
||||
|
||||
Next, run `cargo build` (or `cargo build --release` for a faster release version) in noita-proxy directory.
|
||||
|
||||
You also might need to add steam dynamic library. The easiest way to get one is from the latest mod release.
|
||||
|
||||
# Running several instances locally
|
||||
|
||||
Address 127.0.0.1:21251 is used to communicate between proxy and local Noita instance by default.
|
||||
However, because generally ports can't be used by several apps at once, only one proxy instance can use the default address:port pair.
|
||||
|
||||
This address can be changed using enviromental variable NP_NOITA_ADDR. Example (on linux):
|
||||
```bash
|
||||
NP_DISABLE_STEAM=1 NP_NOITA_ADDR=127.0.0.1:21252 cargo run --release # To start the proxy
|
||||
NP_NOITA_ADDR=127.0.0.1:21252 wine noita.exe # To start Noita
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue