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

# ConfigureDebugScreen

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

Sets debug screen configuration.

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

```csharp
ConfigureDebugScreen(placementName, options)
```

configuration **(REQUIRED)**

[*AATKitDebugScreenConfiguration*](/aatkit-unity-integration/other/reference/other/aatkitdebugscreenconfiguration.md) Object used to set up debug screen configuration.

**returns&#x20;*****void***

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

```csharp
ConfigureDebugScreen(new AATKitDebugScreenConfiguration("My Title")
{
    ShowAdvertisingId = false,
    ShowTestMode = false
});
```
