# 01 Quick Start

Your first network in 2 minutes.

{% stepper %}
{% step %}

### Enable the plugin

**Edit > Plugins** → search **OpenWorld Navigation** → check it → restart the editor.
{% endstep %}

{% step %}

### Open the OWP editor mode

Click the **OWP** icon (location pin) in the editor mode toolbar, or pick it from the Modes dropdown.

A panel appears on the left with three sections: **Edit**, **Network**, **Analyze**.
{% endstep %}

{% step %}

### Draw a network

1. Click **Draw**.
2. Click in the viewport — first node placed.
3. Click again — second node + path between them.
4. Keep clicking to extend the chain.
5. Click near an existing node to snap and close a loop.
6. Press **Enter** to finalize.
   {% endstep %}

{% step %}

### Test pathfinding

1. Click **Pathfind** (Analyze section).
2. Click a start node, then a goal node.
3. The shortest route lights up yellow with the cost.
   {% endstep %}

{% step %}

### Make an AI follow it

In your AI pawn Blueprint:

1. From any event, drop a **OWP AI Move To** node.
2. **Pawn** = `self`.
3. **Target Actor** or **Target Location** = where to go.
4. Connect **On Success** / **On Fail** to the rest of your logic.

That's it. The AI snaps to the nearest node, computes the route, and walks the splines.
{% endstep %}
{% endstepper %}


---

# 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://onesteppack.gitbook.io/openworldnavigation-doc/01-quick-start.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.
