Version: 5.3 (switch to 5.4b)
言語English
  • C#
  • JS

スクリプト言語

好きな言語を選択してください。選択した言語でスクリプトコードが表示されます。

ProceduralMaterial.FreezeAndReleaseSourceData

フィードバック

ありがとうございます

この度はドキュメントの品質向上のためにご意見・ご要望をお寄せいただき、誠にありがとうございます。頂いた内容をドキュメントチームで確認し、必要に応じて修正を致します。

閉じる

送信に失敗しました

なんらかのエラーが発生したため送信が出来ませんでした。しばらく経ってから<a>もう一度送信</a>してください。ドキュメントの品質向上のために時間を割いて頂き誠にありがとうございます。

閉じる

キャンセル

マニュアルに切り替える
public function FreezeAndReleaseSourceData(): void;
public void FreezeAndReleaseSourceData();

説明

ProceduralMaterial を Immutable でレンダリングし、メモリの使用容量を減らすために基になるデータをリリースします。

'Freezing' a ProceduralMaterial immediately releases the binary data that is used to generate the associated ProceduralTextures as well as the storage for the material's decompressed texture inputs, if any. Furthermore, it also prepares both the source SubstanceArchive and the material's input Texture2Ds for unloading. A "frozen" ProceduralMaterial cannot be rebuilt or cloned, nor can its inputs be set.

For the SubstanceArchive/Texture2D unloading to take place, it is necessary to call Resources.UnloadUnusedAssets after freezing the ProceduralMaterial(s) you want to freeze.

Calling FreezeAndReleaseSourceData does nothing in the Editor, but invalid API calls made after freezing a ProceduralMaterial will be logged to the console.

See Also: Resources.UnloadUnusedAssets, ProceduralMaterial.isFrozen.