# VFXBatchedEffectInfo

> This structure provides runtime information on how Unity batches a VisualEffectAsset.

## Definition

* **Type:** Struct
* **Namespace:** [UnityEngine.VFX](/engine/6000.7/script-reference/unityengine/vfx.md)
* **Assembly:** UnityEngine.VFXModule

```csharp
public struct VFXBatchedEffectInfo
```

## Fields

| Value                                                                                                                              | Description                                                                                                                                                                                                       |
| ---------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [activeBatchCount](/engine/6000.7/script-reference/unityengine/vfx/vfxbatchedeffectinfo/activebatchcount.md)                       | The number of active batches the [VisualEffectAsset](/engine/6000.7/script-reference/unityengine/vfx/visualeffectasset.md) uses.                                                                                  |
| [activeInstanceCount](/engine/6000.7/script-reference/unityengine/vfx/vfxbatchedeffectinfo/activeinstancecount.md)                 | The number of active [VisualEffect](/engine/6000.7/script-reference/unityengine/vfx/visualeffect.md) instances of this [VisualEffectAsset](/engine/6000.7/script-reference/unityengine/vfx/visualeffectasset.md). |
| [inactiveBatchCount](/engine/6000.7/script-reference/unityengine/vfx/vfxbatchedeffectinfo/inactivebatchcount.md)                   | The number of inactive batches that are allocated for later reuse.                                                                                                                                                |
| [maxInstancePerBatchCapacity](/engine/6000.7/script-reference/unityengine/vfx/vfxbatchedeffectinfo/maxinstanceperbatchcapacity.md) | The maximum number of [VisualEffect](/engine/6000.7/script-reference/unityengine/vfx/visualeffect.md) that can be instanciated in a single batch.                                                                 |
| [totalCPUSizeInBytes](/engine/6000.7/script-reference/unityengine/vfx/vfxbatchedeffectinfo/totalcpusizeinbytes.md)                 | The CPU size, in bytes, that the batches of this [VisualEffectAsset](/engine/6000.7/script-reference/unityengine/vfx/visualeffectasset.md) use.                                                                   |
| [totalGPUSizeInBytes](/engine/6000.7/script-reference/unityengine/vfx/vfxbatchedeffectinfo/totalgpusizeinbytes.md)                 | The GPU size, in bytes, that the batches of this [VisualEffectAsset](/engine/6000.7/script-reference/unityengine/vfx/visualeffectasset.md) use.                                                                   |
| [totalInstanceCapacity](/engine/6000.7/script-reference/unityengine/vfx/vfxbatchedeffectinfo/totalinstancecapacity.md)             | The total number of [VisualEffect](/engine/6000.7/script-reference/unityengine/vfx/visualeffect.md) that can be instanciated with the current allocated batches.                                                  |
| [unbatchedInstanceCount](/engine/6000.7/script-reference/unityengine/vfx/vfxbatchedeffectinfo/unbatchedinstancecount.md)           | The number of [VisualEffect](/engine/6000.7/script-reference/unityengine/vfx/visualeffect.md) instances that are not batched.                                                                                     |
| [vfxAsset](/engine/6000.7/script-reference/unityengine/vfx/vfxbatchedeffectinfo/vfxasset.md)                                       | The [VisualEffectAsset](/engine/6000.7/script-reference/unityengine/vfx/visualeffectasset.md) associated with this Batched Effect Info.                                                                           |
