# numPositions

> Set the number of line segments.

## Definition

* **Type:** Property
* **Namespace:** [UnityEngine](/engine/6000.7/script-reference/unityengine.md)
* **Assembly:** UnityEngine.CoreModule

> **Warning:**
>
> **Deprecated.** Use positionCount instead
>
> **Upgrade to** [LineRenderer.positionCount](/engine/6000.7/script-reference/unityengine/linerenderer/positioncount.md)

```csharp
public int numPositions { get; set; }
```

### Examples

```csharp
using UnityEngine;
using System.Collections;

[RequireComponent(typeof(LineRenderer))]
public class ExampleClass : MonoBehaviour
{
    private LineRenderer lr;

    void Start()
    {
        lr = GetComponent<LineRenderer>();
        lr.material = new Material(Shader.Find("Sprites/Default"));

        // Set some positions
        Vector3[] positions = new Vector3[3];
        positions[0] = new Vector3(-2.0f, -2.0f, 0.0f);
        positions[1] = new Vector3(0.0f, 2.0f, 0.0f);
        positions[2] = new Vector3(2.0f, -2.0f, 0.0f);
        lr.numPositions = positions.Length;
        lr.SetPositions(positions);
    }
}
```
