Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/desttinghim/wired
https://github.com/desttinghim/wired
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/desttinghim/wired
- Owner: desttinghim
- Created: 2022-01-15T10:10:21.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-01-03T04:14:19.000Z (about 1 year ago)
- Last Synced: 2024-08-04T04:06:35.519Z (6 months ago)
- Language: Zig
- Size: 608 KB
- Stars: 16
- Watchers: 4
- Forks: 1
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.md
Awesome Lists containing this project
- awesome-zig - wired
README
# Wired
A puzzle platformer with wires.
## Controls
- Left/Right: Move left and right
- Up/Down: Look at items above and below
- X: Jump
- Z: Select## Dependencies
- `zig` to compile the code
- `wasm-opt` to optimize the generated wasm file for release. It is a part of `binaryen`
- `wasm4` to run the generated cart## Building
``` shellsession
git clone --recursive
zig build # makes a debug build
w4 run zig-out/lib/cart.wasm
zig build opt -Drelease-small # optimize cart size for release
```