Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

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

SubstanceImporter.GetPlatformTextureSettings

GetPlatformTextureSettings(materialName: string, platform: string, maxTextureWidth: int, maxTextureHeight: int, textureFormat: int, loadBehavior: int): bool;
bool GetPlatformTextureSettings(string materialName, string platform, int maxTextureWidth, int maxTextureHeight, int textureFormat, int loadBehavior);
def GetPlatformTextureSettings(materialName as string, platform as string, maxTextureWidth as int, maxTextureHeight as int, textureFormat as int, loadBehavior as int) as bool

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.