Glossary term

Vestibular System

What is the vestibular system?

The vestibular system refers to the inner ear's balance mechanism that detects movement and orientation. In immersive applications, mismatches between this system and visual inputs are the primary cause of simulation sickness, something developers need to design around carefully.

How does the vestibular system work?

The vestibular system is a biological network of semicircular canals and otolithic organs in the inner ear that detects movement and orientation. Understanding how it works is important for developers creating immersive experiences.

When visual information contradicts vestibular sensations, such as when a user sees movement but doesn't physically experience it, the resulting conflict can trigger discomfort, nausea, and disorientation.

This illusion of self-motion from visual cues alone is called vection, and it's central to why VR locomotion design matters so much. The stronger the sense of vection without matching physical motion, the more likely a user is to feel discomfort.

Design considerations for the vestibular system

  • Maintain a consistent, high frame rate: Frame rate drops make the visual-vestibular mismatch more noticeable and more likely to cause discomfort.
  • Choose locomotion carefully: Teleportation and snap turning tend to be more comfortable than smooth, continuous movement, since they reduce the vection described above.
  • Provide comfort options: Features like a vignette during movement (narrowing the field of view) give users a static visual anchor that can reduce discomfort.
  • Avoid artificial acceleration where possible: Sudden speed or direction changes the player didn't initiate tend to be the most disorienting.

Unity's XR Interaction Toolkit locomotion system includes built-in teleportation, snap turning, and comfort vignetting, and the Unity Learn locomotion tutorial walks through setting these up. By designing with these considerations in mind, creators can improve user comfort across entertainment, training, and other immersive applications.

Frequently asked questions (FAQ)

Does smooth locomotion always cause more discomfort than teleportation?

Generally, yes, though individual sensitivity varies widely. Smooth, continuous movement creates a stronger illusion of self-motion (vection) without matching physical motion, which is the core mismatch that causes discomfort. Teleportation avoids this by moving the user instantly rather than continuously.

Can comfort settings fully eliminate motion sickness in VR?

Not entirely. Comfort options like vignetting and teleportation reduce how often and how strongly the visual-vestibular mismatch occurs, but individual susceptibility varies significantly, and no single setting works for everyone. Testing with a range of users, not just the development team, is the most reliable way to catch comfort issues before launch.

Related terms

Extended Reality (XR)

Extended Reality (XR) serves as an umbrella term encompassing all immersive technologies including virtual, augmented, and mixed reality that enhance or replace our view of the world through digital experiences.

VR

Virtual Reality (VR) refers to computer-generated environments that completely replace the user's surroundings with interactive, immersive content experienced through head-mounted displays, creating the sensation of being physically present in simulated worlds.

Frames Per Second (FPS)

Frames per second (FPS) measures how many images a game or application displays each second.