Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


GetGlobalTexture

Gets a global texture property for all shaders previously set using Shader.SetGlobalTexture.
Read time 1 minuteLast updated 6 days ago

Definition

  • Type: Method
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule

GetGlobalTexture(string)

Gets a global texture property for all shaders previously set using Shader.SetGlobalTexture.
public static Texture GetGlobalTexture(string name)

Parameters

name

The name of the property.

Returns

Type

Description

Texture

GetGlobalTexture(int)

Gets a global texture property for all shaders previously set using Shader.SetGlobalTexture.
public static Texture GetGlobalTexture(int nameID)

Parameters

nameID

The name ID of the property retrieved by Shader.PropertyToID.

Returns

Type

Description

Texture