> For the complete documentation index, see [llms.txt](https://docs.coherence.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.coherence.io/2.3/support/upgrading-unity-sdk/upgrade-2.1-greater-than-2.2.md).

# Upgrade 2.1 -> 2.2

## <mark style="color:yellow;">Breaking:</mark> CoherenceInputSimulation method visibility

Starting from 2.2, the core `CoherenceInputSimulation` simulation methods are public instead of protected. This allows external systems, such as replay tooling, to control input simulation directly.

If your project has a class that inherits from `CoherenceInputSimulation`, update these method overrides from `protected` to `public`:

```csharp
public override void SetInputs(CoherenceClientConnection client)
public override void Simulate(long simulationFrame)
public override void Rollback(long toFrame, TState state)
public override TState CreateState()
```

Replace `TState` with the simulation state type used by your implementation.

For example:

```csharp
// Before
protected override void Simulate(long simulationFrame)
{
    ...
}

// After
public override void Simulate(long simulationFrame)
{
    ...
}
```


---

# 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:

```
GET https://docs.coherence.io/2.3/support/upgrading-unity-sdk/upgrade-2.1-greater-than-2.2.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.
