How to Use Artificial Intelligence in Creating Content for RPG Games

Introduction

The World of Artificial Intelligence (AI) and Its Application in Content Creation for RPG Games

Recently, the world of IT technology has been actively filled with various iterations of artificial intelligence. From advanced chatbots that provide technical support to complex algorithms aiding doctors in disease diagnosis, AI’s presence is increasingly felt. In a few years, it might be hard to imagine our daily activities without artificial intelligence, especially in the IT sector.

AI Article Image

Let’s focus on generative artificial intelligence, such as TensorFlow, PyTorch, and others, which have long held an important place in software development. However, special attention should be given to the application of AI in the video game industry. We see AI being used from voice generation to real-time responses. Admittedly, this area is not yet so developed as to be widely implemented in commercially available games.

But the main emphasis I want to make is on the creation and enhancement of game content using AI. In my opinion, this is the most promising and useful direction for game developers.

The Lack of Resources in Creating Large and Ambitious RPG Games and How AI Can Be a Solution

In the world of indie game development, a field with which I am closely familiar, the scarcity of resources, especially time and money, is always a foremost challenge. While artificial intelligence (AI) cannot yet generate money or add extra hours to the day (heh-heh), it can be the key to effectively addressing some of these issues.

Realism here is crucial. We understand that AI cannot write an engaging story or develop unique gameplay mechanics – these aspects remain the domain of humans (yes, game designers and other creators can breathe easy for now). However, where AI can truly excel is in generating various items, enhancing ideas, writing coherent texts, correcting errors, and similar tasks. With such capabilities, AI can significantly boost the productivity of each member of an indie team, freeing up time for more creative and unique tasks, from content generation to quest structuring.

What is Artificial Intelligence and How Can it be Used in Game Development

For effective use of AI in game development, a deep understanding of its working principles is essential. Artificial intelligence is primarily based on complex mathematical models and algorithms that enable machines to learn, analyze data, and make decisions based on this data. This could be machine learning, where algorithms learn from data over time becoming more accurate and efficient, or deep learning, which uses neural networks to mimic the human brain.

Let’s examine the main types of AI
  • Narrative AI (OpenAI ChatGPT, Google BERT): Capable of generating stories, dialogues, and scripts. Suitable for creating the foundations of the game world and dialogues.
  • Analytical AI (IBM Watson, Palantir Technologies): Focuses on data collection and analysis. Used for optimizing game processes and balance.
  • Creative AI (Adobe Photoshop’s Neural Filters, Runway ML): Able to create visual content such as textures, character models, and environments.
  • Generative AI (OpenAI DALL-E, GPT-3 and GPT-4 from OpenAI): Ideal for generating unique names, item descriptions, quest variability, and other content.

By understanding the strengths and weaknesses of each type of AI, developers can use them more effectively in their work. For example, using AI to generate original stories or quests can be challenging, but using it for correcting grammatical errors or generating unique names and item descriptions is more realistic and beneficial. This allows content creators to focus on more creative aspects of development, optimizing their time and resources.

An Overview of the Characteristics of Large Fantasy RPG Games and Their Content Requirements

In large fantasy RPG games, not only gameplay and concept play a pivotal role, but also the richness and variability of content – spells, quests, items, etc. This diversity encourages players to immerse themselves in the game world, sometimes spending hundreds of hours exploring every nook and cranny. The quantity of this content is important, but so is its quality.

Imagine, we offer the player a relic named “Great Heart” with over 100 attribute variations – that’s one approach. But if we offer 100 different relics, each with a unique name and 3-4 variations in description, the player’s experience is significantly different. In AAA projects, the quality of content is usually high, with hundreds of thousands of hours invested in creating items, stories, and worlds. However, in the indie sector, the situation is different: there’s a limited number of items, less variability – unless we talk about roguelikes, where world and item generation are used.

A typical feature of roguelikes is the randomization of item attributes. However, they rarely offer unique generation of names or descriptions; if they do, it’s more about applying formulas and substitution rules, rather than AI. This opens new possibilities for the use of artificial intelligence – not just as a means of generating random attributes, but also in creating deep, unique stories, characters, and worlds, adding a new dimension to games.

Integrating AI for Item Generation: How AI Can Assist in Creating Unique Items (Clothing, Weapons, Consumables).

