...

/

Designing the Gameplay Interface for Wordz

Designing the Gameplay Interface for Wordz

Focus on designing the scoring interface for playing the Wordz game.

In this lesson, we’ll build the logic to play the game. The gameplay consists of making a number of guesses at the selected word, reviewing the score for that guess, and having another guess. The game ends either when the word has been guessed correctly or when the maximum number of allowed attempts has been made.

Press + to interact

We’ll begin by assuming that we’re at the start of a typical game, about to make our first guess. We’ll also assume that this guess is not completely correct. This allows us to defer decisions about end-of-the-game behavior, which is a good thing because we have enough to decide already.

Designing the scoring interface

The first design decision we must take is what we need to return following a guess at the word. We need to return the following information to the user: ...