# WebGLMemoryGrowthMode

> An enum containing different memory growth modes.

## Definition

* **Type:** Enum
* **Namespace:** [UnityEditor](/engine/6000.0/script-reference/unityeditor.md)
* **Assembly:** UnityEditor

```csharp
public enum WebGLMemoryGrowthMode
```

## Remarks

This enum is used within the WebGL platform to define how the WASM memory heap grows.

## Fields

| Value                                                                                       | Description                                               |
| ------------------------------------------------------------------------------------------- | --------------------------------------------------------- |
| [Geometric](/engine/6000.0/script-reference/unityeditor/webglmemorygrowthmode/geometric.md) | The WASM memory heap is increased by a geometric factor.  |
| [Linear](/engine/6000.0/script-reference/unityeditor/webglmemorygrowthmode/linear.md)       | The WASM memory heap is increased by constant increments. |
| [None](/engine/6000.0/script-reference/unityeditor/webglmemorygrowthmode/none.md)           | The WASM memory heap has a fixed size.                    |