One of the practical examples of using AI is creating variations based on existing criteria. Why do I consider this the best way to utilize AI? Firstly, having written the story of your game world, we can set limits for the AI, providing clear input and output data. This ensures a 100% predictable outcome from AI. Let’s examine this more closely.

When talking about the world’s story, I mean a few pages that describe the world, its nature, and rules. It could be fantasy, sci-fi, with examples of names, unique terminology, or characteristic features that help AI understand the mood and specifics of the world. Here is an excerpt from the text I wrote for my game world.

The Kingdom of Arteria is an ancient and mysterious realm, shrouded in secrets and imbued with a powerful form of dark magic. For centuries, it has been ruled by Arteon the First, a wise and just monarch whose benevolence has brought peace and prosperity to his people. It is said that Arteon the First ascended the throne one thousand years ago and that his reign has continued to this day through the strength of his will and his dedication to protecting the kingdom from its enemies.

Regarding other clear instructions for AI, it’s crucial to make it understand what the input data is, what it means, and how to use it. Negative instructions are also important – things that shouldn’t be used or avoided. Here is an example of a description of input data and instructions for AI.

Generate creative item names and descriptions for a fantasy RPG game based on user-provided inputs. For example, given 'Bandit [Belt, Default, Blue]', output a structured response including item type, a unique name, and a short, imaginative description that fits a fantasy game setting. Ensure the description is engaging, adding history or mystery to the items, and enhancing the game's narrative feel. Keep descriptions between 2-25 words. The tone should be helpful, creative, and whimsical, in line with a fantasy RPG game, providing concise and detailed responses that make each item feel unique and integrated into the fantasy world.

Another important aspect is indicating to AI what output data we expect. This is vital in content generation, as we don’t want to manually copy data but want it to be automatically integrated through code. Therefore, we must clearly write this in the instructions to AI. Here is an example that I use.

Avoid content that is overly modern, breaks the fantasy setting, or is inappropriate. Stay imaginative yet coherent with typical fantasy themes. If an input is vague, creatively fill in gaps while adhering to the fantasy theme, but do not deviate far from the user's input. The focus should be on maintaining the integrity of the fantasy RPG game's setting, ensuring each item name and description respects the genre's conventions and enhances the overall narrative experience.

Using this information, we can test it through Chat GPT-3.5 or Open API, details of which we will discuss in the next section. Below, you can see the output that Chat GPT-3.5 gives us.

Utilizing Open API: Unveiling How Open API Can Be Used for Generating Names, Descriptions, and Properties of Items

In the previous section, we discussed using positive and negative prompts for chat. Now, let’s delve into the details of integrating AI into a game, specifically with Unity. This will be a sort of masterclass in incorporating AI into a live project.

Creating a Database of Ready-Made Items

With a game on Unity, our goal is to facilitate the work of content creators. We understand that real-time generation is possible but not in our case. Therefore, we need to create a database of ready-made items. To do this, we’ll develop a Unity Editor Script that will implement a tool for creating unlimited variability of items from basic elements.

AI Article

Item Data Model

Let’s consider our basic data model:


ItemDataModel {
    Name: String,        // Name of the item (e.g., "Excalibur", "Shadow Robe")
    Description: String, // Description of the item (e.g., "A legendary sword of unsurpassed power.")
    Type: String,        // Type of the item (e.g., "Hands", "Pants", "Chest")
    Rarity: String,      // Rarity level of the item (e.g., "Trash", "Common", "Uncommon", "Rare")
    Level: Int,          // Level requirement to use the item (e.g., 1, 2, 3)
    Stats: {             // Statistical bonuses provided by the item
        Strength: Int,   // Bonus to strength
        Agility: Int,    // Bonus to agility
        Intellect: Int,  // Bonus to intellect
        Faith: Int,      // Bonus to faith
        Stamina: Int,    // Bonus to stamina
        Armour: Int      // Armour rating
    },
    Resistance: {        // Resistance bonuses provided by the item
        Nature: Int,     // Resistance to nature-based attacks
        Void: Int,       // Resistance to void-based attacks
        Fire: Int,       // Resistance to fire-based attacks
        Frost: Int       // Resistance to frost-based attacks
    }
}

This is a classic dataset for RPGs, where values for all numerical fields are set using a randomizer. Our main focus is on the Name and Description fields.

