Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Material.GetFloat

Switch to Manual
public function GetFloat(propertyName: string): float;
public function GetFloat(nameID: int): float;

Parameters

Description

Get a named float value.

function Start() {
	var rend = GetComponent.<Renderer>();
	rend.material.shader = Shader.Find("Specular");
	print(rend.material.GetFloat("_Shininess"));
}