> For the complete documentation index, see [llms.txt](https://fast-studios.gitbook.io/bindables/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://fast-studios.gitbook.io/bindables/scripting/scripting.md).

# Overview

Use Bindables from code.

**Bindables** is built to minimize the need for scripting, so that simple changes and effects can be done with a few clicks in the **Inspector**.

For more advanced needs, however, clicks alone aren't enough. This section covers everything Bindables offers on the code side:

* [Bindable\<T>](/bindables/scripting/bindable-less-than-t-greater-than.md): declaring Bindables, reading and changing values, configuring bindings from code.
* [BindableList\<T>](/bindables/scripting/bindablelist-less-than-t-greater-than.md): the Bindable made for working with `List<T>` values.
* [OnValueChanged](/bindables/scripting/onvaluechanged.md): reacting whenever a Bindable's value changes.
* [Hooks](/bindables/scripting/hooks.md): connecting a method to a Bindable with a single attribute.
* [Runtime Overrides](/bindables/scripting/runtime-overrides.md): temporarily forcing a Bindable's value from code.
* [VS Code Extension](/bindables/scripting/vscode-extension.md): seeing where your Bindables are used, straight from your scripts.

## Importing the Namespace

In any script where you want to interact with Bindables, import the `FastStudios.Bindables` namespace:

```csharp
using FastStudios.Bindables;

public class YourClass : MonoBehaviour
{
    // You can now use Bindables in your code.
}
```

{% hint style="info" %}
All examples in this section assume the `FastStudios.Bindables` namespace has already been imported.
{% endhint %}


---

# 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://fast-studios.gitbook.io/bindables/scripting/scripting.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.