Extended Prompt for AI

To our prompt, we add additional data from the model, creating a detailed request:

Item type is {ItemDataModel.Type}, rarity level is {ItemDataModel.Rarity}, in the game world item level is {ItemDataModel.Level} of max level {World.MaxItemLevel}.


This item has stats:
- Strength: {ItemDataModel.Stats.Strength}
- Agility: {ItemDataModel.Stats.Agility}
- Intellect: {ItemDataModel.Stats.Intellect}
- Faith: {ItemDataModel.Stats.Faith}
- Stamina: {ItemDataModel.Stats.Stamina}
- Armour: {ItemDataModel.Stats.Armour}

This item has resistance:

- Nature: {ItemDataModel.Resistance.Nature}
- Void: {ItemDataModel.Resistance.Void}
- Fire: {ItemDataModel.Resistance.Fire}
- Frost: {ItemDataModel.Resistance.Frost}

This allows the creation of items with unique names and descriptions, appropriate to their characteristics.

Integration with OpenAI

For integration with OpenAI, we formulate a request through the Unity API. You can find the request details on the official OpenAI website.


// Defines a client class for interacting with the OpenAI ChatGPT API.
public class OpenAIChatGPTClient
{
    // Private field to store the API key.
    private readonly string apiKey = "*************";

    // API endpoint URL for the ChatGPT service.
    private readonly string apiEndpoint = "https://api.openai.com/v1/chat/completions";

    // HttpClient instance for making HTTP requests.
    private readonly HttpClient httpClient;

    // Constructor for the OpenAIChatGPTClient class.
    public OpenAIChatGPTClient()
    {
        // Initialize the HttpClient object.
        httpClient = new HttpClient();
    }

    // Asynchronous method to send a chat request to the OpenAI API.
    public async Task RequestChatResponse(string name, string stats, string resistance)
    {
        // Prepare the request data in an anonymous object format.
        var requestData = new
        {
            model = "gpt-3.5-turbo-1106",
            response_format = new { type = "json_object" },
            messages = new[]
            {
                new { role = "system", content = "Positive and negative prompt and output details. Output should be ONLY JSON with \"Name\" and \"Description\" label" },
                new { role = "user", content = $"{name}, stats:{stats}, resistance:{resistance}" }
            }
        };

        // Serialize the request data to JSON format.
        var requestJson = JsonConvert.SerializeObject(requestData);

        // Call the SendRequest method to execute the API request.
        return await SendRequest(apiEndpoint, requestJson);
    }

    // Private asynchronous method to send a JSON payload to the specified URL.
    private async Task SendRequest(string url, string jsonPayload)
    {
        // Create a StringContent object with the JSON payload.
        var content = new StringContent(jsonPayload, Encoding.UTF8, "application/json");

        // Set the authorization header for the HTTP client.
        httpClient.DefaultRequestHeaders.Authorization = new System.Net.Http.Headers.AuthenticationHeaderValue("Bearer", apiKey);

        try
        {
            // Send the POST request and get the response.
            var response = await httpClient.PostAsync(url, content);

            // Ensure the response status code indicates success.
            response.EnsureSuccessStatusCode();

            // Read and return the response content as a string.
            return await response.Content.ReadAsStringAsync();
        }
        catch (Exception ex)
        {
            // Log the error if the HTTP request fails.
            Debug.LogError("Error in HTTP request: " + ex.Message);
            return null;
        }
    }
    
    // Method to parse the JSON response string and extract item details.
    public ItemDetails ParseResponse(string jsonString)
    {
        try
        {
            // Deserialize the JSON string to a ChatResponse object.
            var chatResponse = JsonConvert.DeserializeObject(jsonString);

            // Extract the content from the first choice in the response.
            var content = chatResponse.Choices[0].Message.Content;

            // Deserialize the content JSON string to an ItemDetails object.
            var itemDetails = JsonConvert.DeserializeObject(content);
            return itemDetails;
        }
        catch (JsonException e)
        {
            // Log an error if JSON parsing fails.
            Debug.LogError("JSON parsing error: " + e.Message);
            return null;
        }
    }

    // Nested class representing the structure of the chat response.
    public class ChatResponse
    {
        public List Choices { get; set; }
    }

    // Nested class representing a choice in the chat response.
    public class Choice
    {
        public Message Message { get; set; }
    }

