# GetTexturePropertyNames

> Returns the names of all texture properties exposed on this material.

## Definition

* **Type:** Method
* **Namespace:** [UnityEngine](/engine/6000.5/script-reference/unityengine.md)
* **Assembly:** UnityEngine.CoreModule

## GetTexturePropertyNames()

Returns the names of all texture properties exposed on this material.

```csharp
public string[] GetTexturePropertyNames()
```

### Returns

| Type                                                               | Description                                               |
| ------------------------------------------------------------------ | --------------------------------------------------------- |
| [string\[\]](https://learn.microsoft.com/dotnet/api/system.string) | Names of all texture properties exposed on this material. |

## GetTexturePropertyNames(List\<string>)

Returns the names of all texture properties exposed on this material.

```csharp
public void GetTexturePropertyNames(List<string> outNames)
```

### Parameters

**** (\[List\<string>]\(https\://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)): Names of all texture properties exposed on this material.
