> 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-1.2-greater-than-1.3.md).

# Upgrade 1.2 -> 1.3

{% hint style="success" %}
Before upgrading, back up your project to avoid any data loss.
{% endhint %}

{% hint style="warning" %}
APIs marked as deprecated on 1.1 and earlier are removed on 1.3. Make sure your project is not using them before upgrading.
{% endhint %}

## CoherenceBridge.GlobalQueryOn -> EnableClientConnections

The **GlobalQueryOn** property on the `Coherence.Toolkit.CoherenceBridge` class has been marked as obsolete, and should no longer be used. If you had references in your code to this property, you should see warnings in your Console about this.

To fix the warnings, update your code to use the **CoherenceBridge.EnableClientConnections** property instead.

## RuntimeSettings.instance -> Instance

The **instance** property on the `Coherence.RuntimeSettings` class has been marked as obsolete, and should no longer be used. If you had references in your code to this property, you should see warnings in your Console about this.

To fix the warnings, update your code to use the **RuntimeSettings.Instance** property instead.

## RuntimeSettings.DefaultTransportMode -> TransportType

The **DefaultTransportMode** property on the `Coherence.RuntimeSettings` class was removed, and replaced with the property **TransportType**.

## Binding.RuntimeInterpolationSettings -> ValueBinding.Interpolator

The **RuntimeInterpolationSettings** property on the `Coherence.Toolkit.Bindings.Binding` class was removed.

A new property **Interpolator** was added to `Coherence.Toolkit.Bindings.ValueBinding`, offering comparable binding interpolation functionality.

## ComponentChange.Mask -> Data.FieldMask

The **Mask** property was removed from the `Coherence.Entities.ComponentChange` struct.

The same value can be acquired using `ComponentChange.Data.FieldsMask` instead.

## ChannelID Relocated

The `Coherence.ChannelID` struct was moved into the `Coherence.Common` assembly.

If you get compile errors about this type not being found, make sure that your [Assembly Definition Asset](https://docs.unity3d.com/Manual/ScriptCompilationAssemblyDefinitionFiles.html) has a reference to the `Coherence.Common` assembly.


---

# 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-1.2-greater-than-1.3.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.
