Version: 5.4
public void SetWidth (float start, float end);

설명

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

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Start() { LineRenderer lineRenderer = gameObject.AddComponent<LineRenderer>(); lineRenderer.SetWidth(0, 3); } }