Gameplay programmers write game code, but so do game designers and developers. Where is the line drawn? What skills do gameplay programmers use that game designers or developers do not?
Answer
"Developer" is sometimes used as another term for "programmer," where it helps emphasize that creating software involves more than writing code.
When framed as a "game developer" it can also refer generally to any person working on creating a game. For example, if I was out for lunch with a programmer, 3D artist, and sound designer from my team, and the server asked what we did, we might reply "we're game developers."
"Game designer" is another specialty yet, and the definition can be a little fuzzy even to some experienced gamedevs! The most accessible introduction to the role of a game designer I've seen is Liz England's "The Door Problem." Definitely read the whole thing, but here's a quick excerpt to get the flavour:
Premise: You are making a game.
- Are there doors in your game?
- Can the player open them?
- Can the player open every door in the game? Or are some doors for decoration?
How does the player know the difference?
...
Can doors be locked and unlocked?
- What tells a player a door is locked and will open, as opposed to a door that they will never open?
- Does a player know how to unlock a door?
Do they need a key? To hack a console? To solve a puzzle? To wait until a story moment passes?
...
What happens if there are two players? Does it only lock after both players pass through the door?
What if the level is REALLY BIG and can’t all exist at the same time? If one player stays behind, the floor might disappear from under them. What do you do?
...
It’s a pretty classic design problem. SOMEONE has to solve The Door Problem, and that someone is a designer.
Fundamentally, game designers are problem solvers - figuring out how each mechanic or beat in the game should work to deliver the game's target player experience, according to the team's creative direction.
Common problems a designer may be responsible for solving include:
- How does the player move / navigate / use abilities? (3Cs design)
- How does the player level up, upgrade, or grow? (progression or economy design)
- How do the NPCs and enemies behave? (AI design)
- How do we tune the abilities/items/drops to keep the game fair, interesting, and well-paced? (Balancing)
- What can players buy in the game? (monetization design)
All of these questions have many valid answers that can work. The designer needs to pick the answers that best suit the particular game the team is building. As Katie Salen and Eric Zimmermann put it:
The game designer only indirectly designs the player's experience, by directly designing the rules
This is sometimes misconstrued to mean the game designer is the "idea person" who comes up with or dictates everything that will be in the game. In my experience, I've never seen such a role and I don't believe it exists (outside of 1-person studios). Rather, designers work in collaboration with all parts of the team to gather ideas, needs, constraints, and options, and refine them into proposals and documented plans that are clear to the whole team. That means they often need to be translators, acting as a bridge between programming and art departments, or between creative direction and the realities of production, synthesizing solutions that wouldn't be visible from within any one silo.
Some designers are also developers/programmers who write native code, some write scripts and flowchart graphs, and some do no programming at all — working in concert with specialized programmers to realize designs. Likewise, some programmers/developers also excel at design, collaborating in the planning of rules and mechanics or filling in the gaps in a high level direction, while others prefer to implement a fully detailed spec.
I've given some presentations about how I think about my role as a designer, which you might find useful for some more details. I'd also recommend checking out the Extra Credits video on the topic, along with the rest of their careers playlist, for an entertaining introduction to many of the common roles in game development teams.
There are also other design-related specialties like level designers, narrative designers, mission or quest designers, who I haven't really covered here. In big teams, the delineations between specialties can be very granular. In smaller teams, these roles often overlap, and you may find a single developer who works as a programmer and game designer and level designer and level artist all at once. So don't take these categories as prescriptive limits, just signposts to the variety of fascinating problems there are to solve in games! :)
No comments:
Post a Comment