# TryGetRenderPipelineSettingsFromInterface<TSettingsInterfaceType>(out TSettingsInterfaceType[])

> Retrieves the array of the settings objects of type TSettingsInterfaceType for the active Render Pipeline if they are registered.

## Definition

* **Type:** Method
* **Namespace:** [UnityEditor.Rendering](/engine/6000.7/script-reference/unityeditor/rendering.md)
* **Assembly:** UnityEditor.CoreModule

## TryGetRenderPipelineSettingsFromInterface\<T>(\`\<>\[])

```csharp
public static bool TryGetRenderPipelineSettingsFromInterface<TSettingsInterfaceType>(out TSettingsInterfaceType[] settings) where TSettingsInterfaceType : class, IRenderPipelineGraphicsSettings
```

### Parameters

**** (\[\<TSettingsInterfaceType>\[]]\(./)): The array of the settings objects of type `TSettingsInterfaceType` if found, or `null`.

### Returns

| Type                                                          | Description                                                                            |
| ------------------------------------------------------------- | -------------------------------------------------------------------------------------- |
| [bool](https://learn.microsoft.com/dotnet/api/system.boolean) | True if any settings of type `TSettings` are available for the active Render Pipeline. |
