GetTexture
Get a named texture.
Read time 1 minuteLast updated 5 days ago
Definition
- Type: Method
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
GetTexture(string)
Get a named texture.
public Texture GetTexture(string name)
Parameters
The name of the property.
Returns
Type | Description |
|---|---|
| Texture |
Remarks
Many shaders use more than one texture. Use GetTexture to get the texture.
propertyNameIf the texture is not found, the method writes an error message to the console and returns .
nullCommon texture names used by Unity's builtin shaders:
"_MainTex""_BumpMap""_Cube"GetTexture(int)
Get a named texture.
public Texture GetTexture(int nameID)
Parameters
The name ID of the property retrieved by Shader.PropertyToID.
Returns
Type | Description |
|---|---|
| Texture |
Remarks
Many shaders use more than one texture. Use GetTexture to get the texture.
propertyNameIf the texture is not found, the method writes an error message to the console and returns .
nullCommon texture names used by Unity's builtin shaders:
"_MainTex""_BumpMap""_Cube"