Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

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

SetWidth(start: float, end: float): void;

Description

Set the line width at the start and at the end.

	// Adds a lineRenderer to this transform and
	// Converts the line Renderer into a triangle.

function Start() { var lineRenderer : LineRenderer = gameObject.AddComponent(LineRenderer); lineRenderer.SetWidth(0,3); }