colonize
A Dwarf Fortress/Rimworld-like game written in Rust
File Explorer
Download Latest Version (.zip)- config
- superlinter.yml
- forward.frag
- forward.vert
- forward_wasm.frag
- forward_wasm.vert
- lib.rs
- terrain.rs
- Cargo.toml
- lib.rs
- terrain.rs
- util.rs
- Cargo.toml
- lib.rs
- Cargo.toml
- forward_pipeline.rs
- lights_node.rs
- mod.rs
- y_level_node.rs
- entity.rs
- lib.rs
- light.rs
- material.rs
- y_level.rs
- Cargo.toml
- android-chrome-192x192.png
- android-chrome-512x512.png
- apple-touch-icon.png
- favicon-16x16.png
- favicon-32x32.png
- favicon.ico
- index.html
- normalize.css
- site.webmanifest
- camera.rs
- dwarf.rs
- main.rs
- terrain.rs
- package.json
- style.css
- tailwind.config.js
- yarn.lock
- .clog.toml
- .gitignore
- .travis.yml
- Cargo.lock
- Cargo.toml
- CHANGELOG.md
- CONTRIBUTING.md
- CONTRIBUTORS.md
- LICENSE
- Makefile
- README.md
# Installation Guide
git clone https://github.com/indiv0/colonize
Downloads the entire project code from GitHub to your computer.
cd colonize
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Rust (rustup) Rust is required to use cargo.
cargo install wasm-bindgen-cli
Builds and installs the package published on crates.io β no need to clone the repo yourself.
Pulled directly from this repo's README.
3. Node.js
Easyyarn install
Downloads and installs the libraries listed in package.json.
Pulled directly from this repo's README.
4. Rust
Medium- Git Needed to download the project code from GitHub.
- Rust (rustup) Installing via rustup also installs cargo.
cargo run --release
Builds and then immediately runs the program.
cargo install wasm-bindgen-cli
Builds and installs the package published on crates.io β no need to clone the repo yourself.
cargo build --release --target wasm32-unknown-unknown --no-default-features --features wasm
Compiles the Rust project.
Pulled directly from this repo's README.
5. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make styles
Compiles the code based on the generated build configuration to produce an executable.
make serve
Compiles the code based on the generated build configuration to produce an executable.
Pulled directly from this repo's README.
