# WritePackedIntDelta(int, int, in StreamCompressionModel)

> Writes a delta 4-byte signed integer value to the data stream using a StreamCompressionModel.

## Definition

* **Type:** Method
* **Namespace:** [Unity.Collections](/engine/6000.7/script-reference/unity/collections.md)
* **Assembly:** UnityEngine.ManagedKernelModule

## WritePackedIntDelta(int, int, StreamCompressionModel)

```csharp
public bool WritePackedIntDelta(int value, int baseline, in StreamCompressionModel model)
```

### Parameters

**** (\[int]\(https\://learn.microsoft.com/dotnet/api/system.int32)): The current 4-byte signed integer value.**** (\[int]\(https\://learn.microsoft.com/dotnet/api/system.int32)): The previous 4-byte signed integer value, used to compute the diff.**** (\[StreamCompressionModel]\(/engine/6000.7/script-reference/unity/collections/streamcompressionmodel)): [StreamCompressionModel](/engine/6000.7/script-reference/unity/collections/streamcompressionmodel.md) model for writing value in a packed manner.

### Returns

| Type                                                          | Description                      |
| ------------------------------------------------------------- | -------------------------------- |
| [bool](https://learn.microsoft.com/dotnet/api/system.boolean) | Whether the write was successful |
