Version: 5.5
public float GetFloat (string propertyName);
public float GetFloat (int nameID);

파라미터

propertyName The name of the property.
nameID The name ID of the property retrieved by Shader.PropertyToID.

설명

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")); } }