GAME DEVELOPMENT ENGLISH

Inglês para Desenvolvimento de Jogos: Vocabulário Essencial

Este guia cobre o vocabulário profissional em inglês que designers de jogos, programadores, artistas técnicos, produtores e engenheiros de QA usam todos os dias — desde core loops e engines de física até battle passes e post-mortems.

48 terms · 6 topics

Design de jogos

"core loop"

The fundamental cycle of actions a player repeats throughout a game, forming the foundation of gameplay engagement

"The team spent three months refining the core loop until every action felt rewarding and kept players coming back for more."

Design de jogos

"game feel"

The tactile and responsive quality of player input — the sense of weight, momentum, and feedback that makes controls feel satisfying

"The director insisted on polishing game feel before adding new features, noting that even the best mechanics fail if jumping feels unresponsive."

Design de jogos

"emergent gameplay"

Unscripted interactions and player behaviours that arise organically from the combination of game systems, often producing experiences the designers did not explicitly plan

"Players discovered that combining fire and ice spells created a steam cloud — an example of emergent gameplay the dev team later embraced and expanded."

Design de jogos

"gating mechanism"

A design element that restricts player access to content, areas, or abilities until specific conditions are met, used to pace progression

"The designer introduced a skill-check gating mechanism so that new zones unlocked only after players demonstrated mastery of the previous area's core mechanics."

Design de jogos

"difficulty curve"

The gradual escalation of challenge over the course of a game, ideally matched to the player's growing skill level

"Playtesting revealed a sharp spike in the difficulty curve at level 7 that was causing new players to quit before reaching the game's best content."

Design de jogos

"player agency"

The degree to which a player's choices and actions have meaningful impact on the game world and narrative

"The narrative director argued that player agency was the studio's core value — every major story beat had to branch based on genuine decisions."

Design de jogos

"metagame"

The layer of strategy, optimisation, and community knowledge that develops around a game beyond its explicit rules, including min-maxing builds and understanding the current competitive meta

"The balance team monitored community forums weekly to track shifts in the metagame and ensure no single strategy became dominant."

Design de jogos

"onboarding"

The process of teaching new players the rules, controls, and systems of a game in a way that feels natural and integrated rather than didactic

"User research showed that players who skipped the onboarding tutorial were three times more likely to uninstall the game within the first hour."

Engines e ferramentas

"scene graph"

A hierarchical data structure that organises all objects in a game scene, defining parent-child relationships and spatial transformations

"The programmer restructured the scene graph to reduce draw calls, cutting render time by 40% on mid-range mobile hardware."

Engines e ferramentas

"physics engine"

The subsystem responsible for simulating realistic movement, collision detection, gravity, and rigid-body dynamics within a game

"After switching to a new physics engine, the team had to recalibrate every character's jump arc and collision box from scratch."

Engines e ferramentas

"asset pipeline"

The automated workflow that imports, processes, converts, and packages raw art and audio files into the formats a game engine can use at runtime

"Implementing a faster asset pipeline reduced daily build times from 45 minutes to 8, significantly accelerating the team's iteration cycle."

Engines e ferramentas

"hot reload"

A development feature that allows changes to code or assets to be applied to a running game session without requiring a full restart

"Hot reload support in the engine meant that artists could tweak material properties and see the results instantly inside the live game environment."

Engines e ferramentas

"entity-component system"

An architectural pattern where game objects are compositions of reusable components rather than deep class hierarchies, improving flexibility and performance

"Migrating to an entity-component system allowed the team to add new enemy behaviours by mixing existing components without touching the core codebase."

Engines e ferramentas

"build configuration"

A set of compiler settings, flags, and parameters that define how a game project is compiled, typically differentiated between debug and release builds

"The QA engineer always tested on the release build configuration because the debug build masked performance issues that only appeared in shipping code."

Engines e ferramentas

"scripting layer"

A higher-level programming environment — often Lua, Python, or a visual scripting system — built on top of the engine's core C++ codebase to allow faster iteration

"Designers used the scripting layer to prototype new abilities in hours rather than requesting engine-level changes from programmers."

