Legacy Documentation: Version 5.0
Language: English
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

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

Sumbission failed

For some reason your suggested change could not be submitted. Please try again 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
public function SetVertexCount(count: int): void;
public void SetVertexCount(int count);

Parameters

Description

Set the number of line segments.

See Also: SetPosition function.

	// Creates a line renderer that follos a Sin() function
	// and animates it.

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

function Start() { var lineRenderer : LineRenderer = gameObject.AddComponent.<LineRenderer>(); lineRenderer.material = new Material (Shader.Find("Particles/Additive")); lineRenderer.SetColors(c1, c2); lineRenderer.SetWidth(0.2,0.2); lineRenderer.SetVertexCount(lengthOfLineRenderer); }

function Update() { var lineRenderer : LineRenderer = GetComponent.<LineRenderer>(); for(var i : int = 0; i < lengthOfLineRenderer; i++) { var pos : Vector3 = Vector3(i * 0.5, Mathf.Sin(i + Time.time), 0); lineRenderer.SetPosition(i, pos); } }
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public Color c1 = Color.yellow; public Color c2 = Color.red; public int lengthOfLineRenderer = 20; void Start() { LineRenderer lineRenderer = gameObject.AddComponent<LineRenderer>(); lineRenderer.material = new Material(Shader.Find("Particles/Additive")); lineRenderer.SetColors(c1, c2); lineRenderer.SetWidth(0.2F, 0.2F); lineRenderer.SetVertexCount(lengthOfLineRenderer); } void Update() { LineRenderer lineRenderer = GetComponent<LineRenderer>(); int i = 0; while (i < lengthOfLineRenderer) { Vector3 pos = new Vector3(i * 0.5F, Mathf.Sin(i + Time.time), 0); lineRenderer.SetPosition(i, pos); i++; } } }