In 1981, Nintendo was stuck with roughly 2,000 unsold Radar Scope arcade cabinets in a New Jersey warehouse. The game had flopped in North America, and the company’s president, Hiroshi Yamauchi, needed someone to design a new game that could be installed in those cabinets using the existing hardware. He gave the assignment to a 28-year-old staff artist with no programming experience and no prior game design credits. That artist was Shigeru Miyamoto. The game he made was Donkey Kong. Within a year, Donkey Kong had earned Nintendo over $180 million in revenue and established the template for the platform game — a genre that would dominate video gaming for the next two decades. Miyamoto went on to create Mario, The Legend of Zelda, Star Fox, Pikmin, and a string of other franchises that have collectively sold over 800 million copies. He did not just design games — he defined what video games could be as a creative medium. His influence on interactive entertainment is comparable to Walt Disney’s influence on animation: before him, the field existed; after him, it was fundamentally different. His design principles — that games should reward curiosity, that mechanics should emerge from simple rules, that a player’s first experience must teach without lecturing — have shaped how developers at every level think about building interactive software, from indie titles to the Unreal Engine powered blockbusters of today.
Early Life and Education
Shigeru Miyamoto was born on November 16, 1952, in Sonobe, a small rural town in Kyoto Prefecture, Japan (now part of the city of Nantan). He grew up without a television for much of his childhood, which he has credited with pushing him outdoors. He spent his time exploring the hills, forests, caves, and rivers around Sonobe — experiences that would later directly inform the design of The Legend of Zelda. In interviews, Miyamoto has described the feeling of discovering a cave entrance hidden behind bushes, or finding a lake in a clearing after walking through dense woods, as formative creative experiences. The sense of wonder and exploration that defines his games traces directly back to this childhood landscape.
Miyamoto attended the Kanazawa College of Art (now Kanazawa College of Art and Design, part of Kanazawa University), where he studied industrial design. He was not a particularly focused student by his own admission — he spent much of his time drawing, playing bluegrass banjo and guitar, and designing toys. He graduated in 1975, taking five years to complete a four-year program. He had no background in computer science, no experience with electronics, and no particular interest in the nascent field of video games. What he had was a deep interest in how people interact with objects and environments — the core concern of industrial design — and an instinct for playful, intuitive experiences.
After graduating, Miyamoto’s father arranged an introduction to Hiroshi Yamauchi, the president of Nintendo. At that time, Nintendo was primarily a playing card and toy company, though it had begun experimenting with electronic games. Yamauchi hired Miyamoto in 1977 as a staff artist — Nintendo’s first dedicated artist, in fact. For the first few years, Miyamoto worked on the visual design of arcade cabinets and contributed art to games including Sheriff (1979). It was not until the Donkey Kong assignment in 1981 that he was given the opportunity to design a game from the ground up. He was 28 years old, with no game design experience, and he was about to create one of the most important games ever made.
The Donkey Kong Breakthrough
Technical Innovation
Donkey Kong (1981) was revolutionary not because of its technology — it ran on the same hardware as the failed Radar Scope — but because of its design philosophy. Previous arcade games like Space Invaders and Pac-Man had been abstract: a spaceship shooting rows of aliens, a circle eating dots in a maze. Miyamoto approached the problem differently. He started with characters and a narrative situation: a gorilla has kidnapped a carpenter’s girlfriend, and the player must climb a construction site to rescue her. This was the first time a video game had told a visual story with distinct characters who had implied personalities and motivations.
The gameplay itself introduced the platform genre. The player (originally called Jumpman, later renamed Mario) had to navigate a series of platforms connected by ladders while avoiding barrels rolled by Donkey Kong. The core mechanic was jumping — an action that seems obvious now but was genuinely novel in 1981. Miyamoto designed four distinct stages, each with different obstacles and layouts, creating a sense of progression that arcade games had not previously offered. The game demanded both reflexive skill and spatial reasoning, a combination that would become Miyamoto’s signature.
Because Miyamoto could not program, he worked with lead engineer Gunpei Yokoi and programmer Toshihiko Nakago. Miyamoto would describe what he wanted — a barrel rolling down ramps, a character jumping over obstacles — and the programmers would implement it. This collaborative dynamic, where the designer directs the experience and engineers solve the technical problems, established a production model that Nintendo has used ever since and that the broader game industry eventually adopted. Before Donkey Kong, most games were designed by their programmers. After Donkey Kong, game design became recognized as a distinct creative discipline.
# Miyamoto's level design philosophy: emergent complexity from simple rules
# This pseudocode illustrates the Donkey Kong barrel-spawning logic
# that creates unpredictable challenge from deterministic rules
class DonkeyKongBarrelSystem:
"""
Miyamoto's key insight: barrels follow simple physics rules
(gravity + platform collisions), but their interaction with
sloped platforms creates emergent, unpredictable patterns
that force the player to read and react in real time.
"""
def __init__(self):
self.spawn_interval = 2.0 # seconds between barrel spawns
self.barrel_speed = 60 # pixels per second
self.gravity = 120 # pixels per second squared
def spawn_barrel(self, kong_position):
barrel = {
'x': kong_position['x'],
'y': kong_position['y'],
'vx': self.barrel_speed,
'vy': 0,
'on_ground': False
}
return barrel
def update_barrel(self, barrel, platforms, dt):
# Apply gravity when airborne
if not barrel['on_ground']:
barrel['vy'] += self.gravity * dt
barrel['y'] += barrel['vy'] * dt
# Move horizontally
barrel['x'] += barrel['vx'] * dt
# Check platform collisions — this is where
# the emergent behavior comes from
for platform in platforms:
if self.barrel_on_platform(barrel, platform):
barrel['on_ground'] = True
barrel['vy'] = 0
barrel['y'] = platform['y'] - 16
# Sloped platforms change barrel direction
# creating the rolling-down-ramps effect
if platform['slope'] != 0:
barrel['vx'] = self.barrel_speed * platform['slope']
# Barrel falls off platform edge — becomes airborne again
if barrel['on_ground'] and not self.over_any_platform(barrel, platforms):
barrel['on_ground'] = False
# Random decision at ladder intersections
# This single random element prevents pattern memorization
if self.at_ladder(barrel) and random() < 0.25:
barrel['descend_ladder'] = True
return barrel
Why It Mattered
Donkey Kong proved that video games could be a narrative and character-driven medium, not just a test of reflexes against abstract patterns. The character of Mario — with his distinctive mustache, hat, and overalls, all designed to be readable at low pixel resolutions — became the first iconic video game character. Miyamoto chose a mustache because it was easier to render than a mouth; a hat because animating hair was difficult; overalls because they made arm movements visible against the body. Every design choice served both aesthetics and technical constraints simultaneously, a hallmark of great industrial design applied to a new medium.
The financial success of Donkey Kong saved Nintendo's American operations and established the company as a major force in the arcade market. More importantly, it demonstrated that a designer who thought about player experience, character, and spatial narrative could create something that pure programmers, working alone, had not. Miyamoto's approach — starting with emotion and experience rather than technology — was genuinely new to the industry and remains his most enduring contribution to game design methodology.
Other Contributions
After Donkey Kong, Miyamoto created a body of work that spans four decades and encompasses many of the most important franchises in gaming history.
Super Mario Bros. (1985) was the game that defined the Nintendo Entertainment System (NES) and the console gaming market. Miyamoto designed World 1-1 as a masterclass in implicit teaching: the first screen presents a Goomba walking toward an isolated block, forcing the player to discover jumping. A power-up mushroom moves in only one direction, toward the player, ensuring they collect it and learn the upgrade system. No text instructions, no tutorial screens — the level itself is the tutorial. This design philosophy, now called "environmental teaching" or "learning through play," has been studied and emulated by game designers for 40 years. Super Mario Bros. sold over 40 million copies on the NES and is often cited as the single most important game in the history of the medium.
The Legend of Zelda (1986) was a radically different kind of game. Where Mario was linear and level-based, Zelda was open-world and exploration-driven. The player was dropped into a landscape with no explicit instructions and had to discover the world's structure through experimentation. Miyamoto designed the game's overworld as a garden of interconnected spaces, each containing secrets that rewarded careful observation. The design drew directly on his childhood explorations in Sonobe — the cave entrances hidden behind bushes, the sense of wonder at discovering something unexpected. Zelda established the action-adventure genre and the concept of a persistent game world that the player gradually understands and masters. Its design DNA runs through every open-world game made since, from the Elder Scrolls series to Breath of the Wild.
Super Mario 64 (1996) solved one of the hardest problems in game design: how to make a character controllable and fun in three dimensions. Previous attempts at 3D platforming had been awkward and disorienting. Miyamoto spent months refining Mario's movement — his acceleration, his turning radius, his jump arc — before any levels were built. He has said that the team spent time simply running Mario around a flat plane with a few test objects, making the act of movement feel satisfying before designing challenges around it. The analog stick on the Nintendo 64 controller, which Miyamoto helped design, was essential: it allowed nuanced, analog movement input that the digital buttons on previous controllers could not provide. Super Mario 64 established the conventions that virtually all 3D action games still follow, from camera control to spatial navigation. John Carmack's DOOM and Quake had pioneered 3D rendering technology, but it was Miyamoto who solved the game design problem of making 3D spaces feel intuitive and playable.
Wii Sports (2006) extended Miyamoto's design philosophy to a new audience. Bundled with the Nintendo Wii, the game used motion controls to make gaming accessible to people who had never picked up a controller. Miyamoto's insight was that physical gestures — swinging a tennis racket, rolling a bowling ball — were universally understood in a way that button combinations were not. Wii Sports became the best-selling single-platform game in history at the time (over 82 million copies) and demonstrated that expanding the audience for interactive entertainment was as important as advancing technology. This principle — that accessibility and approachability matter as much as technical sophistication — runs through all of Miyamoto's work.
The Legend of Zelda: Breath of the Wild (2017) reinvented the open-world game by applying consistent physics and chemistry systems to every object in the world. Wood burns, metal conducts electricity, wind affects movement, and these rules interact to create emergent solutions to puzzles. Miyamoto, as a creative fellow and advisor on the project (directed by Hidemaro Fujibayashi), helped shape the design philosophy of "multiplicative gameplay" — the idea that simple systems, combined freely by the player, produce complex and unexpected results. The game received universal critical acclaim and influenced open-world game design across the industry. Teams building tools for modern game development, including those who use platforms like Toimi for project coordination and Taskee for task management, study Breath of the Wild's systems-driven approach as a model for managing creative complexity in production.
Philosophy and Design Approach
Key Principles
Miyamoto's design philosophy is often misunderstood as simply "fun first." It is more precise than that. His approach rests on several specific principles that he has articulated across decades of interviews and GDC presentations.
Start with the experience, not the technology. Miyamoto begins every project by asking what he wants the player to feel, not what the hardware can do. For Super Mario Bros., the starting point was the joy of running and jumping. For Zelda, it was the wonder of exploration. For Wii Sports, it was the physical pleasure of swinging a racket. Technology serves the experience, never the reverse. This principle is directly influenced by his industrial design training, where the central question is always: how will the user interact with this object?
Simplicity is the foundation of depth. Mario has essentially two actions: run and jump. Zelda's combat is built on a simple sword swing and a shield block. Pikmin is a real-time strategy game with no resource management, no tech trees, no base building — just the simple act of directing small creatures. In each case, depth emerges from the interaction of simple elements, not from the number of elements. Miyamoto frequently uses the analogy of a musical instrument: a guitar has six strings and a simple interface, but the depth of music it can produce is infinite. His games aim for the same relationship between simple inputs and complex outputs.
The player's first five minutes determine everything. Miyamoto is obsessive about opening moments. World 1-1 of Super Mario Bros., the Great Plateau of Breath of the Wild, the first room of a Zelda dungeon — these are the most carefully designed spaces in their respective games. His rule is that the opening must teach the player everything they need to know through play, without any text instructions. If a player needs to read a manual or a tutorial screen, the design has failed. This principle anticipated modern UX design thinking by decades. Software designers today talk about "onboarding flows" and "first-run experiences"; Miyamoto was solving the same problem in 1985 with pixel art and a 1.79 MHz processor.
"Upending the tea table." Miyamoto is famous within Nintendo for a practice his colleagues call chabudai gaeshi — flipping the tea table. Late in development, he will arrive at a review, play the game, and declare that something fundamental needs to change. This practice, while frustrating for his teams, forces projects to confront their weaknesses rather than ship with compromises. It reflects a belief that great design requires iteration and the willingness to discard work that is good but not right. Modern software development teams practice similar rituals under names like "retrospectives" and "design reviews," but Miyamoto's version is more radical: he is willing to throw away months of work to fix a core problem.
Observation over assumption. Miyamoto is a meticulous observer of how people play. He watches testers silently, noting where they get confused, where they smile, where they give up. His design decisions are grounded in observed behavior, not theoretical models of what players should enjoy. This empirical approach to design — building, testing, observing, iterating — predates the rise of user research and A/B testing in software development, applying the same methodology through direct observation rather than analytics dashboards. The approach mirrors how Steve Wozniak at Apple insisted that hardware engineering should be grounded in real user needs rather than technical specifications for their own sake.
// Miyamoto's "World 1-1" teaching philosophy as a design system
// Each element in the opening sequence has a specific pedagogical purpose
const WORLD_1_1_DESIGN = {
// Screen 1: Teach the core verb (jump) through forced discovery
sequence: [
{
element: "empty_space_with_goomba",
teaches: "You can and must jump",
method: "Goomba walks toward player from right; only escape is jumping",
fallback: "If player is hit, they learn consequence and try again"
},
{
element: "question_block_above",
teaches: "Hit blocks from below to get rewards",
method: "Block placed directly above the path; natural jump trajectory hits it",
reward: "coin_or_mushroom"
},
{
element: "mushroom_moves_right",
teaches: "Power-ups are beneficial; collect them",
method: "Mushroom moves in only one direction (toward player)",
// Miyamoto's genius: the mushroom cannot escape the player.
// The level geometry funnels it back. Accidental collection is
// almost guaranteed, teaching the upgrade system passively.
design_note: "Player learns power-up system without any text"
},
{
element: "first_pipe",
teaches: "Vertical obstacles require jumping",
method: "Pipe blocks forward path; must jump over it"
},
{
element: "first_pit",
teaches: "Gaps in the ground are lethal; precision jumping matters",
method: "Small pit (easy to clear) introduces the concept of death-by-falling",
placement: "After player has practiced jumping on safe ground"
},
{
element: "staircase_to_flagpole",
teaches: "Height is rewarded; levels have endpoints",
method: "Ascending blocks lead to flagpole; higher jump = more points"
}
],
// The meta-principle: every element teaches exactly one concept,
// introduced in order of complexity, with safe space to practice
// before the concept becomes dangerous.
principle: "The level IS the tutorial. No text. No popups. Just design."
};
Legacy and Modern Relevance
Miyamoto's influence on the game industry and interactive media is difficult to overstate. He did not invent the video game — that credit belongs to earlier pioneers. But he transformed video games from a primarily technical medium into a design-driven creative medium. Before Miyamoto, most games were made by programmers who also designed the gameplay. After Miyamoto demonstrated what a dedicated designer could achieve, game design became recognized as its own discipline, with its own principles, its own body of knowledge, and eventually its own academic programs.
The specific franchises he created remain among the most commercially and critically successful in the industry. As of 2025, the Super Mario franchise has sold over 800 million copies across all titles. The Legend of Zelda franchise has sold over 150 million copies. These are not just games — they are cultural institutions that have shaped the childhood experiences of multiple generations worldwide.
His design principles have been absorbed into the broader discipline of user experience design. The concept that an interface should teach through interaction rather than instruction, that simplicity enables depth, that the user's emotional experience is the primary design constraint — these ideas are now standard in software design, but they originated in Miyamoto's game design practice decades before the UX discipline formalized them. When a modern web application provides an interactive onboarding walkthrough instead of a documentation page, it is applying a principle that Miyamoto demonstrated in 1985.
Miyamoto's approach to hardware design has also been influential. The Nintendo 64's analog stick, the Wii's motion controls, the Nintendo DS's dual screens and touch input, and the Nintendo Switch's hybrid portable/console design all reflect his conviction that the input device shapes the experience as much as the software. This willingness to rethink the interface — rather than simply making existing interfaces faster — distinguishes Nintendo from competitors who focused primarily on graphical power. The philosophy echoes the hardware thinking of pioneers like Federico Faggin, whose integrated circuit innovations at Intel proved that reimagining the physical substrate could be as transformative as software advances.
In 2015, Miyamoto was named a Person of Cultural Merit by the Japanese government. In 2019, he was inducted into the Japan Academy Prize for his contributions to visual culture. He holds the title of Representative Director, Fellow, at Nintendo, a role created specifically for him. At 73, he remains actively involved in Nintendo's creative direction, mentoring the next generation of designers who will carry forward the principles he established. His career demonstrates something that the technology industry sometimes forgets: that the most enduring innovations are not always the most technically sophisticated — they are the ones that most deeply understand the human experience they are designed to serve. The breakthrough ideas of Alan Turing gave us the theoretical foundation of computing, but it took designers like Miyamoto to reveal what that computing power could mean for human joy and creativity.
The game industry today, with annual revenues exceeding $180 billion, owes more to Miyamoto than to any other single individual. Not because he wrote the most code or built the most advanced engines, but because he proved that how a game feels to play is more important than how it looks or how it runs. Gabe Newell built the digital distribution platform that transformed how games reach players; Jack Kilby's integrated circuit made the hardware possible. But it was Miyamoto who defined what players expect from the experience itself. That is a legacy that no amount of technological progress will make obsolete.
Key Facts
- Born: November 16, 1952, Sonobe, Kyoto Prefecture, Japan
- Known for: Creating Mario, The Legend of Zelda, Donkey Kong, Star Fox, Pikmin, and Wii Sports; pioneering modern game design methodology
- Key projects: Donkey Kong (1981), Super Mario Bros. (1985), The Legend of Zelda (1986), Super Mario 64 (1996), Wii Sports (2006), Breath of the Wild (2017, advisory role)
- Education: B.A. in Industrial Design, Kanazawa College of Art (1975)
- Awards: BAFTA Fellowship (2010), Person of Cultural Merit — Japan (2019), DICE Lifetime Achievement Award (2007), GDC Lifetime Achievement Award (2007)
- Current role: Representative Director, Fellow at Nintendo Co., Ltd.
- Franchise sales: Super Mario series — 800M+ copies; Zelda series — 150M+ copies; combined Nintendo franchise sales exceed 1 billion units
- Design philosophy: Experience-first design, environmental teaching, emergent complexity from simple rules, chabudai gaeshi (upending the tea table)
Frequently Asked Questions
Who is Shigeru Miyamoto?
Shigeru Miyamoto (born 1952) is a Japanese game designer and the most influential figure in the history of video games. He joined Nintendo in 1977 as a staff artist and went on to create Donkey Kong, Super Mario Bros., The Legend of Zelda, Star Fox, Pikmin, and Wii Sports, among other franchises. His design philosophy — that games should teach through play, that simple mechanics can produce deep experiences, and that emotional engagement matters more than technical spectacle — has shaped the entire interactive entertainment industry. He currently serves as Representative Director, Fellow at Nintendo.
What games did Shigeru Miyamoto create?
Miyamoto's major creations include Donkey Kong (1981), which introduced the platformer genre; Super Mario Bros. (1985), which defined console gaming; The Legend of Zelda (1986), which pioneered open-world exploration; Super Mario 64 (1996), which established conventions for 3D game design; and Wii Sports (2006), which made gaming accessible to a mass audience through motion controls. He also created Star Fox, F-Zero, Pikmin, and Nintendo's Mii system. In total, franchises he created or directly supervised have sold well over one billion copies worldwide.
How did Miyamoto's background in industrial design influence his games?
Miyamoto studied industrial design at Kanazawa College of Art, where the core discipline was understanding how humans interact with physical objects. This training gave him a fundamentally different perspective from the programmers who designed most games in the early 1980s. Rather than starting with what the technology could do, Miyamoto started with how the player should feel. He designed Mario's controls to feel satisfying before building levels around them. He designed the Wii Remote to feel intuitive in the hand before defining what games would use it. His entire approach — testing with real users, iterating based on observation, prioritizing experience over specification — is industrial design methodology applied to interactive software.
Why is Shigeru Miyamoto considered the most important game designer in history?
Miyamoto is considered the most important game designer because he both created multiple genre-defining franchises and established game design as a distinct creative discipline. Before Donkey Kong, most games were designed by their programmers. Miyamoto demonstrated that a dedicated designer — someone who thought about character, narrative, player emotion, and spatial experience — could create something qualitatively different. His games have collectively shaped player expectations across four decades, and his design principles (environmental teaching, emergent complexity, experience-first design) have been adopted as foundational concepts in game design education and practice worldwide.