Version: 2022.3
言語: 日本語
public static WebGLMemoryGrowthMode memoryGrowthMode ;

説明

The growth mode for WASM heap memory.

The growth mode controls at which rate WASM heap memory grows if more memory is allocated than what is currently available (Recommended default: Geometric). The growth mode None results in a fixed heap memory size. The growth mode Linear increases the heap by a constant amount. The growth mode Geometric increases the heap by a given percentage.