# `GSInstance.instanceInterpolations`

*Instance Property*

A dictionary that contains the interpolation coefficients for each master. This is automatically updated if you change interpolationWeight, interpolationWidth, interpolationCustom. It contains FontMaster IDs as keys and coefficients for that master as values. Or, you can set it manually if you set manualInterpolation to true. There is no UI for this, so you need to do that with a script.

## Declaration

```swift
var instanceInterpolations: [AnyHashable : Any]? { get set }
```

```objc
@property (nonatomic, strong) NSDictionary * instanceInterpolations;
```

[See also `instanceInterpolations` in the Python API](https://docu.glyphsapp.com/#GSInstance.instanceInterpolations)

```python
pyobjc_instanceMethods.instanceInterpolations() -> dict
pyobjc_instanceMethods.setInstanceInterpolations_(instanceInterpolations: dict)
```

