Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


TryGetProperty

Retrieves the value of a specified material property.
Read time 1 minuteLast updated 12 days ago

Definition

TryGetProperty(string, float)

Retrieves the value of a specified material property.
public bool TryGetProperty(string propertyName, out float value)

Parameters

propertyName

Name of the property.

value

The retrieved value.

Returns

Type

Description

boolReturns true if the property exists on the material. Returns false otherwise.

TryGetProperty(string, Vector4)

Retrieves the value of a specified material property.
public bool TryGetProperty(string propertyName, out Vector4 value)

Parameters

propertyName

Name of the property.

value

The retrieved value.

Returns

Type

Description

boolReturns true if the property exists on the material. Returns false otherwise.

TryGetProperty(string, string)

Retrieves the value of a specified material property.
public bool TryGetProperty(string propertyName, out string value)

Parameters

propertyName

Name of the property.

value

The retrieved value.

Returns

Type

Description

boolReturns true if the property exists on the material. Returns false otherwise.

TryGetProperty(string, TexturePropertyDescription)

Retrieves the value of a specified material property.
public bool TryGetProperty(string propertyName, out TexturePropertyDescription value)

Parameters

propertyName

Name of the property.

The retrieved value.

Returns

Type

Description

boolReturns true if the property exists on the material. Returns false otherwise.