Engines e ferramentas

"version control integration"

The connection between a game engine's project workflow and a source control system such as Git or Perforce, enabling teams to collaborate on large binary assets

"Setting up proper version control integration with Perforce prevented the asset conflicts that had been costing the team hours of rework every week."

Gráficos e renderização

"draw call"

A single command from the CPU to the GPU instructing it to render a specific mesh with a specific material; minimising draw calls is a key performance optimisation

"The graphics programmer batched hundreds of foliage objects into a single draw call, eliminating the CPU bottleneck that was capping the frame rate."

Gráficos e renderização

"physically based rendering"

A rendering approach that simulates the physical behaviour of light and materials to produce visually consistent and realistic results under any lighting condition

"Switching to physically based rendering meant the team only needed to author materials once and they would look correct under sunset, overcast, and interior lighting."

Gráficos e renderização

"level of detail"

A technique that uses simplified geometry for objects that are far from the camera, reducing rendering cost without noticeable visual quality loss

"The artist created four level of detail meshes for each tree — the highest-detail version used only when the camera was within ten metres."

Gráficos e renderização

"ambient occlusion"

A shading technique that approximates how much ambient light reaches a surface based on surrounding geometry, adding soft shadowing in creases and corners

"Adding screen-space ambient occlusion made the environments feel grounded and three-dimensional without the performance cost of full ray-traced shadows."

Gráficos e renderização

"texture atlas"

A single large texture image that combines multiple smaller textures, reducing the number of texture-bind operations during rendering

"Packing all UI icons into a single texture atlas cut the menu rendering time in half and simplified the batching of sprite draw calls."

Gráficos e renderização

"render pipeline"

The sequence of stages the graphics hardware and software go through to transform 3D scene data into the final 2D pixels displayed on screen

"The studio built a custom render pipeline to support its stylised cel-shading look, which was not achievable with the engine's default rendering path."

Gráficos e renderização

"shader"

A small programme that runs on the GPU to determine the colour and appearance of pixels or vertices, controlling effects like lighting, reflections, and deformation

"The technical artist wrote a custom shader that made water surfaces ripple and refract light realistically without taxing the game's mobile performance budget."

Gráficos e renderização

"frame budget"

The total amount of time available per frame — typically 16.6ms for 60fps — that must be shared across all rendering and game logic work

"The performance review revealed that particle effects alone were consuming 6ms of the 16.6ms frame budget, leaving insufficient headroom for AI and physics."

Programação de jogos

"game loop"

The central infinite loop that drives all game execution — reading input, updating game state, and rendering each frame in sequence

"A bug in the game loop was causing the update step to run before input was processed, introducing a one-frame delay in player controls."

Programação de jogos

"delta time"

The elapsed time between the current frame and the previous one, used to make movement and physics frame-rate independent

"After multiplying all movement velocities by delta time, the game ran at the same speed regardless of whether the player had a 60fps or 120fps display."

Programação de jogos

"object pooling"

A performance optimisation that pre-allocates a fixed set of reusable game objects rather than allocating and destroying them dynamically at runtime

"Implementing object pooling for bullets eliminated the garbage collection spikes that were causing frame-rate hitches during heavy combat sequences."

Programação de jogos

"state machine"

A programming pattern that models behaviour as a set of discrete states with defined transitions between them, widely used for AI, animation, and UI logic

"The character controller used a hierarchical state machine with states for idle, walking, running, jumping, and falling, each with its own animation and movement rules."

Programação de jogos

"serialisation"

The process of converting game data — objects, levels, save files — into a storable or transmittable format and reconstructing it later

"The save system relied on binary serialisation for speed, but the team added JSON serialisation as a debugging option so designers could inspect save files."

Programação de jogos

"profiler"

A development tool that measures the execution time and memory usage of specific code sections to identify performance bottlenecks

"Running the profiler during a stress test revealed that pathfinding was consuming 80% of AI compute time, pointing directly to the optimisation target."

Programação de jogos

"garbage collection"