    // Nested class representing the message part of a choice.
    public class Message
    {
        public string Content { get; set; }
    }

    // Nested class to hold the details of an item (name and description).
    public class ItemDetails
    {
        public string Name { get; set; }
        public string Description { get; set; }
    }
}

Having received a response from AI, we parse it (using UnityJsonUtility) and insert the data into our ItemDataModel. Thus, in a matter of minutes, we can generate thousands of items with unique names and characteristics.

AI Article

Examples of AI Results

NameTidecaller’s Coral BladeCoral Tidal DaggerCrimson Tide StilettoAbyssal Serpent FangAqua Shard Dagger
DescriptionThis dagger, crafted from enchanted coral, channels the power of the
ocean, enhancing the wielder’s faith and intelligence while providing
moderate armor.
This dagger’s wave-like blade, crafted from enchanted coral, grants
protection against frozen spells and void magic.
This sleek dagger’s blade ripples like the unforgiving waves, empowering
swift and agile strikes.
This dagger’s rippling blade evokes the power of the deep sea, granting
agility and formidable resistance to fire and void magic.
Forged from the depths of the ocean, this dagger’s wave-like blade
enhances agility and evokes the power of water.
Stats
Armour76
Faith10N/A4N/AN/A
Intelligence10N/A1N/A3
Strength5N/AN/AN/AN/A
StaminaN/AN/A6N/AN/A
AgilityN/AN/A9110
Resistances
FrozenN/A8N/AN/AN/A
VoidN/A24N/A35N/A
FireN/AN/AN/A15N/A

Case Study

Practical Examples

Searching the internet, one can find numerous examples of AI use in major gaming projects. Here are a few examples and references where AI has already been effectively utilized.

World and Content

“Microsoft Flight Simulator” employs AI to create a detailed replica of the real world, including over 1.5 billion buildings. This is an example of how AI can replace hundreds of thousands of hours of manual labor, creating incredibly detailed scenarios.

AI Article

This game showcases AI’s capability to process and integrate vast amounts of geographical data and imagery, transforming them into an immersive and realistic virtual environment. This not only enhances the gaming experience by providing realistic landscapes and cityscapes but also demonstrates the efficiency and scalability of AI in handling complex and large-scale content creation tasks.

The application of AI in “Microsoft Flight Simulator” serves as a benchmark in the gaming industry, illustrating the potential of AI to revolutionize content creation in RPGs and other genres, where detailed
and expansive game worlds are integral to the player experience. This example underscores the transformative impact that AI can have in the gaming industry, not just in terms of enhancing existing processes but also in opening new avenues for creative and expansive world-building.

Voice and Dialogues

In “NetEase’s Cygnus Enterprises,” AI is used to create NPCs capable of engaging in natural and meaningful dialogue with the player, reacting to their actions in the game. This demonstrates how AI can expand game mechanics, making them deeper and more interactive.

AI Article

Other Examples of AI Application in Video Games

Aeon Odyssey: This project uses AI to generate large and complex galaxies. Similar to “Microsoft Flight Simulator,” the game creates a sense of a living and dynamic universe. This is crucial for gameplay where the world itself is a key element.

Quantum Quandary: This game employs AI to create puzzles that adapt to the player’s skills. Tasks that would take thousands of hours for human developers to create, AI generates in a matter of hours, offering a significant advantage.

These examples illustrate how AI can influence game design by creating unique game worlds and adaptive mechanics that enhance player capabilities and create a more engaging experience.

AI-Based Tools for Game Developers

Promethean AI and Ludo.ai: These systems automate the game creation process, from prototyping to level design. They enable developers to quickly and efficiently bring their ideas to life, reducing the need for manual labor.

Rosebud.ai: This tool uses AI to create 3D worlds, objects, and textures according to user-specified criteria. It provides great flexibility and creativity in the design of game elements.

Layer.ai: Offers comprehensive solutions for enhancing AI-generated games, including prototyping mechanics, level generation, sound implementation, and visualization. This helps create more polished and professionally looking games.

AI Article

These tools demonstrate how AI is transforming the gaming industry, opening new horizons for game designers and content creators. They allow for the creation of deeper and more interactive gaming experiences, significantly expanding the possibilities in creating unique and captivating games.

Conclusion

