Skip to content

Commit bfd85dc

Browse files
authored
Update README.md
1 parent eea81a3 commit bfd85dc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Object Pooling for Unity
88
- Callbacks OnSpawn & OnDespawn for resseting after object being used
99

1010
## Usage
11-
How to populate pool:
11+
### How to populate pool:
1212
```csharp
1313
using ToolBox.Pools;
1414
using UnityEngine;
@@ -29,7 +29,7 @@ Also, you can just put PoolInstaller component on any object on Scene and select
2929

3030
![](https://i.imgur.com/gnyZ0RQ.png)
3131

32-
How to spawn object from pool:
32+
### How to spawn object from pool:
3333
```csharp
3434
using ToolBox.Pools;
3535
using UnityEngine;
@@ -50,7 +50,7 @@ public class Spawner : MonoBehaviour
5050

5151
```
5252

53-
How to return object to pool:
53+
### How to return object to pool:
5454
```csharp
5555
using ToolBox.Pools;
5656
using UnityEngine;
@@ -70,7 +70,7 @@ public class Spawner : MonoBehaviour
7070
}
7171
```
7272

73-
How to use callbacks:
73+
### How to use callbacks:
7474
```csharp
7575
using ToolBox.Pools;
7676
using UnityEngine;

0 commit comments

Comments
 (0)