Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

Texture2D.Texture2D

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public Texture2D(width: int, height: int)
public Texture2D(int width, int height);

Parámetros

Descripción

Crear una nueva textura vacía.

The texture will be width by height size, with an ARGB32 TextureFormat, with mipmaps and in sRGB color space.

Usually you will want to set the colors of the texture after creating it, using SetPixel, SetPixels and Apply functions.


        
// Create a new texture and assign it to the renderer's material
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Start() { Texture2D texture = new Texture2D(128, 128); Renderer renderer = GetComponent<Renderer>(); renderer.material.mainTexture = texture; } }

See Also: SetPixel, SetPixels, Apply functions.


public Texture2D(width: int, height: int, format: TextureFormat, mipmap: bool)
public Texture2D(int width, int height, TextureFormat format, bool mipmap);

Parámetros

Descripción

Crear una nueva textura vacía.

The texture will be width by height size, with a given format, with mipmaps or without and in either the linear or sRGB color space.

Usually you will want to set the colors of the texture after creating it, using SetPixel, SetPixels and Apply functions.

See Also: SetPixel, SetPixels, Apply functions.


public Texture2D(width: int, height: int, format: TextureFormat, mipmap: bool, linear: bool)
public Texture2D(int width, int height, TextureFormat format, bool mipmap, bool linear);

Parámetros

Descripción

See Also: SetPixel, SetPixels, Apply functions.