The Future of Game Development with AI: Key Advantages and Potential

In this article, we have discussed the importance of artificial intelligence (AI) in the development of RPG games and its impact on game development. Through examples of various AI technologies and tools, we have examined how intelligent systems can solve a range of problems in the gaming industry, offering significant benefits for developers.

Innovative Approach to Content

The use of AI to generate unique content such as items, dialogues, and stories opens new possibilities for creating deeper and more engaging gaming worlds. This approach not only saves time and resources for developers but also enhances the level of individuality in the gaming experience for each player.

Optimization of Resources and Efficiency

AI enables indie developers to efficiently optimize their limited resources. From generating a large amount of content to assisting in balancing game elements, AI becomes an indispensable assistant, allowing focus on more creative aspects of development.

Expanding Capabilities for Game Designers

AI offers new tools and techniques for game designers, allowing them to realize their most ambitious ideas. From creating complex worlds to developing unique game mechanics, AI opens new horizons for creativity.

Interactivity and Depth of Gaming Experience

Integrating AI into gameplay provides new levels of interactivity and depth in the gaming experience. From realistic NPCs to dynamic changes in the game world, AI can create a more immersive and engaging environment for players.

Future Potential of AI in Game Development

AI has the potential to fundamentally change the gaming industry, offering new opportunities for innovation and creativity. With increasing accessibility and the advancement of technologies, we can expect even more exciting and revolutionary changes in the way games are created and played.

The future of AI in game development holds immense promise, heralding a new era where the boundaries of creativity and technology blend seamlessly to create gaming experiences that are not only innovative but also deeply personal and engaging for each player. This convergence of AI with game development is not just a glimpse into the future of gaming but a testament to the endless possibilities that AI brings to the creative world.

Latest Articles

The State of 3D Medical Image Visualization in 2026
June 29, 2026
The State of 3D Medical Image Visualization in 2026

Today’s imaging systems are more powerful than ever. A single CT scan generates hundreds of cross-sections. An MRI cardiac study captures the heart in four dimensions. A full-body PET produces a dense volumetric map of metabolic activity across every organ system. And yet, in most hospitals today, clinicians consume all of that data the same way they did in the 1990s: as 2D slices, scrolled one frame at a time, with the third dimension reconstructed entirely in the radiologist’s head. That gap between the data that exists and the data that gets used is what 3D medical visualization is closing. Progress hasn’t been uniform. The specialties with the highest spatial stakes have moved fastest. In oncology, where tumour margins and vascular relationships determine whether a resection is safe, 3D visualization is now routine. In cardiology, where structural defects live in three dimensions that 2D echo can only approximate, volumetric review has become standard practice for complex case planning. For these teams, rotating a segmented model or flying through a volume-rendered vessel is part of the reading workflow. Within healthcare, oncology drives roughly 34% of total 3D imaging spend: 52% of cancer centers already use 3D imaging as part of their standard workflow, and 44% of cardiology departments do the same. For much of medicine, the shift is still underway. But the direction is clear. The market reflects it. The global 3D medical imaging market was valued at $21.43B in 2025 and $23.39B in 2026 and is projected to reach $42.75B by 2032  at a compound annual growth rate of 10.36%. Healthcare has become the largest adopter of 3D imaging technology overall. In this article, we break down what 3D medical visualization actually means technically and where it creates measurable clinical value. The imaging data problem Begin with the scanners, because they don’t produce data the same way: CT measures X-ray absorption, so dense tissue like bone reads strongly while soft tissue stays faint: the default for trauma, lung, and skeletal work. MRI reads tissue magnetic properties instead of density, trading speed and bone detail for soft-tissue contrast nothing else matches. PET maps metabolic activity rather than structure, and almost always travels fused to a CT or MRI so the active regions have anatomy to sit against. Ultrasound produces a live volume but depends heavily on probe angle and operator skill. Cone-beam CT gives a tight, high-resolution field at the cost of coverage, which is why it dominates dental and interventional suites. All of these imaging methods capture a 3D volume of the body. Yet in most cases, doctors still review that data as a series of 2D slices. At first glance, this seems surprising: why collect rich 3D data only to view it in 2D? Part of the answer is habit and established workflows, but there are also practical reasons why 2D slices remain the standard in medical imaging. Raw data, nothing interpreted. A slice shows the scan as acquired. Every 3D rendering is the product of decisions which densities to display, which to hide, where to set the threshold and any of those can suppress a real finding or manufacture one that isn’t there. Full coverage of the dataset. Scrolling slices walks the eye across every voxel in the study. A 3D view by definition hides whatever sits behind the surface it shows, and for catching a small lesion or a faint ground-glass opacity, seeing everything matters. 3D earns its place once the task moves past detection: Spatial relationships. 3D visualization makes it easier to understand how anatomical structures relate to one another. Instead of mentally reconstructing anatomy from dozens of 2D slices, clinicians can view organs, vessels, and abnormalities as a single 3D model. Change over time. Tracking changes across multiple scans becomes much easier in 3D. By measuring the volume of a structure over time, clinicians can quickly identify trends that may be difficult to spot in individual slices. Communication. A 3D model is something a patient, a referring physician, or a multidisciplinary team can read at a glance, where a slice stack means little to anyone outside radiology. So, 3D visualization is most valuable when understanding spatial relationships is difficult or time-consuming in 2D. What complicates this in practice is the format the data arrives in. Most medical imaging is still stored as DICOM, a standard built around 2D-image workflows. DICOM is the backbone of medical imaging, but several of its legacy choices make 3D visualization and analysis harder to build on top of it. Gathering everything a full analysis needs is one problem: a careful read of a pathology usually draws on prior scans and the patient’s imaging history, and that data sits scattered across separate studies and series rather than in one place. Interoperability is another. DICOM has to exchange data with the hospital’s other systems, such as PACS, RIS, and the electronic health record, and every connection point adds friction. The input itself is uneven too: scans vary in quality and completeness depending on how and where they were acquired, so a tool built for real cases has to hold up across that range. We’ve written separately about why DICOM is stuck in the ’90s. What “3D medical visualization” actually means There are five techniques in common use. Most clinical software uses two or three of them together. Segmentation comes first, because the others depend on it. Segmentation. Something has to label what is in the scan before the rest can work. It needs to know which voxels are liver, which are tumour, which are vessel wall. This used to be manual work. A radiologist drew outlines on each slice, which for a complex case could take close to an hour. Two radiologists rarely produced identical outlines. AI tools changed this. TotalSegmentator and similar models label most organs in a CT scan in under a minute. The clinician checks and corrects the result instead of drawing it. This is what makes the other four techniques practical for routine use. Multiplanar reformatting (MPR)….

