> For the complete documentation index, see [llms.txt](https://onesteppack.gitbook.io/openworldnavigation-doc/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://onesteppack.gitbook.io/openworldnavigation-doc/01-quick-start.md).

# 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://onesteppack.gitbook.io/openworldnavigation-doc/01-quick-start.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
