rustrogueliketutorial icon indicating copy to clipboard operation
rustrogueliketutorial copied to clipboard

Roguelike Tutorial in Rust - using RLTK

Results 112 rustrogueliketutorial issues
Sort by recently updated
recently updated
newest added

I have tested with `cargo build` and `cargo run`. Thanks!

The confusion item is not deleted when used. used_item = true needs to be added

"Its" for the possessive form of it rather than the contraction It's (it is)

There's some naming inconsistency between `LeftMover` and `LeftWalker` in chapter 2, this change renames all instances of `LeftWalker` to `LeftMover`. Thanks for making this tutorial!

I am wondering if there is an error in chapter 61, which introduces the new movement system. In the **Apply teleports** part, we first check if the depth of the...

All tiles are considered "reachable" by the Dijkstra Map. This results in orphan areas not being culled, and the possibility that completing a map might be impossible due to the...

https://bfnightly.bracketproductions.com/chapter_1.html mentions using `rltk = { version = "0.8.0" }` but also to use "cargo search" which returns `$ cargo search rltk rltk = "0.8.1" # A CP437/ASCII terminal library...

Swap "Y" and "U" keys to match correct diagonal directions. The "Y" key on QWERTY layout is supposed to move top-left direction which is Numpad 7. Meanwhile "U" must act...

Add a note that Python provides a simple http server for local dev.

Hi, I'm new to Rust and gamedev, and unfortunately I've stuck at the very first chapter. Both an independent project following the tutorial and the cloned repo yield the same...