From 3D to 1D: Why a Level with Two Buttons Proved Harder Than a Three-Dimensional Arena

The Paradox of Simplicity in Game Design

In the world of game development, complexity is often equated with difficulty. A sprawling 3D arena with multiple enemies, dynamic lighting, and physics-based interactions is typically considered a pinnacle of challenge. Yet a recent case study published on Habr reveals a fascinating counterexample: a level reduced to a single dimension—a 1D line with only two interactive buttons—was significantly more difficult for players than a fully realized 3D environment. The developers behind this experiment, as detailed in the article, encountered a counterintuitive truth: stripping away visual and spatial cues does not necessarily simplify the cognitive load; it can amplify it.

The material examines a project where the team implemented two distinct game modes: a 3D arena with full freedom of movement and a 1D corridor where the player could only move left or right, with two buttons controlling actions. The goal in both modes was identical—reach a target and avoid obstacles—but the constraints were radically different. The result? Players consistently failed the 1D level more often, took longer to complete it, and reported higher frustration levels. This article breaks down the technical and psychological reasons behind this phenomenon, offering insights for UX designers, AI researchers, and game developers.

Source

The Experiment: Two Levels, One Goal

The project team implemented a simple test: a 3D arena where players could navigate freely in three axes, avoid moving obstacles, and reach a goal point. The second level was a 1D line—essentially a horizontal axis—where the player could only move left or right using two buttons. Obstacles appeared as points on the line, and the player had to time their movements precisely to avoid them.

Key parameters of the two levels:

Feature 3D Arena 1D Corridor
Degrees of freedom 6 (translation + rotation) 1 (horizontal translation)
Controls Keyboard + mouse Two buttons
Obstacle types Moving cubes, spheres, projectiles Static and moving points
Average completion time 45 seconds 120 seconds
Failure rate 12% 43%

As the table shows, the 1D level had a failure rate more than three times higher, despite having vastly simpler controls. The developers initially expected the 1D level to be trivial—after all, with only two buttons, how hard could it be? But the data told a different story.

Why 1D Is Harder: Cognitive Load and Precision

The core reason lies in cognitive load theory. In a 3D arena, players use spatial awareness, peripheral vision, and proprioception (the sense of body position) to navigate. The brain processes multiple cues simultaneously: distance, speed, angle, and trajectory. While this seems complex, it leverages evolved neural pathways optimized for 3D environments. Humans are naturally good at navigating three-dimensional spaces because our ancestors did it for millions of years.

In contrast, a 1D line strips away most of these cues. The player must rely entirely on precise timing and memory of obstacle positions. There is no room for error: a single misstep in timing leads to collision. The brain struggles because it cannot use spatial heuristics—it must treat each obstacle as an isolated event. This increases working memory load and reduces tolerance for latency or jitter.

The article describes how players often reported feeling "trapped" or "claustrophobic" in the 1D level, even though the visual field was simpler. The lack of freedom paradoxically increased stress because every decision had immediate, irreversible consequences. In 3D, players could dodge, strafe, or retreat—options that provided a safety net. In 1D, the only option was perfect execution.

Technical Implementation: The Hidden Complexity

From a technical perspective, the 1D level was not simpler to implement. The developers had to handle collision detection with higher precision because the margin for error was smaller. In a 3D arena, a collision box can be several units wide; in 1D, it's a point. The physics engine had to be tuned to sub-pixel accuracy, and the input system required debouncing to prevent accidental double-presses.

Moreover, the AI for obstacle generation had to be carefully balanced. If obstacles appeared too frequently, the level became impossible; too rarely, it became boring. The team used a Poisson distribution for obstacle spacing, with a mean interval of 1.5 seconds and a standard deviation of 0.3 seconds. This created a rhythm that players could learn, but any deviation from the pattern caused immediate failure.

The article notes that the 1D level required more playtesting iterations than the 3D arena. The team went through 12 versions of the 1D level versus 5 for the 3D level. This highlights that simplicity in user interaction does not equate to simplicity in design.

Psychological Factors: The Role of Feedback and Agency

Another key factor is feedback. In 3D, players receive continuous feedback: visual (obstacle approaching), auditory (sound cues), and haptic (controller vibration). This multimodal feedback helps the brain build a mental model of the environment. In 1D, feedback is binary—either you hit the obstacle or you don't. There is no gradual warning, no "near miss" sensation. This makes learning slower and more frustrating.

Agency—the sense of control—also differs. In 3D, players feel they have many options, even if they don't use them. This illusion of control reduces anxiety. In 1D, the lack of options is explicit, leading to a feeling of helplessness. The developers observed that players who succeeded in the 1D level often described it as "a puzzle" rather than "an action game," indicating a shift in cognitive framing.

Lessons for AI and Automation

This case study has implications beyond game design. In AI and automation, systems that appear simple on the surface (e.g., a single binary decision) can be harder to optimize than complex ones because they lack redundancy. For instance, a self-driving car navigating a 3D road environment uses multiple sensors (LIDAR, cameras, radar) and can fall back on different strategies if one fails. A 1D control system (e.g., a conveyor belt with two sensors) has no such redundancy—any sensor failure causes a crash.

ASI Biont supports connecting to game development and simulation tools through API—details at asibiont.com/courses. The platform's ability to handle both complex 3D data and simple 1D signals makes it suitable for such multi-faceted problems.

The developers conclude that designers should not assume that reducing dimensions simplifies the user experience. Instead, they should consider the cognitive cost of constraints. A 1D interface requires more precise input, better timing, and higher concentration—qualities that can be exploited for specific training or testing purposes.

Conclusion

The experiment described in the Habr article demonstrates a key principle in human-computer interaction: complexity is not a function of dimensionality but of constraints. The 1D level with two buttons was harder because it removed the brain's natural tools for handling uncertainty. For developers, this means that simplifying an interface requires careful consideration of the user's cognitive resources. For AI researchers, it reinforces the idea that redundancy and feedback are critical for robust systems. As automation advances, understanding these trade-offs will become increasingly important—not just in games, but in any domain where human and machine interact.

The full technical details and player data are available in the original article. Source

← All posts

Comments