Version: 2017.2

ProceduralLoadingBehavior

enumeration

マニュアルに切り替える

説明

ProceduralMaterial を読み込んだ時の動作

変数

DoNothingDoes not generate the textures automatically when the scene is loaded as it is set to "DoNothing". RebuildTextures() or RebuildTexturesImmediately() must be called to generate the textures.
Generateアプリケーションサイズ(サポートされるプラットフォームのデフォルト)を優先して読み込むテキスチャーを生成します。
BakeAndKeepテクスチャをベイクして読み込みを高速化し ProceduralMaterial データを保持することで、後ほど調整や再生成できるようにします。
BakeAndDiscardローディングを高速化するためテクスチャをベイクし、ProceduralMaterial データ(サポートされないプラットフォームのデフォルト)を廃棄します。
Cache読み込んだ時にテキストを生成し、ディスクやフラッシュメモリにキャッシュして、後続のゲームやアプリケーションのスタートアップを高速化します。
DoNothingAndCacheDoes not generate the textures automatically when the scene is loaded as it is set to "DoNothing". RebuildTextures() or RebuildTexturesImmediately() must be called to generate the textures. After the textures have been generrated for the first time, they are cached to disk/flash to speed up subsequent game/application startups. This setting will not load the cached textures automatically when the scene is loaded as it is still set to "DoNothing". RebuildTextures() or RebuildTexturesImmediately() must be called again to load the previously cached textures.