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.

SubstanceImporter.GetPlatformTextureSettings

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 function GetPlatformTextureSettings(materialName: string, platform: string, out maxTextureWidth: int, out maxTextureHeight: int, out textureFormat: int, out loadBehavior: int): bool;
public bool GetPlatformTextureSettings(string materialName, string platform, out int maxTextureWidth, out int maxTextureHeight, out int textureFormat, out int loadBehavior);

Parámetros

materialName The name of the ProceduralMaterial.
platform The name of the platform (can be empty).
maxTextureWidth The maximum texture width for this ProceduralMaterial (output value).
maxTextureHeight The maximum texture height for this ProceduralMaterial (output value).
textureFormat The texture format (0=Compressed, 1=RAW) for this ProceduralMaterial (output value).
loadBehavior The load behavior for this ProceduralMaterial (output value). Values match the ProceduralMaterial::ProceduralLoadingBehavior enum.

Descripción

Get the import settings for a given ProceduralMaterial for a given platform (width and height, RAW/Compressed format, loading behavior).

Returns a default set of settings (512x512, compressed outputs, "Generate at load" behavior) if no settings are found for the input materialName or for the input platform.