amethyst / amethyst/rustrogueliketutorial
Mistake in chapter 50
Đang mở
- Ngôn ngữ chính
- Rust
- Star
- 970
- Fork
- 166
- Chỉ số merge pull request
- Không có pull request nào được merge trong 30 ngày
Mô tả
In the gui.rs fix section the code is:
`let health = format!(" HP: {} / {} ", stats.hp, stats.max_hp);`
But that doesn't work anymore at that point. It should be:
`let health = format!(" HP: {} / {} ", stats.hit_points.current, stats.hit_points.max);`
As seen in the finished code.
Hướng dẫn đóng góp
Chưa lập chỉ mục được hướng dẫn đóng góp cho kho mã nguồn này
Đánh giá
Issue này chưa được đánh giá.