An automatic memory management process that reclaims memory occupied by objects no longer in use; in games, unexpected GC pauses can cause frame-rate hitches

"The lead programmer established a strict no-allocation-in-hot-paths rule to prevent garbage collection from interrupting gameplay at critical moments."

Programação de jogos

"multithreading"

The technique of distributing game work across multiple CPU cores simultaneously to improve performance, commonly used for physics, AI, and asset streaming

"Introducing multithreading for AI calculations allowed the game to simulate 500 active NPCs without impacting the main render thread's frame rate."

Produção e QA

"gold master"

The final approved build of a game that is ready for manufacturing and distribution, representing the definitive shipping version

"The studio celebrated reaching gold master after six months of crunch, knowing the disc would go to manufacturing the following morning."

Produção e QA

"vertical slice"

A polished, feature-complete demonstration of a small section of gameplay used to validate design vision, pitch to publishers, or assess feasibility

"The team built a vertical slice of the first dungeon to show the publisher that the combat, art direction, and pacing all worked together cohesively."

Produção e QA

"regression testing"

Re-running previously passed test cases after code changes to ensure that new additions have not broken existing functionality

"Automated regression testing caught a movement bug introduced by a physics update that manual testers had missed during the rushed sprint."

Produção e QA

"repro steps"

The exact sequence of actions required to reliably trigger a bug, written into a bug report so developers can reproduce and fix it

"The QA engineer wrote clear repro steps for the crash — load the forest level, equip the bow, shoot an arrow at the boulder near the waterfall — and the programmer fixed it within an hour."

Produção e QA

"alpha build"

An early, feature-complete but unpolished game build distributed internally or to selected testers; all major features are present but the game is not yet stable enough for public testing

"The alpha build revealed that the crafting system was too complex for casual players, prompting a major redesign before entering beta."

Produção e QA

"milestone"

A scheduled checkpoint in the development calendar at which specific features or deliverables must be complete, often tied to publisher payments or greenlight reviews

"Failing to hit the beta milestone meant the publisher delayed the marketing campaign and withheld the next tranche of development funding."

Produção e QA

"crunch"

Extended periods of intensive overtime work — often mandatory — to meet production deadlines, a widely criticised practice in the game industry

"The studio publicly committed to eliminating crunch after the release, acknowledging that the three-month death-march had caused burnout across the entire team."

Produção e QA

"post-mortem"

A retrospective analysis conducted after a project ships, documenting what went well, what went wrong, and lessons learned for future productions

"The post-mortem was published on the studio's blog and credited transparent communication and early scope cuts as the primary reasons the project shipped on time."

Monetização e Live Ops

"battle pass"

A seasonal monetisation system in which players purchase access to a tiered reward track that unlocks cosmetic items and other bonuses through gameplay progression

"Introducing a battle pass increased the game's monthly revenue by 60% while keeping the core experience free-to-play and accessible to all players."

Monetização e Live Ops

"live service"

A game that continues to receive regular content updates, events, and patches after launch, maintaining an ongoing relationship with its player base

"Transitioning from a traditional boxed release to a live service model required doubling the team size to sustain a continuous cadence of seasonal updates."

Monetização e Live Ops

"daily active users"

The number of unique players who engage with a game on a given day, a key metric for measuring the health of a live game's player base

"The new event mode doubled daily active users in the first week but also caused server capacity issues that temporarily degraded the experience."

Monetização e Live Ops

"retention rate"

The percentage of players who return to a game after their initial session, typically measured at day 1, day 7, and day 30 milestones

"A day-7 retention rate below 20% signalled to the publisher that the early game loop needed to be redesigned before the title could justify further investment."

Monetização e Live Ops

"whale"

A small segment of players who spend disproportionately large amounts of money on in-game purchases, often accounting for the majority of a free-to-play game's revenue

"The monetisation designer flagged an ethical concern about mechanics that were designed specifically to extract maximum spending from whales rather than delivering genuine value."

Monetização e Live Ops

"loot box"

A randomised reward mechanic in which players spend real or virtual currency for a chance at valuable in-game items, a model that has attracted significant regulatory scrutiny

