Legacy Documentation: Version 2017.2 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

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

LineRenderer.alignment

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
public var alignment: LineAlignment;
public LineAlignment alignment;

Description

Select whether the line will face the camera, or the orientation of the Transform Component.

#pragma strict
private var lr: LineRenderer;
function Start() {
	lr = GetComponent.<LineRenderer>();
	lr.material = new Material(Shader.Find("Sprites/Default"));
	// Set some positions
	var positions: Vector3[] = 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.positionCount = positions.Length;
	lr.SetPositions(positions);
	// Set to face its Transform Component
	lr.alignment = LineAlignment.Local;
}
using UnityEngine;
using System.Collections;

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.positionCount = positions.Length; lr.SetPositions(positions);

// Set to face its Transform Component lr.alignment = LineAlignment.Local; } }

Did you find this page useful? Please give it a rating: