Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


TryGetProperty

Retrieves the value of a specified light property.
Read time 1 minuteLast updated 10 days ago

Definition

TryGetProperty(string, float)

Retrieves the value of a specified light 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 light. Returns false otherwise.

TryGetProperty(string, Vector4)

Retrieves the value of a specified light 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 light. Returns false otherwise.

TryGetProperty(string, string)

Retrieves the value of a specified light 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 light. Returns false otherwise.

TryGetProperty(string, int)

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

Parameters

propertyName

Name of the property.

value

The retrieved value.

Returns

Type

Description

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