# Character Camera

The Character System includes an API for interacting with the Camera.  It can be accessed via `Airship.Camera`

{% hint style="info" %}
This API is only relevant if you are using the Airship Character System. If you are using your own character system, you can just update the camera transform directly as you normally would in Unity.&#x20;
{% endhint %}

### Changing Camera Modes

Switching between Fixed and Orbit camera modes is the most common. By default characters use Fixed camera mode.&#x20;

```typescript
// Enter orbit camera mode
Airship.Camera.SetMode(CharacterCameraMode.Orbit);

// Enter fixed camera mode
Airship.Camera.SetMode(CharacterCameraMode.Fixed);
```

For more complex and custom camera setups, see the [Default Camera Modes](broken://pages/CNQXfA2zDO6QFKut3w0z) and [Camera Structure](/characters/character-camera/custom-camera-mode.md) pages.

### First Person

You can use the Camera manager to modify and listen to first person mode. Both orbit and fixed camera modes support first person.

```typescript
// Specify first person or not
Airship.Camera.SetFirstPerson(true);

// Toggle on and off first person
Airship.Camera.ToggleFirstPerson();

// Listen to first person changes
Airship.Camera.ObserveFirstPerson((isFirstPerson) => {
    print("First person: " + isFirstPerson);
})
```

{% content-ref url="/spaces/IbaXflSJA8L9N9yOx089/pages/mMvBmZWnFOzExMnxLGN2" %}
[Custom Camera Mode](/characters/character-camera/custom-camera-mode.md)
{% endcontent-ref %}

{% content-ref url="/spaces/IbaXflSJA8L9N9yOx089/pages/CNQXfA2zDO6QFKut3w0z" %}
[Broken mention](broken://spaces/IbaXflSJA8L9N9yOx089/pages/CNQXfA2zDO6QFKut3w0z)
{% endcontent-ref %}


---

# 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.airship.gg/characters/character-camera.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.
