Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


GetFloat

Gets the value of a named float property.
Read time 1 minuteLast updated 5 days ago

Definition

GetFloat(int)

Gets the value of a named float property.
public float GetFloat(int nameID)

Parameters

nameID

The ID of the property. This is the same ID that Shader.PropertyToID returns.

Returns

Type

Description

floatThe value for the float you specify. Returns /0.0f/ if VisualEffect.HasFloat returns
false
.

GetFloat(string)

Gets the value of a named float property.
public float GetFloat(string name)

Parameters

name

The name of the property.

Returns

Type

Description

floatThe value for the float you specify. Returns /0.0f/ if VisualEffect.HasFloat returns
false
.