# ClearTargetSettings(string)

> Clears the platform-specific import settings for the specified platform and reverts them to the default settings.

## Definition

* **Type:** Method
* **Namespace:** [UnityEditor](/engine/6000.6/script-reference/unityeditor.md)
* **Assembly:** UnityEditor

```csharp
public void ClearTargetSettings(string platform)
```

### Parameters

**** (\[string]\(https\://learn.microsoft.com/dotnet/api/system.string)): Platform name.

### Remarks

The platform string must match the name of a [NamedBuildTarget](/engine/6000.6/script-reference/unityeditor/build/namedbuildtarget.md), for example `"Standalone"`, `"Android"`, or `"WebGL"`. This method throws an `ArgumentException` if the string doesn't match a supported platform. Platforms without an override use [VideoClipImporter.defaultTargetSettings](/engine/6000.6/script-reference/unityeditor/videoclipimporter/defaulttargetsettings.md).
