Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


HasMatrix

Checks if the ShaderLab file assigned to the Material has a Matrix property with the given name. This also works with the Matrix Array property.
Read time 1 minuteLast updated 4 days ago

Definition

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

HasMatrix(string)

Checks if the ShaderLab file assigned to the Material has a Matrix property with the given name. This also works with the Matrix Array property.
public bool HasMatrix(string name)

Parameters

name

The name of the property.

Returns

Type

Description

boolReturns true if the ShaderLab file assigned to the Material has this property.

Remarks

HasMatrix(int)

Checks if the ShaderLab file assigned to the Material has a Matrix property with the given name. This also works with the Matrix Array property.
public bool HasMatrix(int nameID)

Parameters

nameID

The name ID of the property. Use Shader.PropertyToID to get this ID.

Returns

Type

Description

boolReturns true if the ShaderLab file assigned to the Material has this property.

Remarks