> For the complete documentation index, see [llms.txt](https://aatkit.gitbook.io/aatkit-unity-integration/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://aatkit.gitbook.io/aatkit-unity-integration/other/reference/aatkitbinding/methods/getscale.md).

# GetScale

### Overview <a href="#markdown-header-overview" id="markdown-header-overview"></a>

This is a helper method to put placement position correctly on iOS devices. Avoid using on Android platforms. Returns the natural scale factor associated with the screen. See Apple documentation [here](https://developer.apple.com/documentation/uikit/uiscreen/1617836-scale?language=objc).

### Syntax <a href="#markdown-header-syntax" id="markdown-header-syntax"></a>

```
GetScale()
```

**returns&#x20;*****float –*****&#x20;The natural scale factor associated with the screen (iOS). Returns zero for Android.**

### Examples <a href="#markdown-header-examples" id="markdown-header-examples"></a>

```csharp
float scale = GetScale();
```
