# In-world browser

You can use the browser placed in the 3D space, e.g. as a TV screen.

This guide assumes you've followed [Setup the browser widget](/platform-documentation/creation/unreal-development/features-and-tutorials/web-browser/setup-the-browser-widget.md).

### Adding browser to the world space

Create a new blueprint actor. Inside it, add a `Widget` component:

<figure><img src="/files/cnMe9qeOMCVyJa6eKNsi" alt=""><figcaption><p>The Widget component being added to the actor.</p></figcaption></figure>

On this widget component, set the `Widget Class` to your browser widget, and change the `Draw Size` to 1920 x 1080.

<figure><img src="/files/uK1idBrtk7OLKpYQt8kY" alt=""><figcaption><p>Setting the Widget Class and Draw Size.</p></figcaption></figure>

Place the actor into your level:

<figure><img src="/files/V5jok13sf3Q1b7rYuGLI" alt=""><figcaption><p>The blueprint in the level.</p></figcaption></figure>

Play PIE and the browser will load the MSquared docs in 3D space:

<figure><img src="/files/oLKqn1atxBxzNS68l5Xt" alt=""><figcaption></figcaption></figure>

### Mouse interaction in 3D space

To interact with the browser using your mouse, on the widget component set "Receive Hardware Input" to true.

<figure><img src="/files/yOMzNpEunqk5AgzsAPGb" alt=""><figcaption><p>Interaction -> "Receive Hardware Input" on a Widget component.</p></figcaption></figure>

Using the above setup, you can then interact with the browser in 3D space such as navigating around the docs page.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.otherside.xyz/platform-documentation/creation/unreal-development/features-and-tutorials/web-browser/in-world-browser.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
