
Wispering Away
This game is from ldjam.com, which is currently unavailable.
You can try viewing the original page on Web Archive (may not load correctly).
You can try viewing the original page on Web Archive (may not load correctly).
You are a _wisp_ lost in a forest. Isolated from your community, you are weak and exposed to the elements. You managed to conjure some of your power and light a fire, but you will not be able to do it again. Your only hope is to...
Keep the fire alive!
If you venture too far from the fire for too long you'll freeze. _When you start shrinking, you must warm yourself up immediately, lest you die!_ You'll be unable to keep the fire alive when dead...
(Note: you must touch trees, fireplace, log, etc. to act on them.)
```
This game was more of an technical challenge for us: we wrote all of the engine ourselves in Rust using only pure WebGL and some mathematics libraries. We 'cheated' a little bit by making text-based UI in HTML/JS, because rendering text in WebGL would have taken too long.
```
Keep the fire alive!
If you venture too far from the fire for too long you'll freeze. _When you start shrinking, you must warm yourself up immediately, lest you die!_ You'll be unable to keep the fire alive when dead...
| Key | Function |
|---|---|
| WASD or ← → ↑ ↓ (or HJKL) | move around |
| E | pick up logs / place them into fire |
| SPACE (repeatedly) | chop down trees |
```
This game was more of an technical challenge for us: we wrote all of the engine ourselves in Rust using only pure WebGL and some mathematics libraries. We 'cheated' a little bit by making text-based UI in HTML/JS, because rendering text in WebGL would have taken too long.
```