Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


GetGlobalInteger

Gets a global integer property for all shaders previously set using Shader.SetGlobalInteger.
Read time 1 minuteLast updated 4 days ago

Definition

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

GetGlobalInteger(string)

Gets a global integer property for all shaders previously set using Shader.SetGlobalInteger.
public static int GetGlobalInteger(string name)

Parameters

name

The name of the property.

Returns

Type

Description

int

GetGlobalInteger(int)

Gets a global integer property for all shaders previously set using Shader.SetGlobalInteger.
public static int GetGlobalInteger(int nameID)

Parameters

nameID

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

Returns

Type

Description

int