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

スクリプト言語

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

TextureImporter.SetPlatformTextureSettings

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 SetPlatformTextureSettings(platform: string, maxTextureSize: int, textureFormat: TextureImporterFormat, compressionQuality: int): void;
public void SetPlatformTextureSettings(string platform, int maxTextureSize, TextureImporterFormat textureFormat, int compressionQuality);
public def SetPlatformTextureSettings(platform as string, maxTextureSize as int, textureFormat as TextureImporterFormat, compressionQuality as int) as void

Parameters

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

Description

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

指定可能な文字列のオプションは、"Web"、 "Standalone"、 "iPhone"、 "Android"、 "FlashPlayer" です。

public function SetPlatformTextureSettings(platform: string, maxTextureSize: int, textureFormat: TextureImporterFormat): void;
public void SetPlatformTextureSettings(string platform, int maxTextureSize, TextureImporterFormat textureFormat);
public def SetPlatformTextureSettings(platform as string, maxTextureSize as int, textureFormat as TextureImporterFormat) as void

Parameters

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

Description

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

指定可能な文字列のオプションは、"Web"、 "Standalone"、 "iPhone"、 "Android"、 "FlashPlayer" です。