MaterialConstructor

Cambiar al Manual
public Material (Shader shader);
public Material (Material source);

Parámetros

shaderCrea un material con un Shader dado.
sourceCrea un material al copiar todas las propiedades de otro material.

Descripción

Crea un Material temporal.

If you have a script which implements a custom special effect, you implement all the graphic setup using shaders & materials. Use this function to create a custom shader & material inside your script. After creating the material, use SetColor, SetTexture, SetFloat, SetVector, SetMatrix to populate the shader property values.

See Also: Materials, Shaders.

using UnityEngine;

public class Example : MonoBehaviour { // Creates a material from shader and texture references. Shader shader; Texture texture; Color color;

void Start() { Renderer rend = GetComponent<Renderer> ();

rend.material = new Material(shader); rend.material.mainTexture = texture; rend.material.color = color; } }
using UnityEngine;

public class Example : MonoBehaviour { // Creates a cube and assigns a material with a builtin Specular shader. void Start() { GameObject cube = GameObject.CreatePrimitive(PrimitiveType.Cube); Renderer rend = cube.GetComponent<Renderer> (); rend.material = new Material(Shader.Find("Specular")); } }