# MobilityMode

## Overview

MobilityMode is an Enum that defines whether an instance can move. Objects set to Static use pre-computed data to optimize performance, while objects set to Movable can move dynamically at runtime.

## Items

| Name    | Value | Description                                                                                                                                 |
| ------- | ----- | ------------------------------------------------------------------------------------------------------------------------------------------- |
| Static  | 0     | A static object. Its position, rotation, and size do not change, and it optimizes performance by using pre-computed data such as lightmaps. |
| Movable | 1     | A dynamic object. It can move, rotate, and animate, and can be dynamically changed at runtime.                                              |


---

# 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.overdare.com/development/api-reference/enums/mobilitymode.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.
