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

説明

ラインの横幅を設定します。

using UnityEngine;
using System.Collections;

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