Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialMatthew Rodgers
91 PointsCan anyone help me out with making a Rouge like game
How do I make a rouge like game
1 Answer
Nick Pettit
Treehouse TeacherHi Matthew,
That's a pretty big question, so while I can't give you the step-by-step, I can give you some idea of how you might approach this type of project.
A Rogue-like game typically means the player only has 1 "life". If they hit a failure state in the game, the game resets to the state that it was in at the beginning. In fact, the game in the course "How to Make a Video Game" could be considered Rogue-like, because the game state completely resets when the player character is caught by the bird. This is done by reloading the currently loaded Unity scene. Hopefully that gives you a starting point!