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
Cambiar al Manual
public function
GetPlatformTextureSettings(
platform:
string,
out
maxTextureSize: int,
out
textureFormat:
TextureImporterFormat,
out
compressionQuality: int):
bool;
public bool
GetPlatformTextureSettings(string
platform,
out int
maxTextureSize,
out
TextureImporterFormat textureFormat,
out int
compressionQuality);
Parámetros
platform |
The platform whose settings are required (see below). |
maxTextureSize |
Tamaño máximo de la textura. |
textureFormat |
Formato de la textura importada. |
compressionQuality |
Value from 0..100, equivalent to the standard JPEG quality setting. |
Descripción
Get platform specific texture settings.
The values for the chosen platform are returned in the "out" parameters. The options for the platform string are "Web", "Standalone", "iPhone" and "Android".
public function
GetPlatformTextureSettings(
platform:
string,
out
maxTextureSize: int,
out
textureFormat:
TextureImporterFormat):
bool;
public bool
GetPlatformTextureSettings(string
platform,
out int
maxTextureSize,
out
TextureImporterFormat textureFormat);
Parámetros
platform |
The platform whose settings are required (see below). |
maxTextureSize |
Tamaño máximo de la textura. |
textureFormat |
Formato de la textura importada. |
Descripción
Get platform specific texture settings.
The values for the chosen platform are returned in the "out" parameters. The options for the platform string are "Web", "Standalone", "iPhone" and "Android".