言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

TextureImporter.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

public function GetPlatformTextureSettings(platform: string, maxTextureSize: int, textureFormat: TextureImporterFormat, compressionQuality: int): bool;
public bool GetPlatformTextureSettings(string platform, int maxTextureSize, TextureImporterFormat textureFormat, int compressionQuality);
public def GetPlatformTextureSettings(platform as string, maxTextureSize as int, textureFormat as TextureImporterFormat, compressionQuality as int) as bool

Parameters

platform 取得するプラットフォーム名
maxTextureSize ピクセル単位の幅/高さの最大サイズ
textureFormat テクスチャフォーマット
compressionQuality 圧縮している場合のクオリティレベル。0...100 のJPEG品質設定のようなレベルで指定できます。

Description

特定のプラットフォームのテクスチャ設定情報を取得します

選択したプラットフォームは "out" パラメーターに返されます。platformの文字列オプションは、"Web"、 "Standalone"、 "iPhone"、 "Android"、 "FlashPlayer" です。

public function GetPlatformTextureSettings(platform: string, maxTextureSize: int, textureFormat: TextureImporterFormat): bool;
public bool GetPlatformTextureSettings(string platform, int maxTextureSize, TextureImporterFormat textureFormat);
public def GetPlatformTextureSettings(platform as string, maxTextureSize as int, textureFormat as TextureImporterFormat) as bool

Parameters

platform 取得するプラットフォーム名
maxTextureSize ピクセル単位の幅/高さの最大サイズ
textureFormat テクスチャフォーマット

Description

特定のプラットフォームのテクスチャ設定情報を取得します

選択したプラットフォームは "out" パラメーターに返されます。platformの文字列オプションは、"Web"、 "Standalone"、 "iPhone"、 "Android"、 "FlashPlayer" です。