"Following regulatory pressure in several European countries, the studio replaced its loot box system with a direct-purchase store showing item prices upfront."

Monetização e Live Ops

"season pass"

A discounted bundle purchase that grants access to a defined set of downloadable content packs or seasonal content for a game over a set period

"The season pass for the first year of DLC was priced at 30% below the cost of buying each content pack individually to incentivise upfront commitment."

Monetização e Live Ops

"average revenue per user"

A metric calculated by dividing total game revenue by the number of active players, used to benchmark monetisation efficiency across titles and platforms

"Despite lower total player numbers, the premium title's average revenue per user was ten times higher than the competing free-to-play game in the same genre."

Perguntas frequentes

Por que o inglês é importante para desenvolvedores de jogos?

O inglês é o idioma universal da indústria de jogos. As principais engines como Unity e Unreal Engine publicam toda a documentação, tutoriais e fóruns em inglês. As maiores conferências — GDC, PAX — são realizadas em inglês. A maioria dos estúdios de desenvolvimento, mesmo os do Japão, Alemanha ou Polônia, usa o inglês como idioma de trabalho para documentação técnica, relatórios de bugs e comunicação entre equipes. Desenvolvedores que não dominam o inglês profissional ficam excluídos da maioria dos recursos de aprendizagem, oportunidades de emprego e ferramentas que impulsionam a indústria moderna de jogos.

Qual vocabulário é mais importante para desenvolvedores de jogos?

O inglês para desenvolvimento de jogos abrange seis domínios principais: design de jogos (core loop, agência do jogador, curva de dificuldade, onboarding), engines e ferramentas (grafo de cena, pipeline de assets, sistema entidade-componente), gráficos e renderização (draw calls, renderização baseada em física, shaders, frame budget), programação (game loop, delta time, object pooling, máquinas de estado), produção e QA (gold master, testes de regressão, milestones, crunch) e monetização ao vivo (battle pass, taxa de retenção, ARPU).

Como aprender inglês para desenvolvimento de jogos de forma eficaz?

A abordagem mais eficaz combina input compreensível com vocabulário específico do domínio. Assistir a palestras da GDC, tutoriais de Unity e Unreal, e canais do YouTube sobre design de jogos em inglês expõe você à fala profissional autêntica. Ler documentação de engines, post-mortems e blogs do setor desenvolve a fluência de leitura no registro exato que os estúdios usam. Participar de game jams e fóruns em inglês desenvolve o vocabulário produtivo — a capacidade de usar os termos corretamente em contexto.

Quanto tempo leva para falar inglês com fluência sobre desenvolvimento de jogos?

Desenvolvedores com inglês geral de nível B2 geralmente conseguem ler documentação da Unity ou Unreal e entender palestras da GDC após alguns meses de prática direcionada. Escrever relatórios de bugs claros, documentos de design e especificações técnicas costuma levar de seis meses a um ano. A fluência profissional completa — apresentar em conferências, liderar revisões de design ou entrevistar em estúdios internacionais — normalmente requer de um a dois anos de engajamento constante com conteúdo autêntico de desenvolvimento de jogos em inglês.

Posso aprender inglês para desenvolvimento de jogos por meio de vídeos?

Com certeza — o vídeo é um dos melhores formatos para o inglês de desenvolvimento de jogos. A indústria produz um volume enorme de conteúdo de alta qualidade em inglês: palestras do GDC Vault de desenvolvedores dos melhores estúdios do mundo, séries de tutoriais de engines, documentários sobre desenvolvedores indie e game jams transmitidos ao vivo. Ver desenvolvedores reais explicando decisões técnicas, descrevendo desafios de design e demonstrando ferramentas mostra exatamente como o inglês profissional do desenvolvimento de jogos funciona em contexto.

A maneira mais rápida de absorver o inglês de desenvolvimento de jogos é por meio de input compreensível — palestras reais da GDC, tutoriais de engines e entrevistas com desenvolvedores no seu nível.

Pratique com vídeos reais →