> 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/getnativescale.md).

# GetNativeScale

### 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 native scale factor for the physical screen. See Apple documentation [here](https://developer.apple.com/documentation/uikit/uiscreen/1617825-nativescale?language=objc).

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

```csharp
GetNativeScale()
```

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

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

```csharp
float nativeScale = GetNativeScale();
```
