Legacy Documentation: Version 5.0
Language: English
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

SubstanceImporter.GetPlatformTextureSettings

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to 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);

Parameters

materialNameThe name of the ProceduralMaterial.
platformThe name of the platform (can be empty).
maxTextureWidthThe maximum texture width for this ProceduralMaterial (output value).
maxTextureHeightThe maximum texture height for this ProceduralMaterial (output value).
textureFormatThe texture format (0=Compressed, 1=RAW) for this ProceduralMaterial (output value).
loadBehaviorThe load behavior for this ProceduralMaterial (output value). Values match the ProceduralMaterial::ProceduralLoadingBehavior enum.

Description

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.