public float GetFloat (string name);
public float GetFloat (int name);

파라미터

nameIDThe name ID of the property retrieved by Shader.PropertyToID.
nameThe name of the property.

설명

Get a named float value.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Start() { Renderer rend = GetComponent<Renderer>(); rend.material.shader = Shader.Find("Specular"); print(rend.material.GetFloat("_Shininess")); } }