Version: 2022.3
LanguageEnglish
  • C#
Method group is Obsolete

LineRenderer.SetVertexCount

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual
Obsolete Use positionCount instead.

Declaration

public void SetVertexCount(int count);

Description

Set the number of line segments.

Additional resources: SetPosition function.

Additional resources: SetPositions function.

using UnityEngine;

public class Example : MonoBehaviour { // Creates a line renderer that follows a Sin() function // and animates it.

Color c1 = Color.yellow; Color c2 = Color.red; int lengthOfLineRenderer = 20;

void Start() { LineRenderer lineRenderer = gameObject.AddComponent<LineRenderer>(); lineRenderer.material = new Material(Shader.Find("Sprites/Default")); lineRenderer.SetColors(c1, c2); lineRenderer.SetWidth(0.2f, 0.2f); lineRenderer.SetVertexCount(lengthOfLineRenderer); }

void Update() { LineRenderer lineRenderer = GetComponent<LineRenderer>(); var points = new Vector3[lengthOfLineRenderer]; var t = Time.time; for (int i = 0; i < lengthOfLineRenderer; i++) { points[i] = new Vector3(i * 0.5f, Mathf.Sin(i + t), 0); } lineRenderer.SetPositions(points); } }