Immersive Storytelling: How XR Turns Audiences from Viewers into Participants
June 8, 2026
Immersive Storytelling: How XR Turns Audiences from Viewers into Participants

Immersive storytelling has moved from experimental format to a working tool used by humanitarian agencies, museums, newsrooms, and brands. The UN commissions 360° productions to communicate field realities. Agog is funding up to $1 million in 2026 grants for immersive climate work. Museums build location-based AR around their collections. Brands replace banner-grade content with VR experiences their audiences actually remember. What unites these use cases is a shift in what audiences expect from a story. Watching is no longer enough. People want to step into the scene, choose where to look, and feel that their presence shapes what happens next. The market reflects this shift. Fortune Business Insights projects the immersive marketing segment alone to grow from $11.66 billion in 2026 to $89.45 billion by 2034, at a CAGR of around 29%. In this article, we look at what immersive storytelling actually means in 2026, the formats producing the strongest results today, why presence works the way it does on a cognitive level, and where the medium is creating the most measurable impact across sectors. What is immersive storytelling? Immersive storytelling is a narrative method built on VR, AR, MR, 360° video, spatial audio, and interactivity. What makes it a distinct medium is the sense of being inside a story rather than watching it from outside. This changes the relationship between content and viewer in three concrete ways. Linear video becomes a 360° scene. Traditional film frames the shot for the audience: the director decides what is in view and what is cut out. In a 360° production, that frame disappears. The viewer chooses where to look, and different details emerge depending on where their attention goes. The same scene can carry multiple parallel observations, and two people watching the same piece may come away with different impressions of what mattered. Text and photography become interactive environments. A written article describes a place; a photo captures a moment of it. Both keep the audience on the outside. Interactive VR and AR let the audience step into the environment, examine objects up close, and in many cases trigger responses through their own actions. Passive consumption becomes an embodied experience. Watching content engages mostly the eyes and ears. Immersive formats add spatial awareness, proprioception, and a sense of physical location. The brain registers the experience closer to how it registers being somewhere in the real world, which is why retention and emotional response measure differently in immersive media than in flat content. How far the experience goes in any of these directions depends on the creative approach. Why it works: The science of presence and empathy When immersive storytelling produces results, it does so through specific mechanisms. The effect it has on audiences has been documented in peer-reviewed research and confirmed by neuroscience. A peer-reviewed study on immersive storytelling and presence found that delivering a story via 360° video on a head-mounted display produces stronger self-location and copresence than the desktop or text version of the same piece. Self-location is the feeling of being physically inside the scene; copresence is the sense of being there with other people. Both have a direct effect on how audiences respond emotionally. Copresence boosts cognitive empathy—the ability to understand what someone else is going through. Self-location and copresence together drive affective empathy—the capacity to share in those feelings. The format is changing what the audience is neurologically equipped to feel. Neuroscience confirms the difference at the signal level. EEG studies comparing VR with television viewing have documented greater mu rhythm suppression during VR sessions—a neural signature long associated with empathic response and mirror neuron activity. The brain registers immersive content differently from flat content. It shows up on EEG equipment, independently of what the audience reports feeling. These findings explain why immersive storytelling is being adopted in fields where emotional connection and behavioral change actually matter: humanitarian communication, climate advocacy, public health, education. But the effect is not automatic. Presence on its own is just immersion. Real emotional and behavioral impact comes from the combination of presence, intentional narrative design, and ethical representation of the subject. Without the second and third, the first is a novelty. Core formats There are five core formats producing immersive storytelling today. They differ in how they are built, how they reach the audience, and what kind of story they can carry. The choice between them is usually the first practical decision in any project. 360° video is the lowest barrier to entry. It is filmed, not built, using specialized cameras that capture the full surrounding scene, which the viewer then explores by turning their head. Production logic is closer to documentary filmmaking than to game development, which makes it accessible to teams already working in video. It is the strongest fit for documentary, fundraising, brand stories, and any project where the goal is to transport the audience into a real place. It is also the most common entry point for organizations producing their first immersive piece. Interactive VR experiences are fully built in engines like Unity or Unreal. Unlike 360° video, the environment is constructed rather than filmed, which means the audience can move through it, interact with objects, and trigger branching narratives. VR development is closer to game development than to film, with longer timelines and higher budgets, but the payoff is depth: the audience can spend hours inside a well-built VR experience and keep finding new layers. This format is the strongest fit for education, simulation, and brand experiences where engagement time matters more than reach. AR experiences anchor digital content to physical locations or objects, delivered through smartphones or smart glasses. The audience stays in the real world and sees a layer of story added on top of it. This makes AR and MR development especially valuable when the physical context is part of the message: a museum exhibit that comes alive when viewed through a phone, a historical site that reconstructs itself on screen, a product that reveals its inner workings when scanned. AR works…

From Pain Relief to Rehabilitation: A Portrait of VR Therapeutics in 2026
May 27, 2026
From Pain Relief to Rehabilitation: A Portrait of VR Therapeutics in 2026

VR therapeutics is becoming a real category of reimbursable medicine. It now has FDA authorization pathways, dedicated billing codes, and growing support from commercial insurers. This shift didn’t happen overnight. It has built up over several years through a series of regulatory, clinical, and commercial milestones that together make 2026 a turning point for the industry. The market is starting to reflect that. Estimates vary by methodology, but SNS Insider projects the broader VR healthcare market to grow from $4.27B in 2024 to $46.4B by 2032 (a 33% CAGR). VR telerehabilitation alone is projected to grow from $1.2B in 2026 to $2.67B by 2030, a 22% CAGR that captures the segment this article focuses on. Three moments tell the story of how we got here. 2021: The first prescription VR therapy gets FDA cleared. AppliedVR’s RelieVRx became the first VR product authorized as a prescription medical device in the US. 2023: Medicare opens the reimbursement door. Centers for Medicare and Medicaid Services created the first VR-specific billing code, placing prescription VR into the Durable Medical Equipment category. The practical effect: doctors gained a way to prescribe VR therapy, and insurers gained a code to pay against. 2025: Commercial insurers begin following Medicare’s lead. In September, Cigna became one of the first major commercial payers to cover FDA-approved digital therapeutics. In this article, we’ll walk through six therapeutic domains where that infrastructure is taking shape. Each has its own clinical logic, its own leading players, and its own path to scale.  Market architecture Before we walk through the six therapeutic domains, it’s worth understanding the shape of the market they sit inside: what’s growing, where the money is concentrated, and what changed structurally between 2023 and 2025 to make any of this viable. Where therapy and rehab sits inside VR healthcare VR healthcare as a whole spans everything from surgical training simulators to anatomical education tools. But within that broader market, VR therapeutics and rehabilitation is the fastest-growing application segment, and it’s also where regulatory and reimbursement infrastructure is forming most actively. Inside therapy-and-rehab itself, two sub-segments are consistently identified by independent market research as the fastest-growing: pain management and mental health therapy. Both have something the other categories don’t yet: FDA-cleared products in the market, peer-reviewed efficacy data, and at least nascent reimbursement pathways. Geographically, the market is concentrated in two regions for very different reasons. North America is leading adoption mainly because the FDA has started approving prescription VR therapies, and dedicated billing codes now allow healthcare providers to get reimbursed for using them. Europe is catching up via different infrastructure, particularly Germany’s DiGA framework, which provides a parallel route to physician prescription and statutory health insurance coverage. France’s PECAN and the UK’s DTAC are developing in a similar direction. The pattern is clear: once regulators create a formal pathway, companies and investment tend to follow. What the hardware cycle unlocked The clinical use cases for VR therapy didn’t really change between 2020 and 2025. What changed is that the hardware finally became viable for the business models the clinical work demanded. Consumer-grade standalone headsets brought the price floor down to where at-home prescription models work. Meta Quest 3, Meta Quest 3S, and Pico 4 helped bring standalone VR headsets to more affordable consumer price levels—an important step for prescription VR therapies that patients are expected to use at home. RelieVRx, for example, is a self-administered program delivered to patients in their living rooms; that model is described in detail in MDIC’s case study of the product. Major headset manufacturers are doubling down on healthcare partnerships rather than building healthcare-specific hardware. A useful signal here is HTC VIVE’s April 2025 expansion with Mynd Immersive, Select Rehabilitation, and AT&T into more than 150 US senior living communities—the largest deployment of immersive therapeutics into senior care to date. The interesting strategic detail isn’t the size of the rollout but its structure: a hardware OEM (HTC), a content/care platform (Mynd), a clinical services partner (Select Rehab), and a connectivity provider (AT&T). That’s the four-party stack that scaled clinical VR is going to require, and partnerships like this one are essentially templates that the rest of the industry will be copying. Body: pain & physical rehab 1. Pain management Pain is the single largest unmet need in clinical medicine. In the United States alone, roughly 50 million adults live with chronic pain, and the toolkit physicians have to treat it is uncomfortably narrow: opioids carry addiction risk, non-opioid pharmaceuticals are inconsistently effective, and behavioral therapies are scarce and slow. Procedural pain is its own category, often managed with anesthesia or sedation, which adds cost, risk, and recovery time. This is the gap VR fills. The clinical evidence for VR as a pain intervention rests on two well-documented neurological mechanisms. The first is gate control theory: pain signals traveling up the spinal cord compete with other sensory inputs for processing capacity, and immersive visual and auditory stimulation can effectively crowd them out before they reach the brain as pain. The second is cognitive load: a fully immersive VR experience occupies enough of that capacity to leave less available for processing pain as pain. Together, these mechanisms make VR more than just a distraction. They turn it into a real neurological intervention, which helps explain why VR can reduce pain in clinical settings where simpler distractions like music or conversation often cannot. There are two distinct applications emerging from this. The first is procedural pain, where Medtronic provides the clearest commercial example. Medtronic’s VR solution makes office hysteroscopy more comfortable by immersing the patient in a virtual environment during the procedure. According to Medtronic, the immersive sedation-analgesia content reduces patient anxiety and decreases pain-related brain activity. The second application is chronic pain. RelieVRx, which we talked about above, is a shining example, receiving Breakthrough Device Designation and De Novo authorization specifically for chronic lower back pain. A regulatory pathway the AppliedVR team has documented in detail in the peer-reviewed literature. The clinical data behind…



Let's discuss your ideas

Contact us